deleted unneeded files
This commit is contained in:
453
h2/configure.ac
453
h2/configure.ac
@ -1,12 +1,8 @@
|
||||
dnl AC_PREREQ([2.67])
|
||||
|
||||
dnl Make sure you change the version information
|
||||
dnl in include/h2/conf_*.h whenever you change the version
|
||||
dnl here. Those files don't depend on autoconf, thus requiring
|
||||
dnl manual change.
|
||||
AC_INIT([h2],[0.1.0],[Chung, Hyung-Hwan (hyunghwan.chung@gmail.com)],[],[http://code.abiyo.net/@h2])
|
||||
AC_INIT([h2],[0.1.0],[Chung, Hyung-Hwan (hyunghwan.chung@gmail.com)],[],[http://code.miflux.com/@h2])
|
||||
|
||||
AC_CONFIG_HEADER([include/h2/config.h])
|
||||
AC_CONFIG_HEADER([h2-cfg.h])
|
||||
AC_CONFIG_AUX_DIR([ac])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
||||
@ -24,29 +20,11 @@ dnl m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
||||
dnl determine a C compiler to use
|
||||
AC_PROG_CC
|
||||
|
||||
dnl determine a C++ compiler to use
|
||||
AC_PROG_CXX
|
||||
|
||||
dnl check if the C++ compiler exists in PATH
|
||||
AC_CHECK_PROG(HAVE_CXX, $CXX, yes, no)
|
||||
|
||||
dnl check if the C++ compiler supports namespace
|
||||
AX_CXX_NAMESPACE_STD
|
||||
|
||||
dnl determine some key programs
|
||||
AC_PROG_INSTALL
|
||||
AC_PROG_EGREP
|
||||
AC_PROG_LN_S
|
||||
|
||||
dnl check other tools
|
||||
AC_CHECK_TOOL(RM, rm)
|
||||
AC_CHECK_TOOL(RMDIR, rmdir)
|
||||
AC_CHECK_TOOL(TRUE, true)
|
||||
AC_CHECK_TOOL(ECHO, echo)
|
||||
|
||||
dnl avoid "'/bin/rm: cannot remove `libtoolT': No such file or directory"
|
||||
RM="$RM -f"
|
||||
|
||||
dnl initialize libtool
|
||||
LT_INIT
|
||||
AC_SUBST(LIBTOOL_DEPS)
|
||||
@ -94,118 +72,10 @@ AC_SUBST(LIBM, $LIBM)
|
||||
|
||||
dnl check header files.
|
||||
AC_HEADER_STDC
|
||||
AC_CHECK_HEADERS([stddef.h wchar.h wctype.h errno.h signal.h fcntl.h dirent.h])
|
||||
AC_CHECK_HEADERS([time.h sys/time.h utime.h spawn.h execinfo.h ucontext.h])
|
||||
AC_CHECK_HEADERS([sys/resource.h sys/wait.h sys/syscall.h sys/ioctl.h])
|
||||
AC_CHECK_HEADERS([sys/sendfile.h sys/epoll.h sys/event.h])
|
||||
AC_CHECK_HEADERS([sys/sysctl.h sys/socket.h sys/sockio.h ifaddrs.h linux/netfilter_ipv4.h])
|
||||
AC_CHECK_HEADERS([net/if.h net/if_dl.h], [], [], [
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>])
|
||||
AC_CHECK_HEADERS([sys/stropts.h sys/macstat.h linux/ethtool.h linux/sockios.h])
|
||||
AC_CHECK_HEADERS([quadmath.h crt_externs.h sys/prctl.h uci.h])
|
||||
|
||||
|
||||
dnl check functions
|
||||
AC_CHECK_FUNCS([uselocale])
|
||||
AC_CHECK_FUNCS([mbrlen mbrtowc wcrtomb])
|
||||
AC_CHECK_FUNCS([mbsnrtowcs mbsrtowcs wcsnrtombs wcsrtombs])
|
||||
AC_CHECK_FUNCS([wctype iswctype wctrans towctrans])
|
||||
AC_CHECK_FUNCS([isblank iswblank])
|
||||
AC_CHECK_FUNCS([lseek64 stat64 fstat64 lstat64 ftruncate64 readdir64])
|
||||
AC_CHECK_FUNCS([timegm timelocal])
|
||||
AC_CHECK_FUNCS([utime utimes])
|
||||
AC_CHECK_FUNCS([sysconf prctl fdopendir setrlimit getrlimit])
|
||||
AC_CHECK_FUNCS([backtrace backtrace_symbols])
|
||||
AC_CHECK_FUNCS([fork vfork posix_spawn gettid nanosleep select])
|
||||
AC_CHECK_FUNCS([makecontext swapcontext getcontext setcontext])
|
||||
AC_CHECK_FUNCS([_vsnprintf _vsnwprintf])
|
||||
dnl AC_CHECK_FUNCS([_vsnprintf _vsnwprintf])
|
||||
|
||||
OLDLIBS="$LIBS"
|
||||
LIBS="$LIBM $LIBS"
|
||||
AC_CHECK_FUNCS([powl fmodl sinl cosl tanl atanl atan2l logl log10l expl sqrtl ceill floorl roundl])
|
||||
AC_CHECK_FUNCS([pow fmod sin cos tan atan atan2 log log10 exp sqrt ceil floor round])
|
||||
AC_CHECK_FUNCS([powf fmodf sinf cosf tanf atanf atan2f logf log10f expf sqrtf ceilf floorf roundf])
|
||||
LIBS="$OLDLIBS"
|
||||
|
||||
dnl OLDLIBS="$LIBS"
|
||||
dnl AC_SEARCH_LIBS([connect], [socket])
|
||||
dnl LIBS="$OLDLIBS"
|
||||
dnl if test "$ac_cv_search_connect" != "none required" -a "$ac_cv_search_connect" != "no"
|
||||
dnl then
|
||||
dnl SOCKET_LIBS="$SOCKET_LIBS -lsocket"
|
||||
dnl fi
|
||||
dnl AC_SUBST(SOCKET_LIBS)
|
||||
AC_CHECK_FUNCS([connect gethostbyname])
|
||||
if test "$ac_cv_func_gethostbyname" = "no"
|
||||
then
|
||||
AC_CHECK_LIB([nsl], [gethostbyname], [
|
||||
SOCKET_LIBS="$SOCKET_LIBS -lnsl"
|
||||
AC_DEFINE(HAVE_GETHOSTBYNAME, 1)
|
||||
])
|
||||
fi
|
||||
if test "$ac_cv_func_connect" = "no"
|
||||
then
|
||||
AC_CHECK_LIB([socket], [connect], [
|
||||
SOCKET_LIBS="$SOCKET_LIBS -lsocket"
|
||||
AC_DEFINE(HAVE_CONNECT, 1)
|
||||
])
|
||||
fi
|
||||
if test "${platform_win32}" = "yes"
|
||||
then
|
||||
SOCKET_LIBS="$SOCKET_LIBS -lws2_32"
|
||||
fi
|
||||
AC_SUBST(SOCKET_LIBS)
|
||||
|
||||
OLDLIBS="$LIBS"
|
||||
LIBS="$SOCKET_LIBS $LIBS"
|
||||
AC_CHECK_FUNCS([if_nametoindex if_indextoname getifaddrs])
|
||||
LIBS="$OLDLIBS"
|
||||
|
||||
dnl check if sendfile and its variants exist in the standard c library
|
||||
dnl it inspects the existence of each missing function in the sendfile library.
|
||||
AC_CHECK_FUNCS([sendfile sendfile64 sendfilev sendfilev64])
|
||||
if test "$ac_cv_func_sendfile" = "no"
|
||||
then
|
||||
AC_CHECK_LIB([sendfile], [sendfile], [
|
||||
SENDFILE_LIBS="-lsendfile"
|
||||
dnl only for consistency with AC_CHECK_FUNCS
|
||||
AC_DEFINE(HAVE_SENDFILE, 1)
|
||||
])
|
||||
fi
|
||||
if test "$ac_cv_func_sendfile64" = "no"
|
||||
then
|
||||
AC_CHECK_LIB([sendfile], [sendfile64], [
|
||||
SENDFILE_LIBS="-lsendfile"
|
||||
dnl only for consistency with AC_CHECK_FUNCS
|
||||
AC_DEFINE(HAVE_SENDFILE64, 1)
|
||||
])
|
||||
fi
|
||||
if test "$ac_cv_func_sendfilev" = "no"
|
||||
then
|
||||
AC_CHECK_LIB([sendfile], [sendfilev], [
|
||||
SENDFILE_LIBS="-lsendfile"
|
||||
dnl only for consistency with AC_CHECK_FUNCS
|
||||
AC_DEFINE(HAVE_SENDFILEV, 1)
|
||||
])
|
||||
fi
|
||||
if test "$ac_cv_func_sendfilev64" = "no"
|
||||
then
|
||||
AC_CHECK_LIB([sendfile], [sendfilev64], [
|
||||
SENDFILE_LIBS="-lsendfile"
|
||||
dnl only for consistency with AC_CHECK_FUNCS
|
||||
AC_DEFINE(HAVE_SENDFILEV64, 1)
|
||||
])
|
||||
fi
|
||||
AC_SUBST(SENDFILE_LIBS)
|
||||
|
||||
AC_CHECK_FUNCS([epoll_create epoll_create1])
|
||||
if test "$ac_cv_func_epoll_create" = "yes"
|
||||
then
|
||||
AC_DEFINE(HAVE_EPOLL, 1, [epoll support])
|
||||
fi
|
||||
|
||||
AC_CHECK_FUNCS([kqueue kqueue1 kevent])
|
||||
|
||||
dnl check is the import library for unicows.dll exists
|
||||
dnl this check doesn't look for a particular symbol
|
||||
@ -214,69 +84,6 @@ dnl the existence of the libaray.
|
||||
AC_CHECK_LIB([unicows], [main], [UNICOWS_LIBS="-lunicows"])
|
||||
AC_SUBST(UNICOWS_LIBS)
|
||||
|
||||
AC_ARG_ENABLE([ssl], [AS_HELP_STRING([--enable-ssl],[build the library in the ssl mode (default. yes)])],
|
||||
enable_ssl_is=$enableval,enable_ssl_is=yes)
|
||||
if test "$enable_ssl_is" = "yes"
|
||||
then
|
||||
dnl check for an SSL library
|
||||
AC_CHECK_FUNCS([SSL_library_init])
|
||||
if test "$ac_cv_func_SSL_library_init" = "yes"
|
||||
then
|
||||
AC_DEFINE(HAVE_SSL, 1, [ssl support])
|
||||
else
|
||||
AC_CHECK_LIB([ssl], [SSL_library_init], [
|
||||
SSL_LIBS="-lssl"
|
||||
AC_DEFINE(HAVE_SSL, 1, [ssl support])
|
||||
|
||||
dnl additional check
|
||||
AC_CHECK_LIB([crypto], [ERR_get_error], [
|
||||
SSL_LIBS="${SSL_LIBS} -lcrypto"
|
||||
])
|
||||
|
||||
dnl only for consistency with AC_CHECK_FUNCS
|
||||
AC_DEFINE(HAVE_SSL_LIBRARY_INIT, 1)
|
||||
])
|
||||
fi
|
||||
fi
|
||||
AC_SUBST(SSL_LIBS)
|
||||
|
||||
dnl MPI (optional)
|
||||
LX_FIND_MPI(C)
|
||||
AM_CONDITIONAL(HAVE_C_MPI, test "${have_C_mpi}" = "yes" )
|
||||
dnl AM_CONDITIONAL(HAVE_CXX_MPI, test "${have_CXX_mpi}" = "yes" )
|
||||
|
||||
dnl libuci (optional)
|
||||
AC_CHECK_LIB([uci], [uci_alloc_context], [UCI_LIBS="-luci"])
|
||||
AC_SUBST(UCI_LIBS)
|
||||
AM_CONDITIONAL(HAVE_LIBUCI, test "${ac_cv_lib_uci_uci_alloc_context}" = "yes" -a "${ac_cv_header_uci_h}" = "yes")
|
||||
|
||||
AC_STRUCT_DIRENT_D_TYPE
|
||||
AC_CHECK_MEMBERS([struct stat.st_birthtime])
|
||||
AC_CHECK_MEMBERS([struct stat.st_mtim.tv_nsec])
|
||||
AC_CHECK_MEMBERS([struct stat.st_birthtim.tv_nsec])
|
||||
AC_CHECK_MEMBERS([struct stat.st_mtimespec.tv_nsec])
|
||||
AC_CHECK_MEMBERS([struct stat.st_birthtimespec.tv_nsec])
|
||||
|
||||
|
||||
AC_CHECK_MEMBERS([struct ifreq.ifr_ifindex, struct ifreq.ifr_mtu], [], [],
|
||||
[#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#ifdef HAVE_NET_IF_H
|
||||
#include <net/if.h>
|
||||
#endif])
|
||||
|
||||
AC_CHECK_TYPES([struct lifconf, struct lifreq, struct if_laddrreq], [], [],
|
||||
[#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#ifdef HAVE_NET_IF_H
|
||||
#include <net/if.h>
|
||||
#endif])
|
||||
|
||||
AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id], [], [],
|
||||
[#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>])
|
||||
|
||||
AC_MSG_CHECKING([for va_copy])
|
||||
AC_TRY_LINK(
|
||||
[#include <stdarg.h>],
|
||||
@ -332,108 +139,6 @@ AC_CHECK_SIZEOF(wchar_t)
|
||||
AC_CHECK_SIZEOF(off_t)
|
||||
AC_CHECK_SIZEOF(off64_t)
|
||||
|
||||
AC_CHECK_SIZEOF(mbstate_t,,[#include <wchar.h>])
|
||||
AX_CHECK_NUMVALOF(MB_LEN_MAX,[32],[#include <limits.h>])
|
||||
|
||||
if test "${platform_win32}" == "yes"
|
||||
then
|
||||
AC_CHECK_SIZEOF(struct sockaddr_in,,[
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>])
|
||||
AC_CHECK_SIZEOF(struct sockaddr_in6,, [
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>])
|
||||
else
|
||||
AC_CHECK_SIZEOF(struct sockaddr_in,,[
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>])
|
||||
AC_CHECK_SIZEOF(struct sockaddr_in6,, [
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>])
|
||||
fi
|
||||
|
||||
dnl gcc 3.4.3 on opensolaris x86 gave this warning without -msse or
|
||||
dnl something similar.
|
||||
dnl SSE vector argument without SSE enabled changes the ABI
|
||||
dnl it also ended with an internal compiler error while compiling
|
||||
dnl some expressions like 'v % base' where v is of the __int128_t type.
|
||||
dnl so i've added this check to determine if the compiler has
|
||||
dnl proper support for __int128_t.
|
||||
dnl
|
||||
dnl Changing ac_cv_sizeof___int128_t here doesn't corret SIZEOF___INT128_T
|
||||
dnl since it's already generated. It only affects H2_SIZEOF___INT128_T below.
|
||||
if test ${ac_cv_sizeof___int128_t} -gt 0
|
||||
then
|
||||
AC_MSG_CHECKING([__int128_t with %])
|
||||
AC_COMPILE_IFELSE(
|
||||
[AC_LANG_PROGRAM([], [
|
||||
volatile __int128_t x, base;
|
||||
x = (__int128_t)&base;
|
||||
base = (__int128_t)&x;
|
||||
x = x % base;
|
||||
return (int)x;
|
||||
])],
|
||||
|
||||
[
|
||||
AC_MSG_RESULT(yes)
|
||||
],
|
||||
[
|
||||
AC_MSG_RESULT(no)
|
||||
ac_cv_sizeof___int128_t=0
|
||||
]
|
||||
)
|
||||
fi
|
||||
|
||||
dnl Some compilers doesn't seem to have full support for __float128
|
||||
dnl even if the type is available.
|
||||
if test ${ac_cv_sizeof___float128} -gt 0
|
||||
then
|
||||
AC_MSG_CHECKING([__float128 with linking])
|
||||
AC_TRY_LINK(
|
||||
[#include <stdio.h>],
|
||||
[
|
||||
__float128 x, y, z;
|
||||
z = x * y + x;
|
||||
printf ("%p", (char*)(int)z);
|
||||
],
|
||||
[AC_MSG_RESULT(yes)],
|
||||
[
|
||||
AC_MSG_RESULT(no)
|
||||
ac_cv_sizeof___float128=0
|
||||
]
|
||||
)
|
||||
fi
|
||||
|
||||
if test ${ac_cv_sizeof___float128} -gt 0
|
||||
then
|
||||
AC_CHECK_FUNCS([quadmath_snprintf])
|
||||
if test "$ac_cv_func_quadmath_snprintf" = "no"
|
||||
then
|
||||
OLDLIBS="$LIBS"
|
||||
LIBS="$LIBM $LIBS"
|
||||
AC_CHECK_FUNCS([quadmath_snprintf])
|
||||
LIBS="$OLDLIBS"
|
||||
|
||||
if test "$ac_cv_func_quadmath_snprintf" = "no"
|
||||
then
|
||||
AC_CHECK_LIB([quadmath], [quadmath_snprintf], [
|
||||
QUADMATH_LIBS="-lquadmath"
|
||||
LIBM="$LIBM -lquadmath"
|
||||
AC_DEFINE(HAVE_QUADMATH_SNPRINTF, 1)
|
||||
])
|
||||
else
|
||||
QUADMATH_LIBS="$LIBM"
|
||||
fi
|
||||
fi
|
||||
|
||||
OLDLIBS="$LIBS"
|
||||
LIBS="$LIBM $LIBS"
|
||||
AC_CHECK_FUNCS([powq fmodq sinq cosq tanq atanq atan2q logq log10q expq sqrtq ceilq floorq roundq])
|
||||
AC_CHECK_FUNCS([strtoflt128])
|
||||
LIBS="$OLDLIBS"
|
||||
fi
|
||||
AC_SUBST(QUADMATH_LIBS)
|
||||
|
||||
AC_DEFINE_UNQUOTED(H2_SIZEOF_CHAR, ${ac_cv_sizeof_char}, [sizeof(char)])
|
||||
AC_DEFINE_UNQUOTED(H2_SIZEOF_SHORT, ${ac_cv_sizeof_short}, [sizeof(short)])
|
||||
AC_DEFINE_UNQUOTED(H2_SIZEOF_INT, ${ac_cv_sizeof_int}, [sizeof(int)])
|
||||
@ -454,12 +159,6 @@ AC_DEFINE_UNQUOTED(H2_SIZEOF___FLOAT128, ${ac_cv_sizeof___float128}, [sizeof(__f
|
||||
AC_DEFINE_UNQUOTED(H2_SIZEOF_OFF_T, ${ac_cv_sizeof_off_t}, [sizeof(off_t)])
|
||||
AC_DEFINE_UNQUOTED(H2_SIZEOF_OFF64_T, ${ac_cv_sizeof_off64_t}, [sizeof(off64_t)])
|
||||
|
||||
AC_DEFINE_UNQUOTED(H2_SIZEOF_MBSTATE_T, ${ac_cv_sizeof_mbstate_t}, [sizeof(mbstate_t)])
|
||||
AC_DEFINE_UNQUOTED(H2_MBLEN_MAX, ${ax_cv_numvalof_MB_LEN_MAX}, [MB_LEN_MAX])
|
||||
|
||||
AC_DEFINE_UNQUOTED(H2_SIZEOF_STRUCT_SOCKADDR_IN, ${ac_cv_sizeof_struct_sockaddr_in}, [sizeof(struct sockaddr_in)])
|
||||
AC_DEFINE_UNQUOTED(H2_SIZEOF_STRUCT_SOCKADDR_IN6, ${ac_cv_sizeof_struct_sockaddr_in6}, [sizeof(struct sockaddr_in6)])
|
||||
|
||||
h2_package_version_major="`echo ${PACKAGE_VERSION} | cut -d. -f1`"
|
||||
h2_package_version_minor="`echo ${PACKAGE_VERSION} | cut -d. -f2`"
|
||||
h2_package_version_patch="`echo ${PACKAGE_VERSION} | cut -d. -f3`"
|
||||
@ -484,46 +183,19 @@ AC_C_BIGENDIAN(
|
||||
[AC_DEFINE([H2_ENDIAN_LITTLE],[],[Little Endian])],
|
||||
[AC_DEFINE([H2_ENDIAN_UNKNOWN],[],[Unknown Endian])])
|
||||
|
||||
dnl define extra options
|
||||
|
||||
AC_ARG_ENABLE([mchar], [AS_HELP_STRING([--enable-mchar],[enable qse_mchar_t (default. yes)])],
|
||||
enable_mchar_is=$enableval,enable_mchar_is=yes)
|
||||
if test "${enable_mchar_is}" = "yes"
|
||||
then
|
||||
AC_DEFINE([H2_ENABLE_MCHAR],[],[Enable qse_mchar_t])
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_MCHAR, test "${enable_mchar_is}" = "yes" )
|
||||
|
||||
AC_ARG_ENABLE([wchar], [AS_HELP_STRING([--enable-wchar],[enable qse_wchar_t (default. yes)])],
|
||||
enable_wchar_is=$enableval,enable_wchar_is=yes)
|
||||
if test "${enable_wchar_is}" = "yes"
|
||||
then
|
||||
AC_DEFINE([H2_ENABLE_WCHAR],[],[Enable qse_wchar_t])
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_WCHAR, test "${enable_wchar_is}" = "yes" )
|
||||
|
||||
AC_ARG_ENABLE([wwchar], [AS_HELP_STRING([--enable-wwchar],[enable qse_wwchar_t (default. yes)])],
|
||||
enable_wwchar_is=$enableval,enable_wwchar_is=yes)
|
||||
if test "${enable_wwchar_is}" = "yes"
|
||||
then
|
||||
AC_DEFINE([H2_ENABLE_WWCHAR],[],[Enable qse_wwchar_t])
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_WWCHAR, test "${enable_wwchar_is}" = "yes" )
|
||||
|
||||
|
||||
AC_ARG_WITH([char-type],
|
||||
[AS_HELP_STRING(--with-char-type,[specify the default character type. one of mchar, wchar, wwchar])],
|
||||
[char_type=$withval]
|
||||
)
|
||||
if test "${char_type}" = "mchar" -a "${enable_mchar_is}" = "yes"
|
||||
if test "${char_type}" = "mchar"
|
||||
then
|
||||
AC_DEFINE([H2_CHAR_IS_MCHAR],[],[Define h2_char_t to h2_mchar_t])
|
||||
AC_SUBST(CHAR_TYPE, "H2_CHAR_IS_MCHAR")
|
||||
elif test "$char_type" = "wchar" -a "${enable_wchar_is}" = "yes"
|
||||
elif test "$char_type" = "wchar"
|
||||
then
|
||||
AC_DEFINE([H2_CHAR_IS_WCHAR],[],[Define h2_char_t to h2_wchar_t])
|
||||
AC_SUBST(CHAR_TYPE, "H2_CHAR_IS_WCHAR")
|
||||
elif test "$char_type" = "wwchar" -a "${enable_wwchar_is}" = "yes"
|
||||
elif test "$char_type" = "wwchar"
|
||||
then
|
||||
AC_DEFINE([H2_CHAR_IS_WWCHAR],[],[Define h2_char_t to h2_wwchar_t])
|
||||
AC_SUBST(CHAR_TYPE, "H2_CHAR_IS_WWCHAR")
|
||||
@ -531,102 +203,6 @@ else
|
||||
AC_MSG_ERROR([The default character type(--with-char-type) must be one of mchar, wchar, wwchar and it must be enabled.])
|
||||
fi
|
||||
|
||||
|
||||
|
||||
|
||||
AC_ARG_ENABLE([bundled-unicode], [AS_HELP_STRING([--enable-bundled-unicode],[use thn bundled unicode routines (default. no)])],
|
||||
enable_bundled_unicode_is=$enableval,enable_bundled_unicode_is=yes)
|
||||
if test "${ac_cv_header_wctype_h}" = "no" -o "${ac_cv_func_wctrans}" = "no" -o "${ac_cv_func_wctype}" = "no"
|
||||
then
|
||||
dnl force bundled-unicode to yes if some wchar functions are not available
|
||||
enable_bundled_unicode_is=yes
|
||||
fi
|
||||
if test "${enable_bundled_unicode_is}" = "yes"
|
||||
then
|
||||
AC_DEFINE([H2_ENABLE_BUNDLED_UNICODE],[],[use the bundled unicode routines])
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_BUNDLED_UNICODE, test "${enable_bundled_unicode_is}" = "yes")
|
||||
|
||||
AC_ARG_ENABLE([xcmgrs], [AS_HELP_STRING([--enable-xcmgrs],[include more built-in cmgrs like cp949 and cp950 when enabled (default. yes)])],
|
||||
enable_xcmgrs_is=$enableval,enable_xcmgrs_is=yes)
|
||||
if test "${enable_xcmgrs_is}" = "yes"
|
||||
then
|
||||
AC_DEFINE([H2_ENABLE_XCMGRS],[],[include more built-in cmgrs like cp949 and cp950])
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_XCMGRS, test "${enable_xcmgrs_is}" = "yes" )
|
||||
|
||||
AC_ARG_ENABLE([syscall], [AS_HELP_STRING([--enable-syscall],[use the syscall() function to call system calls (default. no)])],
|
||||
enable_syscall_is=$enableval,enable_syscall_is=no)
|
||||
if test "${enable_syscall_is}" = "yes"
|
||||
then
|
||||
AC_DEFINE([H2_USE_SYSCALL],[],[use the syscall() function to invoke a system call])
|
||||
fi
|
||||
|
||||
AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug],[build the library in the debug mode (default. no)])],
|
||||
enable_debug_is=$enableval,enable_debug_is=no)
|
||||
if test "$enable_debug_is" = "yes"
|
||||
then
|
||||
[CFLAGS="$CFLAGS -g -D_DEBUG -UNDEBUG -DH2_BUILD_DEBUG -U_FORTIFY_SOURCE"]
|
||||
[CXXFLAGS="$CXXFLAGS -g -D_DEBUG -UNDEBUG -DH2_BUILD_DEBUG -U_FORTIFY_SOURCE"]
|
||||
AC_SUBST(BUILD_MODE, "debug")
|
||||
else
|
||||
[CFLAGS="$CFLAGS -DNDEBUG -U_DEBUG -DH2_BUILD_RELEASE -U_FORTIFY_SOURCE"]
|
||||
[CXXFLAGS="$CXXFLAGS -DNDEBUG -U_DEBUG -DH2_BUILD_RELEASE -U_FORTIFY_SOURCE"]
|
||||
AC_SUBST(BUILD_MODE, "release")
|
||||
fi
|
||||
|
||||
AC_ARG_ENABLE([cxx],
|
||||
[AS_HELP_STRING([--enable-cxx],[build the library for C++ if a C++ compiler is available (default. yes)])],
|
||||
enable_cxx_is=$enableval,
|
||||
enable_cxx_is=yes
|
||||
)
|
||||
|
||||
dnl disable c++ if no c++ compiler was found
|
||||
test "${HAVE_CXX}" = "yes" || enable_cxx_is="no"
|
||||
dnl disable c++ if the compiler is too old.
|
||||
test "${ax_cv_cxx_have_std_namespace}" = "yes" || enable_cxx_is="no"
|
||||
|
||||
AM_CONDITIONAL(ENABLE_CXX, test "${enable_cxx_is}" = "yes" )
|
||||
|
||||
AX_PTHREAD()
|
||||
AC_ARG_ENABLE([reentrant], [AS_HELP_STRING([--enable-reentrant],[add thread options (default. no)])],
|
||||
enable_reentrant_is=$enableval,enable_reentrant_is=no)
|
||||
if test "$enable_reentrant_is" = "yes"
|
||||
then
|
||||
[CFLAGS="$CFLAGS $PTHREAD_CFLAGS"]
|
||||
[CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS"]
|
||||
fi
|
||||
|
||||
AC_ARG_ENABLE([awk-intmax],
|
||||
[AS_HELP_STRING([--enable-awk-intmax],[use h2_intmax_t for integers in AWK (default. no)])],
|
||||
enable_awk_intmax_is=$enableval,
|
||||
enable_awk_intmax_is=no
|
||||
)
|
||||
if test "${enable_awk_intmax_is}" = "yes"
|
||||
then
|
||||
AC_DEFINE([H2_USE_AWK_INTMAX],[],[use h2_intmax_t for integers in AWK])
|
||||
fi
|
||||
|
||||
AC_ARG_ENABLE([awk-fltmax],
|
||||
[AS_HELP_STRING([--enable-awk-fltmax],[use h2_fltmax_t for floating-point numbers in AWK (default. no)])],
|
||||
enable_awk_fltmax_is=$enableval,
|
||||
enable_awk_fltmax_is=no
|
||||
)
|
||||
if test "${enable_awk_fltmax_is}" = "yes"
|
||||
then
|
||||
AC_DEFINE([H2_USE_AWK_FLTMAX],[],[use h2_fltmax_t for floating-point numbers in AWK])
|
||||
fi
|
||||
|
||||
AC_ARG_ENABLE([sed-tracer],
|
||||
[AS_HELP_STRING([--enable-sed-tracer],[enable h2_sed_setexectracer() (default. yes)])],
|
||||
enable_sed_tracer_is=$enableval,
|
||||
enable_sed_tracer_is=yes
|
||||
)
|
||||
if test "${enable_sed_tracer_is}" = "yes"
|
||||
then
|
||||
AC_DEFINE([H2_ENABLE_SED_TRACER],[],[enable h2_sed_setexectracer()])
|
||||
fi
|
||||
|
||||
AC_ARG_WITH([ada-objdir],
|
||||
[AS_HELP_STRING(--with-ada-objdir,specify ada object directory path)],
|
||||
[ada_objdir=$withval]
|
||||
@ -638,15 +214,6 @@ else
|
||||
AC_SUBST(ADA_OBJDIR, "objdir")
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING([for socklen_t in sys/socket.h])
|
||||
AC_TRY_COMPILE([#define _POSIX_PII_SOCKET
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>], [socklen_t x = 5;],
|
||||
[AC_DEFINE(HAVE_SOCKLEN_T, 1, [Define it socklen_t typedef is in sys/socket.h.])
|
||||
AC_MSG_RESULT(yes)],
|
||||
[AC_MSG_RESULT(no)]
|
||||
)
|
||||
|
||||
if test "${enable_shared}" = "no" -a "${enable_static}" = "yes"
|
||||
then
|
||||
AC_DEFINE([H2_ENABLE_STATIC_MODULE],[],[link modules statically into the main library])
|
||||
@ -672,7 +239,6 @@ AC_SUBST(H2_PROJECT_URL, "${PACKAGE_URL}")
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
lib/Makefile
|
||||
lib/cmn/Makefile
|
||||
lib/lib.gpr
|
||||
lib/libh2.gpr
|
||||
bin/Makefile
|
||||
@ -689,13 +255,6 @@ echo " Build mode : ${BUILD_MODE}"
|
||||
echo " Source directory: ${srcdir}"
|
||||
echo " Installation directory: ${prefix}"
|
||||
echo " C compiler: ${CC} ${CFLAGS}"
|
||||
echo " C++ compiler: ${CXX} ${CXXFLAGS}"
|
||||
echo " C++ support: ${enable_cxx_is}"
|
||||
echo " Wide character: ${enable_wchar_is}"
|
||||
echo " Math library: ${LIBM}"
|
||||
echo " Pthread library: ${PTHREAD_LIBS}"
|
||||
echo " Socket library: ${SOCKET_LIBS}"
|
||||
echo " Sendfile library: ${SENDFILE_LIBS}"
|
||||
echo " SSL library: ${SSL_LIBS}"
|
||||
echo "-------------------------------------------------------------------------"
|
||||
]
|
||||
|
Reference in New Issue
Block a user