diff options
author | Luke Leighton <lkcl@samba.org> | 1999-03-02 16:43:27 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-03-02 16:43:27 +0000 |
commit | 81f866db3ab86a27dc93148676da6c96b6e56cbf (patch) | |
tree | 3e398e77120f3a73e5d069f6accedb5abae80668 /source3/configure | |
parent | 236cea4efa18094c3445bee310195ac12b6073ee (diff) | |
download | samba-81f866db3ab86a27dc93148676da6c96b6e56cbf.tar.gz samba-81f866db3ab86a27dc93148676da6c96b6e56cbf.tar.bz2 samba-81f866db3ab86a27dc93148676da6c96b6e56cbf.zip |
added <mysql.h> autoconf test.
(This used to be commit 511ef8a58ccfc04d0744f28753bb48d848851980)
Diffstat (limited to 'source3/configure')
-rwxr-xr-x | source3/configure | 32 |
1 files changed, 1 insertions, 31 deletions
diff --git a/source3/configure b/source3/configure index f3a7b5bce4..57633fbafe 100755 --- a/source3/configure +++ b/source3/configure @@ -45,8 +45,6 @@ ac_help="$ac_help --with-ssl Include SSL support --without-ssl Don't include SSL support (default)" ac_help="$ac_help - --with-sslinc=DIR Tells us where the SSL stuff is (default /usr/local/ssl)" -ac_help="$ac_help --with-mmap Include experimental MMAP support --without-mmap Don't include MMAP support (default)" ac_help="$ac_help @@ -1933,7 +1931,7 @@ else fi done -for ac_hdr in sys/acl.h sys/cdefs.h glob.h +for ac_hdr in sys/acl.h sys/cdefs.h glob.h mysql.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 @@ -8282,34 +8280,6 @@ if test "${with_ssl+set}" = set; then #define WITH_SSL 1 EOF - CFLAGS="-I/usr/local/ssl/include $CFLAGS" - - if test "${with_sslinc+set}" = set; then - - withval="$with_sslinc" - case "$withval" in - yes|no) - echo "configure: warning: --with-sslinc called without argument - will - use default" 1>&2 - CFLAGS="-I/usr/local/ssl/include $CFLAGS" - LDFLAGS="-L/usr/local/ssl/lib $LDFLAGS" - LIBS="-lssl -lcrypto $LIBS" - ;; - * ) - CFLAGS="-I${withval}/include $CFLAGS" - LDFLAGS="-L${withval}/lib $LDFLAGS" - LIBS="-lssl -lcrypto $LIBS" - ;; - esac - - else - - CFLAGS="-I/usr/local/ssl/include $CFLAGS" - LDFLAGS="-L/usr/local/ssl/lib $LDFLAGS" - LIBS="-lssl -lcrypto $LIBS" - - fi - ;; *) echo "$ac_t""no" 1>&6 |