Changeset 753 for trunk/zoo-project/zoo-kernel/configure.ac
- Timestamp:
- Mar 14, 2016, 10:34:09 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-kernel/configure.ac
r740 r753 38 38 AC_FUNC_REALLOC 39 39 AC_CHECK_FUNCS([dup2 getcwd memset setenv strdup strstr]) 40 41 #============================================================================ 42 # Detect if openssl is available 43 #============================================================================ 44 45 AC_ARG_WITH([openssl], 46 [AS_HELP_STRING([--with-openssl=PATH], [Specifies an alternative location for the openssl library])], 47 [OPENSSL_DIR="$withval"], [OPENSSL_DIR="/usr/"]) 48 OPENSSL_CFLAGS="-I$OPENSSL_DIR/include" 49 OPENSSL_LDFLAGS="-lcrypto -L$OPENSSL_DIR/lib -lssl" 50 CPPFLAGS_SAVE="$CPPFLAGS" 51 CPPFLAGS="$OPENSSL_CFLAGS" 52 LIBS_SAVE="$LIBS" 53 LIBS="$OPENSSL_LDFLAGS" 54 AC_CHECK_HEADERS([openssl/md5.h openssl/hmac.h openssl/evp.h openssl/bio.h openssl/buffer.h], 55 [], [AC_MSG_ERROR([could not find header file $i related to openssl])]) 56 AC_CHECK_LIB(crypto, BIO_f_base64, 57 [], [AC_MSG_ERROR([could not find $i function in openssl library])]) 58 AC_SUBST([OPENSSL_CFLAGS]) 59 AC_SUBST([OPENSSL_LDFLAGS]) 40 60 41 61 #============================================================================ … … 333 353 [MS_SRC_PATH="$withval"], [MS_SRC_PATH=""]) 334 354 355 AC_ARG_WITH([ms-version], 356 [AS_HELP_STRING([--with-ms-version=VERSION], [Specifies the MapServer version to build against])], 357 [MS_VERSION="$withval"], [MS_VERSION=""]) 358 335 359 if test -z $MS_SRC_PATH; 336 360 then … … 345 369 AC_MSG_RESULT([Using MacOS X Framework for MapServer]) 346 370 else 371 if test "x$MS_VERSION" = "x7"; 372 then 373 MS_LDFLAGS="-L$MS_SRC_PATH/lib -lmapserver" 374 MS_CPPFLAGS="-DUSE_MS -I$MS_SRC_PATH/include/mapserver " 375 AC_MSG_RESULT([Using user-specified MapServer src path: $MS_SRC_PATH]) 376 else 347 377 if test -d $MS_SRC_PATH; then 348 378 MS_LDFLAGS="-L$MS_SRC_PATH -lmapserver `$MS_SRC_PATH/mapserver-config --libs`" … … 353 383 AC_MSG_ERROR([the user-specified mapserver-config file $MS_SRC_PATH does not exist]) 354 384 fi 385 fi 355 386 fi 356 387 MS_FILE="service_internal_ms.o"
Note: See TracChangeset
for help on using the changeset viewer.