diff options
author | Per Bothner <per@bothner.com> | 2004-06-04 10:20:22 -0700 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 2004-06-04 10:20:22 -0700 |
commit | b9d71ce3e4860dd7ae12039eaa05c9731b12a095 (patch) | |
tree | 5dcf7fe1d68429aacfe1225763a6f492a238d0e5 /libmudflap/configure | |
parent | 14bbffa1d211ad505bc165f762027596b87511f1 (diff) | |
download | gcc-b9d71ce3e4860dd7ae12039eaa05c9731b12a095.tar.gz |
configure.in (LIBMUDFLAPTH): Fix thinko.
* configure.in (LIBMUDFLAPTH): Fix thinko.
* configure.in: Check for more headers.
* mf-hooks2.c: Conditionalize on HAVE_SYS_SOCKET_H etc.
* mf-runtime.c: In two places conditionalize on SIUSR1 rather than
HAVE_SIGNAL as mingw has signal.h but not SIUSR1.
From-SVN: r82627
Diffstat (limited to 'libmudflap/configure')
-rwxr-xr-x | libmudflap/configure | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/libmudflap/configure b/libmudflap/configure index 3a532f4c501..fab36079c13 100755 --- a/libmudflap/configure +++ b/libmudflap/configure @@ -3574,7 +3574,13 @@ done -for ac_header in stdint.h execinfo.h signal.h dlfcn.h + + + + + +for ac_header in stdint.h execinfo.h signal.h dlfcn.h \ + netdb.h sys/ipc.h sys/sem.h sys/wait.h sys/socket.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then @@ -4790,7 +4796,7 @@ test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic" case $host in *-*-irix6*) # Find out which ABI we are using. - echo '#line 4793 "configure"' > conftest.$ac_ext + echo '#line 4799 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -5424,7 +5430,7 @@ fi -if test "x$ac_have_pthread_h" != ""; then +if test "$ac_have_pthread_h" != ""; then LIBMUDFLAPTH_TRUE= LIBMUDFLAPTH_FALSE='#' else |