25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-22 16:20:52 +01:00

* src/aclocal.m4: Fix autoconf caching for SSL libraries (thanks

to Michael Shields) (EJAB-439)

* src/configure.ac: Don't hardcode gcc and gcc options in
Makefiles (thanks to Etan Reisner) (EJAB-436)

SVN Revision: 1001
This commit is contained in:
Badlop 2007-11-29 17:22:34 +00:00
parent 44d65ff303
commit dbdcadb6b3
2 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,10 @@
2007-11-29 Badlop <badlop@process-one.net>
* src/configure.ac: Don't hardcode gcc and options (EJAB-436)
* src/aclocal.m4: Fix autoconf caching for SSL libraries (thanks
to Michael Shields) (EJAB-439)
* src/configure.ac: Don't hardcode gcc and gcc options in
Makefiles (thanks to Etan Reisner) (EJAB-436)
* src/Makefile.in:
* src/ejabberd_zlib/Makefile.in:
* src/eldap/Makefile.in:

4
src/aclocal.m4 vendored
View File

@ -321,6 +321,10 @@ if test x"$tls" != x; then
SSL_CFLAGS="-DHAVE_SSL"
break
fi
else
# Clear this from the autoconf cache, so in the next pass of
# this loop with different -L arguments, it will test again.
unset ac_cv_lib_ssl_SSL_new
fi
done
if test x${have_openssl} != xyes; then