This is the mail archive of the libstdc++@sourceware.cygnus.com mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

typo fix


Victim of BUGGY_FLOAT_COMPLEX to _GLIBCPP_BUGGY_FLOAT_COMPLEX change
in my last patch. Please update aclocal.m4 and config.h.in after 
applying this patch:
  
   $ aclocal -I m4
   $ autoheader

Tue Nov 23 14:59:26 1999  Mumit Khan  <khan@xraylith.wisc.edu>

	* acinclude.m4: Fix typo.

Index: acinclude.m4
===================================================================
RCS file: /cvs/libstdc++/libstdc++/acinclude.m4,v
retrieving revision 1.1
diff -u -3 -p -r1.1 acinclude.m4
--- acinclude.m4	1999/11/23 00:31:03	1.1
+++ acinclude.m4	1999/11/23 20:58:43
@@ -2,7 +2,7 @@ dnl
 dnl Check to see if this version of GNU C++ is afflicted by bugs in
 dnl __complex__ float support.
 dnl
-dnl Define BUGGY_FLOAT_COMPLEX if buggy.
+dnl Define _GLIBCPP_BUGGY_FLOAT_COMPLEX if buggy.
 dnl
 dnl GLIBCPP_CHECK_FLOAT_COMPLEX_SUPPORT
 AC_DEFUN(GLIBCPP_CHECK_FLOAT_COMPLEX_SUPPORT, [
@@ -38,7 +38,7 @@ EOB
   ])
   AC_MSG_RESULT($glibcpp_cv_float_complex)
   if test $glibcpp_cv_float_complex = buggy; then
-    AC_DEFINE(BUGGY_FLOAT_COMPLEX)
+    AC_DEFINE(_GLIBCPP_BUGGY_FLOAT_COMPLEX)
   fi
 ])
 

Regards,
Mumit


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]