about summary refs log tree commit diff
path: root/configure.in
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-10-27 20:51:07 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-10-27 20:51:07 +0000
commit609ac4e332f2d34098edd6ae9dfb7c8918ac832a (patch)
treeff00a22f4512763cd9d15ff21e6117b88d8546d8 /configure.in
parent086bd4059d913eb752a621c8f71f8717cd0b21cf (diff)
downloadzsh-609ac4e332f2d34098edd6ae9dfb7c8918ac832a.tar.gz
zsh-609ac4e332f2d34098edd6ae9dfb7c8918ac832a.tar.xz
zsh-609ac4e332f2d34098edd6ae9dfb7c8918ac832a.zip
zsh-workers/8459
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index b975a158c..e23e777e7 100644
--- a/configure.in
+++ b/configure.in
@@ -846,12 +846,14 @@ rm -f nametmp.c
 if test -z "$sigfile_list"; then
   dnl In case we don't get the stuff from the preprocesor, use the old
   dnl list of standard places.
-  sigfile_list="/usr/include/bsd/sys/signal.h
+  sigfile_list="/usr/include/sys/iso/signal_iso.h
+/usr/include/bsd/sys/signal.h
 /usr/include/signum.h
 /usr/include/asm/signum.h
 /usr/include/asm/signal.h
 /usr/include/linux/signal.h
 /usr/include/sys/signal.h
+/usr/include/bits/signum.h
 /dev/null"
 fi
 for SIGNAL_H in $sigfile_list
@@ -864,6 +866,9 @@ do
   wc -l | sed 's/[ 	]//g'`
   test "x$nsigs" != x && test "$nsigs" -ge 7 && break
 done
+if test $SIGNAL_H = "/dev/null"; then
+  AC_MSG_ERROR(SIGNAL MACROS NOT FOUND:  please report to developers)
+fi
 zsh_cv_path_signal_h=$SIGNAL_H
 ])
 SIGNAL_H=$zsh_cv_path_signal_h
@@ -878,6 +883,7 @@ AC_CACHE_CHECK(where the RLIMIT macros are located,zsh_cv_path_rlimit_h,
                    /usr/include/asm/resource.h	     dnl
                    /usr/include/linux/resource.h     dnl
                    /usr/include/sys/resource.h       dnl
+                   /usr/include/bits/resource.h      dnl
                    /usr/include/resourcebits.h       dnl
                    /dev/null;
 do
@@ -887,7 +893,7 @@ do
 done
 zsh_cv_path_rlimit_h=$RESOURCE_H
 if test $RESOURCE_H = "/dev/null" -a $ac_cv_func_getrlimit = yes; then
-  echo "RLIMIT MACROS NOT FOUND:  please report to developers"
+  AC_MSG_WARN(RLIMIT MACROS NOT FOUND:  please report to developers)
 fi])
 RLIMITS_INC_H=$zsh_cv_path_rlimit_h
 dnl rlimits.h only appears in dependencies if we are actually using it.