m4trace:/usr/share/aclocal-1.10/ccstdc.m4:17: -1- AU_DEFUN([AM_PROG_CC_STDC], [AC_PROG_CC AC_DIAGNOSE([obsolete], [$0: your code should no longer depend upon `am_cv_prog_cc_stdc', but upon `ac_cv_prog_cc_stdc'. Remove this warning and the assignment when you adjust the code. You can also remove the above call to AC_PROG_CC if you already called it elsewhere.]) am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc ]) m4trace:/usr/share/aclocal-1.10/ccstdc.m4:17: -1- AC_DEFUN([AM_PROG_CC_STDC], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_CC_STDC' is obsolete. You should run autoupdate.])dnl AC_PROG_CC AC_DIAGNOSE([obsolete], [$0: your code should no longer depend upon `am_cv_prog_cc_stdc', but upon `ac_cv_prog_cc_stdc'. Remove this warning and the assignment when you adjust the code. You can also remove the above call to AC_PROG_CC if you already called it elsewhere.]) am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc ]) m4trace:/usr/share/aclocal-1.10/ccstdc.m4:26: -1- AU_DEFUN([fp_PROG_CC_STDC]) m4trace:/usr/share/aclocal-1.10/ccstdc.m4:26: -1- AC_DEFUN([fp_PROG_CC_STDC], [AC_DIAGNOSE([obsolete], [The macro `fp_PROG_CC_STDC' is obsolete. You should run autoupdate.])dnl ]) m4trace:acinclude.m4:7: -1- AC_DEFUN([unet_NONBLOCKING], [dnl Do we have posix, bsd or sysv non-blocking stuff ? AC_CACHE_CHECK([for posix non-blocking], unet_cv_sys_nonblocking_posix, [AC_TRY_RUN([#include #include #include #include #include #include $ac_cv_type_signal alarmed() { exit(1); } int main(void) { char b[12]; struct sockaddr x; size_t l = sizeof(x); int f = socket(AF_INET, SOCK_DGRAM, 0); if (f >= 0 && !(fcntl(f, F_SETFL, O_NONBLOCK))) { signal(SIGALRM, alarmed); alarm(2); recvfrom(f, b, 12, 0, &x, &l); alarm(0); exit(0); } exit(1); }], unet_cv_sys_nonblocking_posix=yes, unet_cv_sys_nonblocking_posix=no)]) if test $unet_cv_sys_nonblocking_posix = yes; then AC_DEFINE([NBLOCK_POSIX],,[Define if you have POSIX non-blocking sockets.]) else AC_CACHE_CHECK([for bsd non-blocking], unet_cv_sys_nonblocking_bsd, [AC_TRY_RUN([#include #include #include #include #include #include $ac_cv_type_signal alarmed() { exit(1); } int main(void) { char b[12]; struct sockaddr x; size_t l = sizeof(x); int f = socket(AF_INET, SOCK_DGRAM, 0); if (f >= 0 && !(fcntl(f, F_SETFL, O_NDELAY))) { signal(SIGALRM, alarmed); alarm(2); recvfrom(f, b, 12, 0, &x, &l); alarm(0); exit(0); } exit(1); }], unet_cv_sys_nonblocking_bsd=yes, unet_cv_sys_nonblocking_bsd=no)]) if test $unet_cv_sys_nonblocking_bsd = yes; then AC_DEFINE([NBLOCK_BSD],,[Define if you have BSD non-blocking sockets.]) else AC_DEFINE([NBLOCK_SYSV],,[Define if you have SysV non-blocking sockets.]) fi fi]) m4trace:acinclude.m4:74: -1- AC_DEFUN([unet_SIGNALS], [dnl Do we have posix signals, reliable bsd signals or unreliable sysv signals ? AC_CACHE_CHECK([for posix signals], unet_cv_sys_signal_posix, [AC_TRY_COMPILE([#include ], [sigaction(SIGTERM, (struct sigaction *)0L, (struct sigaction *)0L)], unet_cv_sys_signal_posix=yes, unet_cv_sys_signal_posix=no)]) if test $unet_cv_sys_signal_posix = yes; then AC_DEFINE([POSIX_SIGNALS],,[Define if you have POSIX signals.]) else AC_CACHE_CHECK([for bsd reliable signals], unet_cv_sys_signal_bsd, [AC_TRY_RUN([#include int calls = 0; $ac_cv_type_signal handler() { if (calls) return; calls++; kill(getpid(), SIGTERM); sleep(1); } int main(void) { signal(SIGTERM, handler); kill(getpid(), SIGTERM); exit (0); }], unet_cv_sys_signal_bsd=yes, unet_cv_sys_signal_bsd=no)]) if test $unet_cv_sys_signal_bsd = yes; then AC_DEFINE([BSD_RELIABLE_SIGNALS],,[Define if you have (reliable) BSD signals.]) else AC_DEFINE([SYSV_UNRELIABLE_SIGNALS],,[Define if you have (unreliable) SysV signals.]) fi fi]) m4trace:acinclude.m4:111: -1- AC_DEFUN([unet_CHECK_TYPE_SIZES], [dnl Check type sizes AC_CHECK_SIZEOF(short) AC_CHECK_SIZEOF(int) AC_CHECK_SIZEOF(long) AC_CHECK_SIZEOF(void *) AC_CHECK_SIZEOF(int64_t) AC_CHECK_SIZEOF(long long) if test "$ac_cv_sizeof_int" = 2 ; then AC_CHECK_TYPE(int16_t, int) AC_CHECK_TYPE(uint16_t, unsigned int) elif test "$ac_cv_sizeof_short" = 2 ; then AC_CHECK_TYPE(int16_t, short) AC_CHECK_TYPE(uint16_t, unsigned short) else AC_MSG_ERROR([Cannot find a type with size of 16 bits]) fi if test "$ac_cv_sizeof_int" = 4 ; then AC_CHECK_TYPE(int32_t, int) AC_CHECK_TYPE(uint32_t, unsigned int) elif test "$ac_cv_sizeof_short" = 4 ; then AC_CHECK_TYPE(int32_t, short) AC_CHECK_TYPE(uint32_t, unsigned short) elif test "$ac_cv_sizeof_long" = 4 ; then AC_CHECK_TYPE(int32_t, long) AC_CHECK_TYPE(uint32_t, unsigned long) else AC_MSG_ERROR([Cannot find a type with size of 32 bits]) fi if test "$ac_cv_sizeof_int64_t" = 8 ; then AC_CHECK_TYPE(int64_t) AC_CHECK_TYPE(uint64_t) elif test "$ac_cv_sizeof_long_long" = 8 ; then AC_CHECK_TYPE(int64_t, long long) AC_CHECK_TYPE(uint64_t, unsigned long long) else AC_MSG_ERROR([Cannot find a type with size of 64 bits]) fi]) m4trace:acinclude.m4:182: -1- AC_DEFUN([AC_LIBRARY_NET], [ # Most operating systems have gethostbyname() in the default searched # libraries (i.e. libc): AC_CHECK_FUNC(gethostbyname, , # Some OSes (eg. Solaris) place it in libnsl: AC_CHECK_LIB(nsl, gethostbyname, , # Some strange OSes (SINIX) have it in libsocket: AC_CHECK_LIB(socket, gethostbyname, , # Unfortunately libsocket sometimes depends on libnsl. # AC_CHECK_LIB's API is essentially broken so the following # ugliness is necessary: AC_CHECK_LIB(socket, gethostbyname, LIBS="-lsocket -lnsl $LIBS", AC_CHECK_LIB(resolv, gethostbyname), -lnsl) ) ) ) AC_CHECK_FUNC(socket, , AC_CHECK_LIB(socket, socket, , AC_CHECK_LIB(socket, socket, LIBS="-lsocket -lnsl $LIBS", , -lnsl))) ]) m4trace:configure.in:26: -1- m4_pattern_forbid([^_?A[CHUM]_]) m4trace:configure.in:26: -1- m4_pattern_forbid([_AC_]) m4trace:configure.in:26: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) m4trace:configure.in:26: -1- m4_pattern_allow([^AS_FLAGS$]) m4trace:configure.in:26: -1- m4_pattern_forbid([^_?m4_]) m4trace:configure.in:26: -1- m4_pattern_forbid([^dnl$]) m4trace:configure.in:26: -1- m4_pattern_forbid([^_?AS_]) m4trace:configure.in:26: -1- m4_pattern_allow([^SHELL$]) m4trace:configure.in:26: -1- m4_pattern_allow([^PATH_SEPARATOR$]) m4trace:configure.in:26: -1- m4_pattern_allow([^PACKAGE_NAME$]) m4trace:configure.in:26: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) m4trace:configure.in:26: -1- m4_pattern_allow([^PACKAGE_VERSION$]) m4trace:configure.in:26: -1- m4_pattern_allow([^PACKAGE_STRING$]) m4trace:configure.in:26: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) m4trace:configure.in:26: -1- m4_pattern_allow([^exec_prefix$]) m4trace:configure.in:26: -1- m4_pattern_allow([^prefix$]) m4trace:configure.in:26: -1- m4_pattern_allow([^program_transform_name$]) m4trace:configure.in:26: -1- m4_pattern_allow([^bindir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^sbindir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^libexecdir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^datarootdir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^datadir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^sysconfdir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^sharedstatedir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^localstatedir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^includedir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^oldincludedir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^docdir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^infodir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^htmldir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^dvidir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^pdfdir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^psdir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^libdir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^localedir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^mandir$]) m4trace:configure.in:26: -1- m4_pattern_allow([^PACKAGE_NAME$]) m4trace:configure.in:26: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) m4trace:configure.in:26: -1- m4_pattern_allow([^PACKAGE_VERSION$]) m4trace:configure.in:26: -1- m4_pattern_allow([^PACKAGE_STRING$]) m4trace:configure.in:26: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) m4trace:configure.in:26: -1- m4_pattern_allow([^DEFS$]) m4trace:configure.in:26: -1- m4_pattern_allow([^ECHO_C$]) m4trace:configure.in:26: -1- m4_pattern_allow([^ECHO_N$]) m4trace:configure.in:26: -1- m4_pattern_allow([^ECHO_T$]) m4trace:configure.in:26: -1- m4_pattern_allow([^LIBS$]) m4trace:configure.in:26: -1- m4_pattern_allow([^build_alias$]) m4trace:configure.in:26: -1- m4_pattern_allow([^host_alias$]) m4trace:configure.in:26: -1- m4_pattern_allow([^target_alias$]) m4trace:configure.in:48: -1- m4_pattern_allow([^build$]) m4trace:configure.in:48: -1- m4_pattern_allow([^build_cpu$]) m4trace:configure.in:48: -1- m4_pattern_allow([^build_vendor$]) m4trace:configure.in:48: -1- m4_pattern_allow([^build_os$]) m4trace:configure.in:48: -1- m4_pattern_allow([^host$]) m4trace:configure.in:48: -1- m4_pattern_allow([^host_cpu$]) m4trace:configure.in:48: -1- m4_pattern_allow([^host_vendor$]) m4trace:configure.in:48: -1- m4_pattern_allow([^host_os$]) m4trace:configure.in:51: -1- m4_pattern_allow([^CC$]) m4trace:configure.in:51: -1- m4_pattern_allow([^CFLAGS$]) m4trace:configure.in:51: -1- m4_pattern_allow([^LDFLAGS$]) m4trace:configure.in:51: -1- m4_pattern_allow([^LIBS$]) m4trace:configure.in:51: -1- m4_pattern_allow([^CPPFLAGS$]) m4trace:configure.in:51: -1- m4_pattern_allow([^CC$]) m4trace:configure.in:51: -1- m4_pattern_allow([^CC$]) m4trace:configure.in:51: -1- m4_pattern_allow([^CC$]) m4trace:configure.in:51: -1- m4_pattern_allow([^CC$]) m4trace:configure.in:51: -1- m4_pattern_allow([^ac_ct_CC$]) m4trace:configure.in:51: -1- m4_pattern_allow([^EXEEXT$]) m4trace:configure.in:51: -1- m4_pattern_allow([^OBJEXT$]) m4trace:configure.in:54: -1- AM_PROG_CC_STDC m4trace:configure.in:54: -1- _m4_warn([obsolete], [The macro `AM_PROG_CC_STDC' is obsolete. You should run autoupdate.], [/usr/share/aclocal-1.10/ccstdc.m4:17: AM_PROG_CC_STDC is expanded from... configure.in:54: the top level]) m4trace:configure.in:54: -1- m4_pattern_allow([^CC$]) m4trace:configure.in:54: -1- m4_pattern_allow([^CFLAGS$]) m4trace:configure.in:54: -1- m4_pattern_allow([^LDFLAGS$]) m4trace:configure.in:54: -1- m4_pattern_allow([^LIBS$]) m4trace:configure.in:54: -1- m4_pattern_allow([^CPPFLAGS$]) m4trace:configure.in:54: -1- m4_pattern_allow([^CC$]) m4trace:configure.in:54: -1- m4_pattern_allow([^CC$]) m4trace:configure.in:54: -1- m4_pattern_allow([^CC$]) m4trace:configure.in:54: -1- m4_pattern_allow([^CC$]) m4trace:configure.in:54: -1- m4_pattern_allow([^ac_ct_CC$]) m4trace:configure.in:54: -1- _m4_warn([obsolete], [AM_PROG_CC_STDC: your code should no longer depend upon `am_cv_prog_cc_stdc', but upon `ac_cv_prog_cc_stdc'. Remove this warning and the assignment when you adjust the code. You can also remove the above call to AC_PROG_CC if you already called it elsewhere.], [/usr/share/aclocal-1.10/ccstdc.m4:17: AM_PROG_CC_STDC is expanded from... configure.in:54: the top level]) m4trace:configure.in:63: -1- AC_LIBRARY_NET m4trace:configure.in:63: -5- m4_pattern_allow([^HAVE_LIBRESOLV$]) m4trace:configure.in:63: -3- m4_pattern_allow([^HAVE_LIBSOCKET$]) m4trace:configure.in:63: -2- m4_pattern_allow([^HAVE_LIBNSL$]) m4trace:configure.in:63: -2- m4_pattern_allow([^HAVE_LIBSOCKET$]) m4trace:configure.in:66: -1- m4_pattern_allow([^CPP$]) m4trace:configure.in:66: -1- m4_pattern_allow([^CPPFLAGS$]) m4trace:configure.in:66: -1- m4_pattern_allow([^CPP$]) m4trace:configure.in:66: -1- m4_pattern_allow([^GREP$]) m4trace:configure.in:66: -1- m4_pattern_allow([^GREP$]) m4trace:configure.in:66: -1- m4_pattern_allow([^EGREP$]) m4trace:configure.in:66: -1- m4_pattern_allow([^EGREP$]) m4trace:configure.in:66: -1- m4_pattern_allow([^STDC_HEADERS$]) m4trace:configure.in:71: -1- m4_pattern_allow([^WORDS_BIGENDIAN$]) m4trace:configure.in:72: -1- m4_pattern_allow([^size_t$]) m4trace:configure.in:73: -1- m4_pattern_allow([^TIME_WITH_SYS_TIME$]) m4trace:configure.in:74: -1- m4_pattern_allow([^TM_IN_SYS_TIME$]) m4trace:configure.in:75: -1- m4_pattern_allow([^uid_t$]) m4trace:configure.in:75: -1- m4_pattern_allow([^gid_t$]) m4trace:configure.in:76: -1- unet_CHECK_TYPE_SIZES m4trace:configure.in:76: -1- m4_pattern_allow([^SIZEOF_SHORT$]) m4trace:configure.in:76: -1- m4_pattern_allow([^SIZEOF_INT$]) m4trace:configure.in:76: -1- m4_pattern_allow([^SIZEOF_LONG$]) m4trace:configure.in:76: -1- m4_pattern_allow([^SIZEOF_VOID_P$]) m4trace:configure.in:76: -1- m4_pattern_allow([^SIZEOF_INT64_T$]) m4trace:configure.in:76: -1- m4_pattern_allow([^SIZEOF_LONG_LONG$]) m4trace:configure.in:76: -1- m4_pattern_allow([^int16_t$]) m4trace:configure.in:76: -1- m4_pattern_allow([^uint16_t$]) m4trace:configure.in:76: -1- m4_pattern_allow([^int16_t$]) m4trace:configure.in:76: -1- m4_pattern_allow([^uint16_t$]) m4trace:configure.in:76: -1- m4_pattern_allow([^int32_t$]) m4trace:configure.in:76: -1- m4_pattern_allow([^uint32_t$]) m4trace:configure.in:76: -1- m4_pattern_allow([^int32_t$]) m4trace:configure.in:76: -1- m4_pattern_allow([^uint32_t$]) m4trace:configure.in:76: -1- m4_pattern_allow([^int32_t$]) m4trace:configure.in:76: -1- m4_pattern_allow([^uint32_t$]) m4trace:configure.in:76: -1- m4_pattern_allow([^int64_t$]) m4trace:configure.in:76: -1- m4_pattern_allow([^uint64_t$]) m4trace:configure.in:83: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. You should run autoupdate.], [../../lib/autoconf/general.m4:2367: AC_TRY_COMPILE is expanded from... ../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from... ../../lib/autoconf/general.m4:1898: AC_CACHE_VAL is expanded from... ../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from... ../../lib/autoconf/types.m4:232: AC_CHECK_TYPE is expanded from... configure.in:83: the top level]) m4trace:configure.in:83: -1- m4_pattern_allow([^socklen_t$]) m4trace:configure.in:114: -1- m4_pattern_allow([^AWK$]) m4trace:configure.in:115: -1- m4_pattern_allow([^SET_MAKE$]) m4trace:configure.in:116: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) m4trace:configure.in:116: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) m4trace:configure.in:116: -1- m4_pattern_allow([^INSTALL_DATA$]) m4trace:configure.in:117: -1- m4_pattern_allow([^LN_S$]) m4trace:configure.in:118: -1- m4_pattern_allow([^RMPROG$]) m4trace:configure.in:119: -1- m4_pattern_allow([^SHPROG$]) m4trace:configure.in:122: -1- m4_pattern_allow([^LEX$]) m4trace:configure.in:122: -1- m4_pattern_allow([^LEX_OUTPUT_ROOT$]) m4trace:configure.in:122: -1- m4_pattern_allow([^LEXLIB$]) m4trace:configure.in:122: -1- m4_pattern_allow([^YYTEXT_POINTER$]) m4trace:configure.in:133: -1- m4_pattern_allow([^YACC$]) m4trace:configure.in:133: -1- m4_pattern_allow([^YACC$]) m4trace:configure.in:133: -1- m4_pattern_allow([^YFLAGS$]) m4trace:configure.in:145: -1- unet_NONBLOCKING m4trace:configure.in:145: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete. You should run autoupdate.], [../../lib/autoconf/general.m4:2478: AC_TRY_RUN is expanded from... ../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from... ../../lib/autoconf/general.m4:1898: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1911: AC_CACHE_CHECK is expanded from... acinclude.m4:7: unet_NONBLOCKING is expanded from... configure.in:145: the top level]) m4trace:configure.in:145: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2462: AC_RUN_IFELSE is expanded from... ../../lib/autoconf/general.m4:2478: AC_TRY_RUN is expanded from... ../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from... ../../lib/autoconf/general.m4:1898: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1911: AC_CACHE_CHECK is expanded from... acinclude.m4:7: unet_NONBLOCKING is expanded from... configure.in:145: the top level]) m4trace:configure.in:145: -1- m4_pattern_allow([^NBLOCK_POSIX$]) m4trace:configure.in:145: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete. You should run autoupdate.], [../../lib/autoconf/general.m4:2478: AC_TRY_RUN is expanded from... ../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from... ../../lib/autoconf/general.m4:1898: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1911: AC_CACHE_CHECK is expanded from... acinclude.m4:7: unet_NONBLOCKING is expanded from... configure.in:145: the top level]) m4trace:configure.in:145: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2462: AC_RUN_IFELSE is expanded from... ../../lib/autoconf/general.m4:2478: AC_TRY_RUN is expanded from... ../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from... ../../lib/autoconf/general.m4:1898: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1911: AC_CACHE_CHECK is expanded from... acinclude.m4:7: unet_NONBLOCKING is expanded from... configure.in:145: the top level]) m4trace:configure.in:145: -1- m4_pattern_allow([^NBLOCK_BSD$]) m4trace:configure.in:145: -1- m4_pattern_allow([^NBLOCK_SYSV$]) m4trace:configure.in:146: -1- unet_SIGNALS m4trace:configure.in:146: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. You should run autoupdate.], [../../lib/autoconf/general.m4:2367: AC_TRY_COMPILE is expanded from... ../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from... ../../lib/autoconf/general.m4:1898: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1911: AC_CACHE_CHECK is expanded from... acinclude.m4:74: unet_SIGNALS is expanded from... configure.in:146: the top level]) m4trace:configure.in:146: -1- m4_pattern_allow([^POSIX_SIGNALS$]) m4trace:configure.in:146: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete. You should run autoupdate.], [../../lib/autoconf/general.m4:2478: AC_TRY_RUN is expanded from... ../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from... ../../lib/autoconf/general.m4:1898: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1911: AC_CACHE_CHECK is expanded from... acinclude.m4:74: unet_SIGNALS is expanded from... configure.in:146: the top level]) m4trace:configure.in:146: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2462: AC_RUN_IFELSE is expanded from... ../../lib/autoconf/general.m4:2478: AC_TRY_RUN is expanded from... ../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from... ../../lib/autoconf/general.m4:1898: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1911: AC_CACHE_CHECK is expanded from... acinclude.m4:74: unet_SIGNALS is expanded from... configure.in:146: the top level]) m4trace:configure.in:146: -1- m4_pattern_allow([^BSD_RELIABLE_SIGNALS$]) m4trace:configure.in:146: -1- m4_pattern_allow([^SYSV_UNRELIABLE_SIGNALS$]) m4trace:configure.in:163: -1- m4_pattern_allow([^IRCU_SOLARIS$]) m4trace:configure.in:192: -1- m4_pattern_allow([^_DARWIN_C_SOURCE$]) m4trace:configure.in:220: -1- m4_pattern_allow([^USE_POLL$]) m4trace:configure.in:225: -1- m4_pattern_allow([^ENGINE_C$]) m4trace:configure.in:237: -1- m4_pattern_allow([^DEBUGMODE$]) m4trace:configure.in:264: -1- m4_pattern_allow([^IPV6$]) m4trace:configure.in:277: -1- m4_pattern_allow([^NDEBUG$]) m4trace:configure.in:330: -1- m4_pattern_allow([^FORCEINLINE$]) m4trace:configure.in:348: -1- m4_pattern_allow([^USE_DEVPOLL$]) m4trace:configure.in:367: -1- m4_pattern_allow([^USE_KQUEUE$]) m4trace:configure.in:389: -1- m4_pattern_allow([^EPOLL_NEED_BODY$]) m4trace:configure.in:393: -1- m4_pattern_allow([^USE_EPOLL$]) m4trace:configure.in:404: -1- m4_pattern_allow([^HAVE_VA_COPY$]) m4trace:configure.in:413: -1- m4_pattern_allow([^HAVE___VA_COPY$]) m4trace:configure.in:438: -1- m4_pattern_allow([^INSTALL_RULE$]) m4trace:configure.in:439: -1- m4_pattern_allow([^SYMLINK$]) m4trace:configure.in:456: -1- m4_pattern_allow([^IRCDMODE$]) m4trace:configure.in:476: -1- m4_pattern_allow([^IRCDOWN$]) m4trace:configure.in:496: -1- m4_pattern_allow([^IRCDGRP$]) m4trace:configure.in:522: -1- m4_pattern_allow([^DOMAINNAME$]) m4trace:configure.in:592: -1- m4_pattern_allow([^SPATH$]) m4trace:configure.in:621: -1- m4_pattern_allow([^DPATH$]) m4trace:configure.in:624: -1- m4_pattern_allow([^DPATH$]) m4trace:configure.in:655: -1- m4_pattern_allow([^CPATH$]) m4trace:configure.in:688: -1- m4_pattern_allow([^LPATH$]) m4trace:configure.in:714: -1- m4_pattern_allow([^MAXCONNECTIONS$]) m4trace:configure.in:730: -1- m4_pattern_allow([^OLD_OGN_IRCU_COMPAT$]) m4trace:configure.in:743: -1- m4_pattern_allow([^WITH_UNSTABLE_FEAT$]) m4trace:configure.in:786: -1- m4_pattern_allow([^HAVE_GNUTLS$]) m4trace:configure.in:791: -1- m4_pattern_allow([^HAVE_OPENSSL$]) m4trace:configure.in:795: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments. You should run autoupdate.], []) m4trace:configure.in:795: -1- m4_pattern_allow([^LIB@&t@OBJS$]) m4trace:configure.in:795: -1- m4_pattern_allow([^LTLIBOBJS$])