summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2011-11-06 21:19:14 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2011-11-06 21:19:14 (GMT)
commit9ca088e42391856f371d072d755309e7d3a14fb0 (patch)
treec5ee0a8f24cfc618d9cd8991099397f3259598ef
parent92e5075da873b21f3a8b1d85ae04a300ddd56901 (diff)
downloadhdf5-9ca088e42391856f371d072d755309e7d3a14fb0.zip
hdf5-9ca088e42391856f371d072d755309e7d3a14fb0.tar.gz
hdf5-9ca088e42391856f371d072d755309e7d3a14fb0.tar.bz2
[svn-r21723] Pushed trunk rev 21722 to the 1.8 branch. This reverts linking to the bsd-compat library on linux. Tested on jam, more extensive testing was performed on the trunk branch.
-rwxr-xr-xconfigure5
-rw-r--r--configure.in3
2 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 476052a..e759650 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Id: configure.in 21588 2011-10-17 00:22:26Z hdftest .
+# From configure.in Id: configure.in 21638 2011-10-21 15:55:40Z mamcgree .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.68 for HDF5 1.8.9-snap0.
#
@@ -22691,8 +22691,7 @@ case "$host_cpu-$host_vendor-$host_os" in
H5_CPPFLAGS="-D_POSIX_C_SOURCE=199506L $H5_CPPFLAGS"
- AM_CPPFLAGS="-D_BSD_SOURCE $AM_CPPFLAGS"
- AM_LDFLAGS="-lbsd-compat $AM_LDFLAGS"
+ AM_CPPFLAGS="-D_BSD_SOURCE $AM_CPPFLAGS"
;;
esac
diff --git a/configure.in b/configure.in
index b1f4162..2478739 100644
--- a/configure.in
+++ b/configure.in
@@ -1494,8 +1494,9 @@ case "$host_cpu-$host_vendor-$host_os" in
dnl correctly in <stdio.h>
dnl Linking to the bsd-compat library is required as per the gcc manual:
dnl http://www.gnu.org/s/libc/manual/html_node/Feature-Test-Macros.html
+ dnl though we don't do this due to the big test failing on older CentOS
+ dnl systems when compiled with gcc 4.6.2.
AM_CPPFLAGS="-D_BSD_SOURCE $AM_CPPFLAGS"
- AM_LDFLAGS="-lbsd-compat $AM_LDFLAGS"
;;
esac