[9235] Change way call AX_CHECK_OPENSSL.

Original way have many reported problems.
New also maybe not allways working but less problematic.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
HipToday 2010-01-22 01:18:16 +03:00 committed by VladimirMangos
parent 9eaf4beae7
commit dce014e887
2 changed files with 2 additions and 2 deletions

View file

@ -97,7 +97,7 @@ AC_CHECK_LIB( pthread, pthread_create, [],
]) ])
AC_CHECK_LIB( z, compress, [ZLIB=-lz],[AC_MSG_ERROR([Missing zlib])] ) AC_CHECK_LIB( z, compress, [ZLIB=-lz],[AC_MSG_ERROR([Missing zlib])] )
AC_CHECK_LIB( compat, ftime, [COMPATLIB=-lcompat] ) AC_CHECK_LIB( compat, ftime, [COMPATLIB=-lcompat] )
PKG_CHECK_MODULES(OPENSSL, [openssl], [], [CHECK_SSL()]) AX_CHECK_OPENSSL()
AC_ARG_WITH(postgresql, AC_ARG_WITH(postgresql,
[ --with-postgresql Use PostgreSQL as a backend (default: no)], [ --with-postgresql Use PostgreSQL as a backend (default: no)],

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "9234" #define REVISION_NR "9235"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__