diff options
author | manfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-21 07:52:38 +0000 |
---|---|---|
committer | manfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-21 07:52:38 +0000 |
commit | 17ea1c73fddecc608a6ba2c88ee729491cc69b40 (patch) | |
tree | ebf46b9e020fa94805b42846b507657a99765ee0 /libiberty | |
parent | 9b4c8c82b0373e61948d48db89f44a644949f0db (diff) | |
download | gcc-17ea1c73fddecc608a6ba2c88ee729491cc69b40.tar.gz |
�
* configure.in: Check for unistd.h as well.
* configure: Rebuild.
* config.in: Rebuild.
* getpagesize.c (GNU_OUR_PAGESIZE): Use sysconf only if _SC_PAGESIZE
is defined in unistd.h. Reformat conditional block for easier reading.
* config.table (shared): Default to no if ${enable_shared}
is unset or empty; this logic is used by the toplevel
configure scripts, too.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19923 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/configure.in b/libiberty/configure.in index 05a9df1e975..4b51ee4384b 100644 --- a/libiberty/configure.in +++ b/libiberty/configure.in @@ -104,7 +104,7 @@ AC_SUBST_FILE(host_makefile_frag) # It's OK to check for header files. Although the compiler may not be # able to link anything, it had better be able to at least compile # something. -AC_CHECK_HEADERS(sys/file.h sys/param.h stdlib.h string.h) +AC_CHECK_HEADERS(sys/file.h sys/param.h stdlib.h string.h unistd.h) # This is the list of functions which libiberty will provide if they # are not available on the host. |