mirror of
https://github.com/mangosfour/server.git
synced 2025-12-19 04:37:06 +00:00
[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:
parent
9eaf4beae7
commit
dce014e887
2 changed files with 2 additions and 2 deletions
|
|
@ -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)],
|
||||||
|
|
|
||||||
|
|
@ -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__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue