Ticket #668: nALFS-bug-668.patch

File nALFS-bug-668.patch, 743 bytes (added by kpfleming@…, 21 years ago)

Fixes bug

  • configure.in

    RCS file: /home/cvsroot/ALFS/nALFS/configure.in,v
    retrieving revision 1.3
    diff -u -b -r1.3 configure.in
     
    7878                        enable_ssl=yes
    7979                        ;;
    8080                *)
    81                         LIBS="$LIBS -L$withval/lib"
     81                        SSL_DIR="$withval"
     82                        LIBS="$LIBS -L$SSL_DIR/lib"
    8283                        enable_ssl=yes
    8384                        ;;
    8485        esac
     
    8687
    8788if test "$enable_ssl" == "yes" ; then
    8889        AC_CHECK_LIB(ssl, OpenSSL_add_all_digests, [
    89                 CPPFLAGS="$CPPFLAGS -DHAVE_LIBSSL"
    90                 LIBS="$LIBS -lcrypto -lssl"])
     90                CPPFLAGS="$CPPFLAGS -I$SSL_DIR/include -DHAVE_LIBSSL"
     91                LIBS="$LIBS -lcrypto -lssl"], [], -lcrypto)
    9192fi
    9293
    9394