Commit 7373064a by J. David Anglin Committed by Andreas Jaeger

configure.in: Correct test of gcc_cv_glibc.

2000-09-20  J. David Anglin  <dave@hiauly1.hia.nrc.ca>

	* configure.in: Correct test of gcc_cv_glibc.
	* configure: Rebuilt.
	* config.in: Rebuilt.

From-SVN: r36558
parent bb20cc46
2000-09-20 J. David Anglin <dave@hiauly1.hia.nrc.ca>
* configure.in: Correct test of gcc_cv_glibc.
* configure: Rebuilt.
* config.in: Rebuilt.
2000-09-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* builtins.c (expand_builtin_fputs): Also expand when length!=1.
......
......@@ -331,9 +331,6 @@
/* Always define this when using the GNU C Library */
#undef _GNU_SOURCE
/* Always define this */
#undef _GNU_SOURCE
/* Define if your compiler understands volatile. */
#undef HAVE_VOLATILE
......
......@@ -1516,7 +1516,7 @@ rm -f conftest*
fi
echo "$ac_t""$gcc_cv_glibc" 1>&6
if test "gcc_cv_glibc" = "yes"; then
if test $gcc_cv_glibc" = yes; then
cat >> confdefs.h <<\EOF
#define _GNU_SOURCE 1
EOF
......
......@@ -405,7 +405,7 @@ AC_CACHE_VAL(gcc_cv_glibc,
[gcc_cv_glibc=yes],
gcc_cv_glibc=no)])
AC_MSG_RESULT($gcc_cv_glibc)
if test "gcc_cv_glibc" = "yes"; then
if test $gcc_cv_glibc" = yes; then
AC_DEFINE(_GNU_SOURCE, 1, [Always define this when using the GNU C Library])
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment