diff options
author | manfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-21 07:52:43 +0000 |
---|---|---|
committer | manfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-21 07:52:43 +0000 |
commit | 2960b9507d93a62a4617b080eb91adfadd5386d9 (patch) | |
tree | 01801ce39ab257bbc46e9b70a9a7362981edd6f7 /libiberty | |
parent | a18792d6fb0769a83f733e02702e30d10f9dd72d (diff) | |
download | gcc-2960b9507d93a62a4617b080eb91adfadd5386d9.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@19925 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 12 | ||||
-rw-r--r-- | libiberty/config.table | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 3cf9c0bad2f..b627fa04f5c 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,15 @@ +1998-05-21 Manfred Hollstein <manfred@s-direktnet.de> + + * 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. + Sat May 16 14:01:26 1998 Jeffrey A Law (law@cygnus.com) * config.table: Add line to set enable_shared in the Makefile diff --git a/libiberty/config.table b/libiberty/config.table index 063f3839e74..828b3b2bfe0 100644 --- a/libiberty/config.table +++ b/libiberty/config.table @@ -13,6 +13,7 @@ frags=$frag case "${enable_shared}" in yes) shared=yes ;; no) shared=no ;; + "") shared=no ;; *) shared=yes ;; esac if [ "${shared}" = "yes" ]; then |