aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-08-14 06:19:49 -0400
committerGlenn Morris2011-08-14 06:19:49 -0400
commit7417b37cce372cb5a04e06ebce999aa26f387002 (patch)
treeba70bd6616196b7da1ebebddc31f1106c4f69e93
parenta3720aa275043aa5ee0f14c8a342183d293d6ae7 (diff)
downloademacs-7417b37cce372cb5a04e06ebce999aa26f387002.tar.gz
emacs-7417b37cce372cb5a04e06ebce999aa26f387002.zip
Auto-commit of generated files.
-rw-r--r--autogen/config.in15
-rwxr-xr-xautogen/configure187
2 files changed, 145 insertions, 57 deletions
diff --git a/autogen/config.in b/autogen/config.in
index ca44b80c91e..24dd54db43f 100644
--- a/autogen/config.in
+++ b/autogen/config.in
@@ -218,6 +218,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
218/* Define to 1 if you have the `fpathconf' function. */ 218/* Define to 1 if you have the `fpathconf' function. */
219#undef HAVE_FPATHCONF 219#undef HAVE_FPATHCONF
220 220
221/* Define to 1 if you have the `freeifaddrs' function. */
222#undef HAVE_FREEIFADDRS
223
221/* Define to 1 if using the freetype and fontconfig libraries. */ 224/* Define to 1 if using the freetype and fontconfig libraries. */
222#undef HAVE_FREETYPE 225#undef HAVE_FREETYPE
223 226
@@ -254,6 +257,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
254/* Define to 1 if you have the `gethostname' function. */ 257/* Define to 1 if you have the `gethostname' function. */
255#undef HAVE_GETHOSTNAME 258#undef HAVE_GETHOSTNAME
256 259
260/* Define to 1 if you have the `getifaddrs' function. */
261#undef HAVE_GETIFADDRS
262
257/* Define to 1 if you have the `getline' function. */ 263/* Define to 1 if you have the `getline' function. */
258#undef HAVE_GETLINE 264#undef HAVE_GETLINE
259 265
@@ -351,6 +357,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
351/* Define to 1 if netdb.h declares h_errno. */ 357/* Define to 1 if netdb.h declares h_errno. */
352#undef HAVE_H_ERRNO 358#undef HAVE_H_ERRNO
353 359
360/* Define to 1 if you have the <ifaddrs.h> header file. */
361#undef HAVE_IFADDRS_H
362
354/* Define to 1 if using imagemagick. */ 363/* Define to 1 if using imagemagick. */
355#undef HAVE_IMAGEMAGICK 364#undef HAVE_IMAGEMAGICK
356 365
@@ -551,6 +560,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
551/* Define to 1 if you have the `mremap' function. */ 560/* Define to 1 if you have the `mremap' function. */
552#undef HAVE_MREMAP 561#undef HAVE_MREMAP
553 562
563/* Define to 1 if you have the <net/if_dl.h> header file. */
564#undef HAVE_NET_IF_DL_H
565
554/* Define to 1 if you have the <net/if.h> header file. */ 566/* Define to 1 if you have the <net/if.h> header file. */
555#undef HAVE_NET_IF_H 567#undef HAVE_NET_IF_H
556 568
@@ -705,6 +717,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
705/* Define to 1 if `ifr_addr' is a member of `struct ifreq'. */ 717/* Define to 1 if `ifr_addr' is a member of `struct ifreq'. */
706#undef HAVE_STRUCT_IFREQ_IFR_ADDR 718#undef HAVE_STRUCT_IFREQ_IFR_ADDR
707 719
720/* Define to 1 if `ifr_addr.sa_len' is a member of `struct ifreq'. */
721#undef HAVE_STRUCT_IFREQ_IFR_ADDR_SA_LEN
722
708/* Define to 1 if `ifr_broadaddr' is a member of `struct ifreq'. */ 723/* Define to 1 if `ifr_broadaddr' is a member of `struct ifreq'. */
709#undef HAVE_STRUCT_IFREQ_IFR_BROADADDR 724#undef HAVE_STRUCT_IFREQ_IFR_BROADADDR
710 725
diff --git a/autogen/configure b/autogen/configure
index 351937c35a7..02fa5abb626 100755
--- a/autogen/configure
+++ b/autogen/configure
@@ -2468,63 +2468,6 @@ $as_echo "$ac_res" >&6; }
2468 2468
2469} # ac_fn_c_check_header_preproc 2469} # ac_fn_c_check_header_preproc
2470 2470
2471# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES
2472# ----------------------------------------------------
2473# Tries to find if the field MEMBER exists in type AGGR, after including
2474# INCLUDES, setting cache variable VAR accordingly.
2475ac_fn_c_check_member ()
2476{
2477 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2478 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
2479$as_echo_n "checking for $2.$3... " >&6; }
2480if { as_var=$4; eval "test \"\${$as_var+set}\" = set"; }; then :
2481 $as_echo_n "(cached) " >&6
2482else
2483 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2484/* end confdefs.h. */
2485$5
2486int
2487main ()
2488{
2489static $2 ac_aggr;
2490if (ac_aggr.$3)
2491return 0;
2492 ;
2493 return 0;
2494}
2495_ACEOF
2496if ac_fn_c_try_compile "$LINENO"; then :
2497 eval "$4=yes"
2498else
2499 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2500/* end confdefs.h. */
2501$5
2502int
2503main ()
2504{
2505static $2 ac_aggr;
2506if (sizeof ac_aggr.$3)
2507return 0;
2508 ;
2509 return 0;
2510}
2511_ACEOF
2512if ac_fn_c_try_compile "$LINENO"; then :
2513 eval "$4=yes"
2514else
2515 eval "$4=no"
2516fi
2517rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2518fi
2519rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2520fi
2521eval ac_res=\$$4
2522 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2523$as_echo "$ac_res" >&6; }
2524 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2525
2526} # ac_fn_c_check_member
2527
2528# ac_fn_c_check_func LINENO FUNC VAR 2471# ac_fn_c_check_func LINENO FUNC VAR
2529# ---------------------------------- 2472# ----------------------------------
2530# Tests whether FUNC exists, setting the cache variable VAR accordingly 2473# Tests whether FUNC exists, setting the cache variable VAR accordingly
@@ -2592,6 +2535,63 @@ $as_echo "$ac_res" >&6; }
2592 2535
2593} # ac_fn_c_check_func 2536} # ac_fn_c_check_func
2594 2537
2538# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES
2539# ----------------------------------------------------
2540# Tries to find if the field MEMBER exists in type AGGR, after including
2541# INCLUDES, setting cache variable VAR accordingly.
2542ac_fn_c_check_member ()
2543{
2544 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2545 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
2546$as_echo_n "checking for $2.$3... " >&6; }
2547if { as_var=$4; eval "test \"\${$as_var+set}\" = set"; }; then :
2548 $as_echo_n "(cached) " >&6
2549else
2550 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2551/* end confdefs.h. */
2552$5
2553int
2554main ()
2555{
2556static $2 ac_aggr;
2557if (ac_aggr.$3)
2558return 0;
2559 ;
2560 return 0;
2561}
2562_ACEOF
2563if ac_fn_c_try_compile "$LINENO"; then :
2564 eval "$4=yes"
2565else
2566 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2567/* end confdefs.h. */
2568$5
2569int
2570main ()
2571{
2572static $2 ac_aggr;
2573if (sizeof ac_aggr.$3)
2574return 0;
2575 ;
2576 return 0;
2577}
2578_ACEOF
2579if ac_fn_c_try_compile "$LINENO"; then :
2580 eval "$4=yes"
2581else
2582 eval "$4=no"
2583fi
2584rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2585fi
2586rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2587fi
2588eval ac_res=\$$4
2589 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2590$as_echo "$ac_res" >&6; }
2591 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2592
2593} # ac_fn_c_check_member
2594
2595# ac_fn_c_check_type LINENO TYPE VAR INCLUDES 2595# ac_fn_c_check_type LINENO TYPE VAR INCLUDES
2596# ------------------------------------------- 2596# -------------------------------------------
2597# Tests whether TYPE exists after having included INCLUDES, setting cache 2597# Tests whether TYPE exists after having included INCLUDES, setting cache
@@ -8359,6 +8359,18 @@ $as_echo "#define NO_MATHERR 1" >>confdefs.h
8359 8359
8360fi 8360fi
8361 8361
8362for ac_header in sys/socket.h
8363do :
8364 ac_fn_c_check_header_mongrel "$LINENO" "sys/socket.h" "ac_cv_header_sys_socket_h" "$ac_includes_default"
8365if test "x$ac_cv_header_sys_socket_h" = x""yes; then :
8366 cat >>confdefs.h <<_ACEOF
8367#define HAVE_SYS_SOCKET_H 1
8368_ACEOF
8369
8370fi
8371
8372done
8373
8362for ac_header in net/if.h 8374for ac_header in net/if.h
8363do : 8375do :
8364 ac_fn_c_check_header_compile "$LINENO" "net/if.h" "ac_cv_header_net_if_h" "$ac_includes_default 8376 ac_fn_c_check_header_compile "$LINENO" "net/if.h" "ac_cv_header_net_if_h" "$ac_includes_default
@@ -8375,6 +8387,51 @@ fi
8375 8387
8376done 8388done
8377 8389
8390for ac_header in ifaddrs.h
8391do :
8392 ac_fn_c_check_header_compile "$LINENO" "ifaddrs.h" "ac_cv_header_ifaddrs_h" "$ac_includes_default
8393#if HAVE_SYS_SOCKET_H
8394#include <sys/socket.h>
8395#endif
8396"
8397if test "x$ac_cv_header_ifaddrs_h" = x""yes; then :
8398 cat >>confdefs.h <<_ACEOF
8399#define HAVE_IFADDRS_H 1
8400_ACEOF
8401
8402fi
8403
8404done
8405
8406for ac_header in net/if_dl.h
8407do :
8408 ac_fn_c_check_header_compile "$LINENO" "net/if_dl.h" "ac_cv_header_net_if_dl_h" "$ac_includes_default
8409#if HAVE_SYS_SOCKET_H
8410#include <sys/socket.h>
8411#endif
8412"
8413if test "x$ac_cv_header_net_if_dl_h" = x""yes; then :
8414 cat >>confdefs.h <<_ACEOF
8415#define HAVE_NET_IF_DL_H 1
8416_ACEOF
8417
8418fi
8419
8420done
8421
8422for ac_func in getifaddrs freeifaddrs
8423do :
8424 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
8425ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
8426eval as_val=\$$as_ac_var
8427 if test "x$as_val" = x""yes; then :
8428 cat >>confdefs.h <<_ACEOF
8429#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
8430_ACEOF
8431
8432fi
8433done
8434
8378 8435
8379{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5 8436{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5
8380$as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; } 8437$as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; }
@@ -8566,6 +8623,22 @@ _ACEOF
8566 8623
8567 8624
8568fi 8625fi
8626ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_addr.sa_len" "ac_cv_member_struct_ifreq_ifr_addr_sa_len" "$ac_includes_default
8627#if HAVE_SYS_SOCKET_H
8628#include <sys/socket.h>
8629#endif
8630#if HAVE_NET_IF_H
8631#include <net/if.h>
8632#endif
8633"
8634if test "x$ac_cv_member_struct_ifreq_ifr_addr_sa_len" = x""yes; then :
8635
8636cat >>confdefs.h <<_ACEOF
8637#define HAVE_STRUCT_IFREQ_IFR_ADDR_SA_LEN 1
8638_ACEOF
8639
8640
8641fi
8569 8642
8570 8643
8571 8644