⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configure.ac

📁 用c++编写http server的源码库,对socket等网络处理的代码可迅速转为己用.
💻 AC
字号:
# -----------------------------------# libpion autoconf configuration file# -----------------------------------# Set Pion version informationAC_INIT([libpion], [0.2.0], [support@atomiclabs.com])PION_LIBRARY_VERSION=$PACKAGE_VERSIONAC_SUBST(PION_LIBRARY_VERSION)AC_DEFINE_UNQUOTED([PION_VERSION],["$PACKAGE_VERSION"],[Define to the version number of libpion.])# Initialize some other thingsAC_PREREQ([2.59])AC_CONFIG_AUX_DIR(build)AC_CONFIG_SRCDIR(src/PionEngine.cpp)# Note: AM_CONFIG_HEADER is deprecatedAC_CONFIG_HEADERS([include/libpion/PionConfig.hpp])# DO NOT USE autoheader (the .hpp.in file is not automanaged)AUTOHEADER="echo autoheader ignored"# package and version args are now taken from AC_INIT()AM_INIT_AUTOMAKE# Define CXXFLAGS before AC_PROG_CXX to suppress the default autoconf# compiler optionsCXXFLAGS="-DLIBPION"# Setup libtoolAC_LIBTOOL_WIN32_DLLAC_LIBTOOL_DLOPENAC_PROG_LIBTOOL# Check for programsAC_PROG_CXXAC_PROG_INSTALL# Use C++ languageAC_LANG_CPLUSPLUSAX_COMPILER_VENDOR# Set basic compiler optionscase "$build_os" in*solaris*)	if test "$ax_cv_cxx_compiler_vendor" = "sun"; then		# Solaris: Sun Studio C++ compiler		CPPFLAGS="$CPPFLAGS -mt -library=stlport4"		LDFLAGS="$LDFLAGS -mt -library=stlport4"		PION_OPT_FLAGS="-O2"		PION_DEBUG_FLAGS="-g"	else		# Solaris: GCC compiler		CPPFLAGS="$CPPFLAGS -pthreads -D_REENTRANT"		LDFLAGS="$LDFLAGS -pthreads"		PION_OPT_FLAGS="-O2 -Wall"		PION_DEBUG_FLAGS="-ggdb -Wall"	fi	LIBS="$LIBS -lsocket -lnsl -ldl -lposix4"	;;*darwin*)	# Mac OS X: GCC compiler	# -pthread is implied (automatically set by compiler)	CPPFLAGS="$CPPFLAGS -D_REENTRANT"	#LDFLAGS="$LDFLAGS"	PION_OPT_FLAGS="-O2 -Wall"	PION_DEBUG_FLAGS="-ggdb -Wall"	LIBS="$LIBS -ldl"	;;*cygwin*)	# Cygwin GCC compiler (Windows)	CPPFLAGS="$CPPFLAGS -mthreads -D_REENTRANT -DPION_WIN32 -D__USE_W32_SOCKETS"	LDFLAGS="$LDFLAGS -mthreads"	PION_OPT_FLAGS="-O2 -Wall"	PION_DEBUG_FLAGS="-ggdb -Wall"	LIBS="$LIBS -lws2_32 -lmswsock"	;;*freebsd*)	# FreeBSD: GCC compiler	CPPFLAGS="$CPPFLAGS -pthread -D_REENTRANT"	LDFLAGS="$LDFLAGS -pthread"	PION_OPT_FLAGS="-O2 -Wall"	PION_DEBUG_FLAGS="-ggdb -Wall"	;;*)	# Other (Linux): GCC compiler	CPPFLAGS="$CPPFLAGS -pthread -D_REENTRANT"	LDFLAGS="$LDFLAGS -pthread"	PION_OPT_FLAGS="-O2 -Wall"	PION_DEBUG_FLAGS="-ggdb -Wall"	LIBS="$LIBS -ldl"	;;esac# Check for debugAC_ARG_WITH([debug],    AC_HELP_STRING([--with-debug],[build with debugging information]),    [with_debug=$withval],    [with_debug=no])if test "$with_debug" = "no"; then	CXXFLAGS="$CXXFLAGS $PION_OPT_FLAGS"else	AC_MSG_NOTICE(Building with debugging information)	CXXFLAGS="$CXXFLAGS $PION_DEBUG_FLAGS"fi# Check for --with-modulesAC_ARG_WITH([modules],    AC_HELP_STRING([--with-modules@<:@=DIR@:>@],[directory where HTTP modules are installed]),    [with_modules=$withval],    [with_modules=no])if test "$with_modules" = "no"; then	if test "x$prefix" = "xNONE"; then		PION_MODULES_DIRECTORY=/usr/local/lib/libpion/modules	else		PION_MODULES_DIRECTORY=${prefix}/lib/libpion/modules	fielse	PION_MODULES_DIRECTORY=$with_modulesfiAC_MSG_NOTICE([HTTP modules directory: $PION_MODULES_DIRECTORY])AC_DEFINE_UNQUOTED([PION_MODULES_DIRECTORY],["$PION_MODULES_DIRECTORY"],[Define to the directory where HTTP modules are installed.])AC_SUBST(PION_MODULES_DIRECTORY)     # Check for --with-cygwinAC_ARG_WITH([cygwin],    AC_HELP_STRING([--with-cygwin@<:@=DIR@:>@],[directory where cygwin is installed]),    [with_cygwin=$withval],    [with_cygwin=maybe])if test "$with_cygwin" = "maybe"; then	case "$build_os" in	*cygwin*)		PION_CYGWIN_DIRECTORY="c:/cygwin"		AC_MSG_NOTICE([Cygwin root directory: $PION_CYGWIN_DIRECTORY])		;;	*)		;;	esacelif test "$with_cygwin" != "no"; then	PION_CYGWIN_DIRECTOR="$with_cygwin"	AC_MSG_NOTICE([Cygwin root directory: $PION_CYGWIN_DIRECTORY])fiAC_DEFINE_UNQUOTED([PION_CYGWIN_DIRECTORY],["$PION_CYGWIN_DIRECTORY"],[Define to the directory where cygwin is installed.])AC_SUBST(PION_CYGWIN_DIRECTORY)     # Check for unordered container supportAC_CHECK_HEADERS([unordered_map],[unordered_map_type=unordered_map],[])AC_CHECK_HEADERS([ext/hash_map],[unordered_map_type=ext_hash_map],[])AC_CHECK_HEADERS([hash_map],[unordered_map_type=hash_map],[])if test "$unordered_map_type" = "unordered_map"; then	AC_DEFINE([PION_HAVE_UNORDERED_MAP],[1],[Define to 1 if you have the <unordered_map> header file.])elif test "$unordered_map_type" = "ext_hash_map"; then	AC_DEFINE([PION_HAVE_EXT_HASH_MAP],[1],[Define to 1 if you have the <ext/hash_map> header file.])elif test "$unordered_map_type" = "hash_map"; then	AC_DEFINE([PION_HAVE_HASH_MAP],[1],[Define to 1 if you have the <hash_map> header file.])else	AC_MSG_ERROR([C++ compiler does not seem to support unordered containers])fi# Check for BoostAX_BOOST_BASE([1.34])CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"# Check for Boost ASIO libraryAC_CHECK_HEADERS([boost/asio.hpp],,AC_MSG_ERROR(Unable to find the boost::asio headers))# Check for Boost Thread libraryAC_CHECK_HEADERS([boost/thread/thread.hpp],,AC_MSG_ERROR(Unable to find the boost::thread headers))LIBS_SAVED="$LIBS"BOOST_LIB=boost_threadfor ax_lib in $BOOST_LIB-$CC-mt $BOOST_LIB-mt lib$BOOST_LIB-$CC-mt \	lib$BOOST_LIB-mt $BOOST_LIB-$CC $BOOST_LIB lib$BOOST_LIB-$CC \	lib$BOOST_LIB $BOOST_LIB-${CC}34-mt lib$BOOST_LIB-${CC}34-mt \	$BOOST_LIB-${CC}34 lib$BOOST_LIB-${CC}34;do	LIBS="$LIBS_SAVED -l$ax_lib"	AC_MSG_NOTICE(Checking for -l$ax_lib)	AC_TRY_LINK([#include <boost/thread/thread.hpp>],		[ boost::thread current_thread; return 0; ],		[BOOST_THREAD_LIB="-l$ax_lib"; break],		[BOOST_THREAD_LIB=""])doneif test "x$BOOST_THREAD_LIB" = "x"; then	AC_MSG_ERROR(Unable to link with the boost::thread library)else	AC_MSG_NOTICE(Linking with boost::thread works)fiLIBS="$LIBS_SAVED"AC_SUBST(BOOST_THREAD_LIB)# Check for Boost System libraryAC_CHECK_HEADERS([boost/system/error_code.hpp],,AC_MSG_ERROR(Unable to find the boost::system headers))LIBS_SAVED="$LIBS"BOOST_LIB=boost_systemfor ax_lib in $BOOST_LIB-$CC-mt $BOOST_LIB-mt lib$BOOST_LIB-$CC-mt \	lib$BOOST_LIB-mt $BOOST_LIB-$CC $BOOST_LIB lib$BOOST_LIB-$CC \	lib$BOOST_LIB $BOOST_LIB-${CC}34-mt lib$BOOST_LIB-${CC}34-mt \	$BOOST_LIB-${CC}34 lib$BOOST_LIB-${CC}34;do	LIBS="$LIBS_SAVED -l$ax_lib"	AC_MSG_NOTICE(Checking for -l$ax_lib)	AC_TRY_LINK([#include <boost/system/error_code.hpp>],		[ boost::system::error_code error_code; std::string message(error_code.message()); return 0; ],		[BOOST_SYSTEM_LIB="-l$ax_lib"; break],		[BOOST_SYSTEM_LIB=""])doneif test "x$BOOST_SYSTEM_LIB" = "x"; then	AC_MSG_ERROR(Unable to link with the boost::system library)else	AC_MSG_NOTICE(Linking with boost::system works)fiLIBS="$LIBS_SAVED"AC_SUBST(BOOST_SYSTEM_LIB)# Check for Boost Filesystem libraryAC_CHECK_HEADERS([boost/filesystem/path.hpp],,AC_MSG_ERROR(Unable to find the boost::filesystem headers))LIBS_SAVED="$LIBS"BOOST_LIB=boost_filesystemfor ax_lib in $BOOST_LIB-$CC-mt $BOOST_LIB-mt lib$BOOST_LIB-$CC-mt \	lib$BOOST_LIB-mt $BOOST_LIB-$CC $BOOST_LIB lib$BOOST_LIB-$CC \	lib$BOOST_LIB $BOOST_LIB-${CC}34-mt lib$BOOST_LIB-${CC}34-mt \	$BOOST_LIB-${CC}34 lib$BOOST_LIB-${CC}34;do	LIBS="$LIBS_SAVED -l$ax_lib"	AC_MSG_NOTICE(Checking for -l$ax_lib)	AC_TRY_LINK([#include <boost/filesystem/path.hpp>],		[ boost::filesystem::path a_path; return 0; ],		[BOOST_FILESYSTEM_LIB="-l$ax_lib"; break],		[BOOST_FILESYSTEM_LIB=""])doneif test "x$BOOST_FILESYSTEM_LIB" = "x"; then	AC_MSG_ERROR(Unable to link with the boost::filesystem library)else	AC_MSG_NOTICE(Linking with boost::filesystem works)fiLIBS="$LIBS_SAVED"AC_SUBST(BOOST_FILESYSTEM_LIB)# Check for OpenSSLAC_ARG_WITH([openssl],    AC_HELP_STRING([--with-openssl@<:@=DIR@:>@],[location of OpenSSL library (enables SSL support)]),    [ openssl_location=$withval ], [ without_openssl=true ])# Check if openssl location is specifiedif test "$without_openssl" != "true"; then	if test "x$openssl_location" != "xyes"; then		CPPFLAGS="$CPPFLAGS -I$openssl_location/include"		LDFLAGS="$LDFLAGS -L$openssl_location/lib"	fi	# Check for OpenSSL headers	AC_CHECK_HEADERS([openssl/ssl.h],,AC_MSG_ERROR([Unable to find the OpenSSL headers]))	# Check for log4cxx library	LIBS_SAVED="$LIBS"	LIBS="$LIBS_SAVED -lssl -lcrypto"	AC_TRY_LINK([#include <openssl/ssl.h>],[ SSL_library_init(); return(0); ],		AC_MSG_NOTICE(Linking with OpenSSL works),		AC_MSG_ERROR(Unable to link with the OpenSSL library))	LIBS="$LIBS_SAVED"	PION_SSL_LIB="-lssl -lcrypto"	# Found the OpenSSL library	AC_MSG_NOTICE(SSL encryption support enabled (found OpenSSL))	AC_DEFINE([PION_HAVE_SSL],[1],[Define to 1 if you have the `OpenSSL' library.])else	# Display notice if SSL is disabled	AC_MSG_NOTICE([SSL support is disabled (try --with-openssl)])fiAC_SUBST(PION_SSL_LIB)# Check for logging supportAC_ARG_WITH([log4cplus],    AC_HELP_STRING([--with-log4cplus@<:@=DIR@:>@],[location of log4cplus library (enables logging)]),    [ log4cplus_location=$withval ], [ without_log4cplus=true ])AC_ARG_WITH([log4cxx],    AC_HELP_STRING([--with-log4cxx@<:@=DIR@:>@],[location of log4cxx library (enables logging)]),    [ log4cxx_location=$withval ], [ without_log4cxx=true ])AC_ARG_WITH([log4cpp],    AC_HELP_STRING([--with-log4cpp@<:@=DIR@:>@],[location of log4cpp library (enables logging)]),    [ log4cpp_location=$withval ], [ without_log4cpp=true ])AC_ARG_WITH([ostream-logging],    AC_HELP_STRING([--with-ostream-logging],[use std::cout and std::cerr for logging]),    [with_ostream_logging=true], [with_ostream_logging=false])if test "$without_log4cplus" != "true"; then	# Check if log4cplus location is specified	if test "x$log4cplus_location" != "xyes"	then		CPPFLAGS="$CPPFLAGS -I$log4cplus_location/include"		LDFLAGS="$LDFLAGS -L$log4cplus_location/lib"	fi	# Check for log4cplus headers	AC_CHECK_HEADERS([log4cplus/logger.h],,AC_MSG_ERROR([Unable to find the log4cplus headers]))		# Check for log4cplus library	LIBS_SAVED="$LIBS"	LIBS="$LIBS_SAVED -llog4cplus"	AC_TRY_LINK([#include <log4cplus/logger.h>],[ log4cplus::Logger::getRoot(); return 0; ],		AC_MSG_NOTICE(Linking with log4cplus works),		AC_MSG_ERROR(Unable to link with the log4cplus library))	LIBS="$LIBS_SAVED"	PION_LOG_LIB="-llog4cplus"	# Found the log4cplus library	AC_MSG_NOTICE(Using the log4cplus library for logging)	AC_DEFINE([PION_HAVE_LOG4CPLUS],[1],[Define to 1 if you have the `log4cplus' library (-llog4cplus).])elif test "$without_log4cxx" != "true"; then	# Check if log4cxx location is specified	if test "x$log4cxx_location" != "xyes"	then		CPPFLAGS="$CPPFLAGS -I$log4cxx_location/include"		LDFLAGS="$LDFLAGS -L$log4cxx_location/lib"	fi	# Check for log4cxx headers	AC_CHECK_HEADERS([log4cxx/logger.h],,AC_MSG_ERROR([Unable to find the log4cxx headers]))		# Check for log4cxx library	LIBS_SAVED="$LIBS"	LIBS="$LIBS_SAVED -llog4cxx"	AC_TRY_LINK([#include <log4cxx/logger.h>],[ log4cxx::Logger::getRootLogger(); return 0; ],		AC_MSG_NOTICE(Linking with log4cxx works),		AC_MSG_ERROR(Unable to link with the log4cxx library))	LIBS="$LIBS_SAVED"	PION_LOG_LIB="-llog4cxx"	# Found the log4cxx library	AC_MSG_NOTICE(Using the log4cxx library for logging)	AC_DEFINE([PION_HAVE_LOG4CXX],[1],[Define to 1 if you have the `log4cxx' library (-llog4cxx).])elif test "$without_log4cpp" != "true"; then	# Check if log4cpp location is specified	if test "x$log4cpp_location" != "xyes"	then		CPPFLAGS="$CPPFLAGS -I$log4cpp_location/include"		LDFLAGS="$LDFLAGS -L$log4cpp_location/lib"	fi	# Check for log4cpp headers	AC_CHECK_HEADERS([log4cpp/Category.hh],,AC_MSG_ERROR([Unable to find the log4cpp headers]))		# Check for log4cpp library	LIBS_SAVED="$LIBS"	LIBS="$LIBS_SAVED -llog4cpp"	AC_TRY_LINK([#include <log4cpp/Category.hh>],[ log4cpp::Category::getRoot(); return 0; ],		AC_MSG_NOTICE(Linking with log4cpp works),		AC_MSG_ERROR(Unable to link with the log4cpp library))	LIBS="$LIBS_SAVED"	PION_LOG_LIB="-llog4cpp"	# Found the log4cpp library	AC_MSG_NOTICE(Using the log4cpp library for logging)	AC_DEFINE([PION_HAVE_LOG4CPP],[1],[Define to 1 if you have the `log4cpp' library (-llog4cpp).])elif test "$with_ostream_logging" = "true"; then	AC_MSG_NOTICE(Using std::cout and std::cerr for logging)	AC_DEFINE([PION_HAVE_OSTREAM_LOGGING],[1],[Define to 1 to use std::cout and std::cerr for logging.])else	# Display notice if no logging found	AC_MSG_NOTICE([Logging is disabled])fiAC_SUBST(PION_LOG_LIB)# Output MakefilesAC_OUTPUT(libpion.pc Makefile include/Makefile include/libpion/Makefile 	src/Makefile modules/Makefile tests/Makefile)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -