Package: ircd-ircu Version: 2.10.11.04.dfsg1-0.1 Severity: normal Tags: patch
Hello, find attached the diff for my NMU of ircd-ircu, fixing the long-open FTBFS on amd64. Best regards Frederik Schueler -- ENOSIG
diff -u ircd-ircu-2.10.11.04.dfsg1/debian/changelog ircd-ircu-2.10.11.04.dfsg1/debian/changelog --- ircd-ircu-2.10.11.04.dfsg1/debian/changelog +++ ircd-ircu-2.10.11.04.dfsg1/debian/changelog @@ -1,3 +1,11 @@ +ircd-ircu (2.10.11.04.dfsg1-0.2) unstable; urgency=low + + * NMU. + * Fix configure.in to make it build on amd64 (Closes: #254165) + * Regenerate configure script. + + -- Frederik Schüler <[EMAIL PROTECTED]> Fri, 2 Jun 2006 21:46:55 +0000 + ircd-ircu (2.10.11.04.dfsg1-0.1) unstable; urgency=low * Non-maintainer upload. only in patch2: unchanged: --- ircd-ircu-2.10.11.04.dfsg1.orig/configure.in +++ ircd-ircu-2.10.11.04.dfsg1/configure.in @@ -108,7 +108,7 @@ dnl Look for res_mkquery. Done after AC_LIBRARY_NET in case res_mkquery dnl is in one of those libraries somewhere. -AC_SEARCH_LIBS(res_mkquery, resolv, , +AC_SEARCH_LIBS(__res_mkquery, resolv, , [AC_MSG_ERROR([Unable to find library containing res_mkquery()])]) dnl Checks for header files. only in patch2: unchanged: --- ircd-ircu-2.10.11.04.dfsg1.orig/configure +++ ircd-ircu-2.10.11.04.dfsg1/configure @@ -1417,34 +1417,34 @@ -echo $ac_n "checking for library containing res_mkquery""... $ac_c" 1>&6 -echo "configure:1422: checking for library containing res_mkquery" >&5 -if eval "test \"`echo '$''{'ac_cv_search_res_mkquery'+set}'`\" = set"; then +echo $ac_n "checking for library containing __res_mkquery""... $ac_c" 1>&6 +echo "configure:1422: checking for library containing __res_mkquery" >&5 +if eval "test \"`echo '$''{'ac_cv_search___res_mkquery'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_func_search_save_LIBS="$LIBS" -ac_cv_search_res_mkquery="no" +ac_cv_search___res_mkquery="no" cat > conftest.$ac_ext <<EOF #line 1429 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ -char res_mkquery(); +char __res_mkquery(); int main() { -res_mkquery() +__res_mkquery() ; return 0; } EOF if { (eval echo configure:1440: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* - ac_cv_search_res_mkquery="none required" + ac_cv_search___res_mkquery="none required" else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -f conftest* -test "$ac_cv_search_res_mkquery" = "no" && for i in resolv; do +test "$ac_cv_search___res_mkquery" = "no" && for i in resolv; do LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF #line 1451 "configure" @@ -1452,15 +1452,15 @@ /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ -char res_mkquery(); +char __res_mkquery(); int main() { -res_mkquery() +__res_mkquery() ; return 0; } EOF if { (eval echo configure:1462: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* - ac_cv_search_res_mkquery="-l$i" + ac_cv_search___res_mkquery="-l$i" break else echo "configure: failed program was:" >&5 @@ -1471,9 +1471,9 @@ LIBS="$ac_func_search_save_LIBS" fi -echo "$ac_t""$ac_cv_search_res_mkquery" 1>&6 -if test "$ac_cv_search_res_mkquery" != "no"; then - test "$ac_cv_search_res_mkquery" = "none required" || LIBS="$ac_cv_search_res_mkquery $LIBS" +echo "$ac_t""$ac_cv_search___res_mkquery" 1>&6 +if test "$ac_cv_search___res_mkquery" != "no"; then + test "$ac_cv_search___res_mkquery" = "none required" || LIBS="$ac_cv_search___res_mkquery $LIBS" else : { echo "configure: error: Unable to find library containing res_mkquery()" 1>&2; exit 1; } @@ -1942,15 +1942,16 @@ #line 1943 "configure" #include "confdefs.h" #include <stdio.h> -int main() +#include <sys/types.h> +main() { FILE *f=fopen("conftestval", "w"); - if (!f) return(1); + if (!f) exit(1); fprintf(f, "%d\n", sizeof(short)); - return(0); + exit(0); } EOF -if { (eval echo configure:1954: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1955: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sizeof_short=`cat conftestval` else @@ -1970,7 +1971,7 @@ echo $ac_n "checking size of int""... $ac_c" 1>&6 -echo "configure:1974: checking size of int" >&5 +echo "configure:1975: checking size of int" >&5 if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1978,18 +1979,19 @@ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext <<EOF -#line 1982 "configure" +#line 1983 "configure" #include "confdefs.h" #include <stdio.h> -int main() +#include <sys/types.h> +main() { FILE *f=fopen("conftestval", "w"); - if (!f) return(1); + if (!f) exit(1); fprintf(f, "%d\n", sizeof(int)); - return(0); + exit(0); } EOF -if { (eval echo configure:1993: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1995: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sizeof_int=`cat conftestval` else @@ -2009,7 +2011,7 @@ echo $ac_n "checking size of long""... $ac_c" 1>&6 -echo "configure:2013: checking size of long" >&5 +echo "configure:2015: checking size of long" >&5 if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2017,18 +2019,19 @@ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext <<EOF -#line 2021 "configure" +#line 2023 "configure" #include "confdefs.h" #include <stdio.h> -int main() +#include <sys/types.h> +main() { FILE *f=fopen("conftestval", "w"); - if (!f) return(1); + if (!f) exit(1); fprintf(f, "%d\n", sizeof(long)); - return(0); + exit(0); } EOF -if { (eval echo configure:2032: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2035: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sizeof_long=`cat conftestval` else @@ -2048,7 +2051,7 @@ echo $ac_n "checking size of void *""... $ac_c" 1>&6 -echo "configure:2052: checking size of void *" >&5 +echo "configure:2055: checking size of void *" >&5 if eval "test \"`echo '$''{'ac_cv_sizeof_void_p'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2056,18 +2059,19 @@ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext <<EOF -#line 2060 "configure" +#line 2063 "configure" #include "confdefs.h" #include <stdio.h> -int main() +#include <sys/types.h> +main() { FILE *f=fopen("conftestval", "w"); - if (!f) return(1); + if (!f) exit(1); fprintf(f, "%d\n", sizeof(void *)); - return(0); + exit(0); } EOF -if { (eval echo configure:2071: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2075: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sizeof_void_p=`cat conftestval` else @@ -2088,12 +2092,12 @@ if test "$ac_cv_sizeof_int" = 2 ; then echo $ac_n "checking for int16_t""... $ac_c" 1>&6 -echo "configure:2092: checking for int16_t" >&5 +echo "configure:2096: checking for int16_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_int16_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2097 "configure" +#line 2101 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2121,12 +2125,12 @@ fi echo $ac_n "checking for u_int16_t""... $ac_c" 1>&6 -echo "configure:2125: checking for u_int16_t" >&5 +echo "configure:2129: checking for u_int16_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_u_int16_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2130 "configure" +#line 2134 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2155,12 +2159,12 @@ elif test "$ac_cv_sizeof_short" = 2 ; then echo $ac_n "checking for int16_t""... $ac_c" 1>&6 -echo "configure:2159: checking for int16_t" >&5 +echo "configure:2163: checking for int16_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_int16_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2164 "configure" +#line 2168 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2188,12 +2192,12 @@ fi echo $ac_n "checking for u_int16_t""... $ac_c" 1>&6 -echo "configure:2192: checking for u_int16_t" >&5 +echo "configure:2196: checking for u_int16_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_u_int16_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2197 "configure" +#line 2201 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2225,12 +2229,12 @@ fi if test "$ac_cv_sizeof_int" = 4 ; then echo $ac_n "checking for int32_t""... $ac_c" 1>&6 -echo "configure:2229: checking for int32_t" >&5 +echo "configure:2233: checking for int32_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_int32_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2234 "configure" +#line 2238 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2258,12 +2262,12 @@ fi echo $ac_n "checking for u_int32_t""... $ac_c" 1>&6 -echo "configure:2262: checking for u_int32_t" >&5 +echo "configure:2266: checking for u_int32_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_u_int32_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2267 "configure" +#line 2271 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2292,12 +2296,12 @@ elif test "$ac_cv_sizeof_short" = 4 ; then echo $ac_n "checking for int32_t""... $ac_c" 1>&6 -echo "configure:2296: checking for int32_t" >&5 +echo "configure:2300: checking for int32_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_int32_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2301 "configure" +#line 2305 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2325,12 +2329,12 @@ fi echo $ac_n "checking for u_int32_t""... $ac_c" 1>&6 -echo "configure:2329: checking for u_int32_t" >&5 +echo "configure:2333: checking for u_int32_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_u_int32_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2334 "configure" +#line 2338 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2359,12 +2363,12 @@ elif test "$ac_cv_sizeof_long" = 4 ; then echo $ac_n "checking for int32_t""... $ac_c" 1>&6 -echo "configure:2363: checking for int32_t" >&5 +echo "configure:2367: checking for int32_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_int32_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2368 "configure" +#line 2372 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2392,12 +2396,12 @@ fi echo $ac_n "checking for u_int32_t""... $ac_c" 1>&6 -echo "configure:2396: checking for u_int32_t" >&5 +echo "configure:2400: checking for u_int32_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_u_int32_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2401 "configure" +#line 2405 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2431,12 +2435,12 @@ for ac_func in kqueue setrlimit getrusage times do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2435: checking for $ac_func" >&5 +echo "configure:2439: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2440 "configure" +#line 2444 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -2459,7 +2463,7 @@ ; return 0; } EOF -if { (eval echo configure:2463: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2467: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2485,7 +2489,7 @@ echo $ac_n "checking for restartable system calls""... $ac_c" 1>&6 -echo "configure:2489: checking for restartable system calls" >&5 +echo "configure:2493: checking for restartable system calls" >&5 if eval "test \"`echo '$''{'ac_cv_sys_restartable_syscalls'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2493,7 +2497,7 @@ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext <<EOF -#line 2497 "configure" +#line 2501 "configure" #include "confdefs.h" /* Exit 0 (true) if wait returns something other than -1, i.e. the pid of the child, which means that wait was restarted @@ -2511,7 +2515,7 @@ } EOF -if { (eval echo configure:2515: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2519: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sys_restartable_syscalls=yes else @@ -2535,15 +2539,15 @@ echo $ac_n "checking for donuts""... $ac_c" 1>&6 -echo "configure:2539: checking for donuts" >&5 +echo "configure:2543: checking for donuts" >&5 echo "$ac_t""yes" 1>&6 -for ac_prog in gawk mawk nawk awk +for ac_prog in mawk gawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2547: checking for $ac_word" >&5 +echo "configure:2551: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AWK'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2573,7 +2577,7 @@ done echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 -echo "configure:2577: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "configure:2581: checking whether ${MAKE-make} sets \${MAKE}" >&5 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2611,7 +2615,7 @@ # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 -echo "configure:2615: checking for a BSD compatible install" >&5 +echo "configure:2619: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2664,7 +2668,7 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 -echo "configure:2668: checking whether ln -s works" >&5 +echo "configure:2672: checking whether ln -s works" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2689,7 +2693,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2693: checking for $ac_word" >&5 +echo "configure:2697: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_RMPROG'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2730,7 +2734,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2734: checking for $ac_word" >&5 +echo "configure:2738: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_SHPROG'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2768,7 +2772,7 @@ echo $ac_n "checking for posix non-blocking""... $ac_c" 1>&6 -echo "configure:2772: checking for posix non-blocking" >&5 +echo "configure:2776: checking for posix non-blocking" >&5 if eval "test \"`echo '$''{'unet_cv_sys_nonblocking_posix'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2776,7 +2780,7 @@ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext <<EOF -#line 2780 "configure" +#line 2784 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -2802,7 +2806,7 @@ exit(1); } EOF -if { (eval echo configure:2806: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2810: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then unet_cv_sys_nonblocking_posix=yes else @@ -2824,7 +2828,7 @@ else echo $ac_n "checking for bsd non-blocking""... $ac_c" 1>&6 -echo "configure:2828: checking for bsd non-blocking" >&5 +echo "configure:2832: checking for bsd non-blocking" >&5 if eval "test \"`echo '$''{'unet_cv_sys_nonblocking_bsd'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2832,7 +2836,7 @@ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext <<EOF -#line 2836 "configure" +#line 2840 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -2858,7 +2862,7 @@ exit(1); } EOF -if { (eval echo configure:2862: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2866: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then unet_cv_sys_nonblocking_bsd=yes else @@ -2886,19 +2890,19 @@ fi fi echo $ac_n "checking for posix signals""... $ac_c" 1>&6 -echo "configure:2890: checking for posix signals" >&5 +echo "configure:2894: checking for posix signals" >&5 if eval "test \"`echo '$''{'unet_cv_sys_signal_posix'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2895 "configure" +#line 2899 "configure" #include "confdefs.h" #include <signal.h> int main() { sigaction(SIGTERM, (struct sigaction *)0L, (struct sigaction *)0L) ; return 0; } EOF -if { (eval echo configure:2902: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2906: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* unet_cv_sys_signal_posix=yes else @@ -2918,7 +2922,7 @@ else echo $ac_n "checking for bsd reliable signals""... $ac_c" 1>&6 -echo "configure:2922: checking for bsd reliable signals" >&5 +echo "configure:2926: checking for bsd reliable signals" >&5 if eval "test \"`echo '$''{'unet_cv_sys_signal_bsd'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2926,7 +2930,7 @@ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext <<EOF -#line 2930 "configure" +#line 2934 "configure" #include "confdefs.h" #include <signal.h> int calls = 0; @@ -2944,7 +2948,7 @@ exit (0); } EOF -if { (eval echo configure:2948: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2952: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then unet_cv_sys_signal_bsd=yes else @@ -2973,20 +2977,20 @@ fi echo $ac_n "checking if the compiler understands -pipe""... $ac_c" 1>&6 -echo "configure:2977: checking if the compiler understands -pipe" >&5 +echo "configure:2981: checking if the compiler understands -pipe" >&5 unet_cv_pipe_flags="$ac_cv_prog_gcc" if test "$ac_cv_prog_gcc" = no; then OLDCFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pipe" cat > conftest.$ac_ext <<EOF -#line 2983 "configure" +#line 2987 "configure" #include "confdefs.h" int main() { ; return 0; } EOF -if { (eval echo configure:2990: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2994: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* unet_cv_pipe_flags=yes else @@ -3006,7 +3010,7 @@ echo $ac_n "checking for OS-dependent information""... $ac_c" 1>&6 -echo "configure:3010: checking for OS-dependent information" >&5 +echo "configure:3014: checking for OS-dependent information" >&5 case "$host" in *-linux*) echo "$ac_t""Linux ($host) found." 1>&6 @@ -3066,7 +3070,7 @@ echo $ac_n "checking whether to enable use of poll()""... $ac_c" 1>&6 -echo "configure:3070: checking whether to enable use of poll()" >&5 +echo "configure:3074: checking whether to enable use of poll()" >&5 # Check whether --enable-poll or --disable-poll was given. if test "${enable_poll+set}" = set; then enableval="$enable_poll" @@ -3100,7 +3104,7 @@ echo $ac_n "checking whether to enable debug mode""... $ac_c" 1>&6 -echo "configure:3104: checking whether to enable debug mode" >&5 +echo "configure:3108: checking whether to enable debug mode" >&5 # Check whether --enable-debug or --disable-debug was given. if test "${enable_debug+set}" = set; then enableval="$enable_debug" @@ -3124,7 +3128,7 @@ fi echo $ac_n "checking whether to enable asserts""... $ac_c" 1>&6 -echo "configure:3128: checking whether to enable asserts" >&5 +echo "configure:3132: checking whether to enable asserts" >&5 # Check whether --enable-asserts or --disable-asserts was given. if test "${enable_asserts+set}" = set; then enableval="$enable_asserts" @@ -3148,7 +3152,7 @@ fi echo $ac_n "checking whether to enable debugging symbols""... $ac_c" 1>&6 -echo "configure:3152: checking whether to enable debugging symbols" >&5 +echo "configure:3156: checking whether to enable debugging symbols" >&5 # Check whether --enable-symbols or --disable-symbols was given. if test "${enable_symbols+set}" = set; then enableval="$enable_symbols" @@ -3169,7 +3173,7 @@ fi echo $ac_n "checking whether to enable profiling support (gprof)""... $ac_c" 1>&6 -echo "configure:3173: checking whether to enable profiling support (gprof)" >&5 +echo "configure:3177: checking whether to enable profiling support (gprof)" >&5 # Check whether --enable-profile or --disable-profile was given. if test "${enable_profile+set}" = set; then enableval="$enable_profile" @@ -3190,7 +3194,7 @@ fi echo $ac_n "checking whether to enable pedantic compiler warnings""... $ac_c" 1>&6 -echo "configure:3194: checking whether to enable pedantic compiler warnings" >&5 +echo "configure:3198: checking whether to enable pedantic compiler warnings" >&5 # Check whether --enable-pedantic or --disable-pedantic was given. if test "${enable_pedantic+set}" = set; then enableval="$enable_pedantic" @@ -3211,7 +3215,7 @@ fi echo $ac_n "checking whether to enable compiler warnings""... $ac_c" 1>&6 -echo "configure:3215: checking whether to enable compiler warnings" >&5 +echo "configure:3219: checking whether to enable compiler warnings" >&5 # Check whether --enable-warnings or --disable-warnings was given. if test "${enable_warnings+set}" = set; then enableval="$enable_warnings" @@ -3232,7 +3236,7 @@ fi echo $ac_n "checking whether to enable inlining for a few critical functions""... $ac_c" 1>&6 -echo "configure:3236: checking whether to enable inlining for a few critical functions" >&5 +echo "configure:3240: checking whether to enable inlining for a few critical functions" >&5 # Check whether --enable-inlines or --disable-inlines was given. if test "${enable_inlines+set}" = set; then enableval="$enable_inlines" @@ -3256,7 +3260,7 @@ fi echo $ac_n "checking whether to enable the /dev/poll event engine""... $ac_c" 1>&6 -echo "configure:3260: checking whether to enable the /dev/poll event engine" >&5 +echo "configure:3264: checking whether to enable the /dev/poll event engine" >&5 # Check whether --enable-devpoll or --disable-devpoll was given. if test "${enable_devpoll+set}" = set; then enableval="$enable_devpoll" @@ -3286,7 +3290,7 @@ fi echo $ac_n "checking whether to enable the kqueue event engine""... $ac_c" 1>&6 -echo "configure:3290: checking whether to enable the kqueue event engine" >&5 +echo "configure:3294: checking whether to enable the kqueue event engine" >&5 # Check whether --enable-kqueue or --disable-kqueue was given. if test "${enable_kqueue+set}" = set; then enableval="$enable_kqueue" @@ -3316,7 +3320,7 @@ fi echo $ac_n "checking what name to give the symlink""... $ac_c" 1>&6 -echo "configure:3320: checking what name to give the symlink" >&5 +echo "configure:3324: checking what name to give the symlink" >&5 # Check whether --with-symlink or --without-symlink was given. if test "${with_symlink+set}" = set; then withval="$with_symlink" @@ -3348,7 +3352,7 @@ echo $ac_n "checking what permissions to set on the installed binary""... $ac_c" 1>&6 -echo "configure:3352: checking what permissions to set on the installed binary" >&5 +echo "configure:3356: checking what permissions to set on the installed binary" >&5 # Check whether --with-mode or --without-mode was given. if test "${with_mode+set}" = set; then withval="$with_mode" @@ -3374,7 +3378,7 @@ unet_uid=`id | sed -e 's/.*uid=[0-9]*(//' -e 's/).*//' 2> /dev/null` echo $ac_n "checking which user should own the installed binary""... $ac_c" 1>&6 -echo "configure:3378: checking which user should own the installed binary" >&5 +echo "configure:3382: checking which user should own the installed binary" >&5 # Check whether --with-owner or --without-owner was given. if test "${with_owner+set}" = set; then withval="$with_owner" @@ -3400,7 +3404,7 @@ unet_gid=`id | sed -e 's/.*gid=[0-9]*(//' -e 's/).*//' 2> /dev/null` echo $ac_n "checking which group should own the installed binary""... $ac_c" 1>&6 -echo "configure:3404: checking which group should own the installed binary" >&5 +echo "configure:3408: checking which group should own the installed binary" >&5 # Check whether --with-group or --without-group was given. if test "${with_group+set}" = set; then withval="$with_group" @@ -3432,7 +3436,7 @@ fi fi echo $ac_n "checking for site domain name""... $ac_c" 1>&6 -echo "configure:3436: checking for site domain name" >&5 +echo "configure:3440: checking for site domain name" >&5 # Check whether --with-domain or --without-domain was given. if test "${with_domain+set}" = set; then withval="$with_domain" @@ -3462,7 +3466,7 @@ echo $ac_n "checking if chroot operation is desired""... $ac_c" 1>&6 -echo "configure:3466: checking if chroot operation is desired" >&5 +echo "configure:3470: checking if chroot operation is desired" >&5 # Check whether --with-chroot or --without-chroot was given. if test "${with_chroot+set}" = set; then withval="$with_chroot" @@ -3510,7 +3514,7 @@ exec_prefix=$unet_save_exec_prefix echo $ac_n "checking where the binary will be for /restart""... $ac_c" 1>&6 -echo "configure:3514: checking where the binary will be for /restart" >&5 +echo "configure:3518: checking where the binary will be for /restart" >&5 if test x"$unet_cv_with_symlink" = xno; then unet_spath="$unet_bindir/ircd" else @@ -3532,7 +3536,7 @@ echo $ac_n "checking what the data directory should be""... $ac_c" 1>&6 -echo "configure:3536: checking what the data directory should be" >&5 +echo "configure:3540: checking what the data directory should be" >&5 # Check whether --with-dpath or --without-dpath was given. if test "${with_dpath+set}" = set; then withval="$with_dpath" @@ -3575,7 +3579,7 @@ echo $ac_n "checking where the default configuration file resides""... $ac_c" 1>&6 -echo "configure:3579: checking where the default configuration file resides" >&5 +echo "configure:3583: checking where the default configuration file resides" >&5 # Check whether --with-cpath or --without-cpath was given. if test "${with_cpath+set}" = set; then withval="$with_cpath" @@ -3617,7 +3621,7 @@ echo $ac_n "checking where to put the debugging log if debugging enabled""... $ac_c" 1>&6 -echo "configure:3621: checking where to put the debugging log if debugging enabled" >&5 +echo "configure:3625: checking where to put the debugging log if debugging enabled" >&5 # Check whether --with-lpath or --without-lpath was given. if test "${with_lpath+set}" = set; then withval="$with_lpath" @@ -3663,7 +3667,7 @@ unet_maxcon=`ulimit -Hn` unet_maxcon=`expr $unet_maxcon - 4` echo $ac_n "checking max connections""... $ac_c" 1>&6 -echo "configure:3667: checking max connections" >&5 +echo "configure:3671: checking max connections" >&5 # Check whether --with-maxcon or --without-maxcon was given. if test "${with_maxcon+set}" = set; then withval="$with_maxcon"
signature.asc
Description: Digital signature