From 39d6585022489902100df3dc47f799183c6aeac1 Mon Sep 17 00:00:00 2001 From: Manfred Hollstein Date: Thu, 21 May 1998 07:52:43 +0000 Subject: [PATCH] configure.in: Check for unistd.h as well. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit � * 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. From-SVN: r19925 --- libiberty/ChangeLog | 12 ++++++++++++ libiberty/config.table | 1 + 2 files changed, 13 insertions(+) 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 + + * 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 -- 2.30.2