This is the mail archive of the libstdc++@gcc.gnu.org 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]
Other format: [Raw text]

Libstdc++ configure tweak for crosses


There'll be another (more interesting) patch later today, I hope.  Gettext
does need AC_ISC_POSIX, but:
  - it AC_REQUIRE's the macro itself so we don't need to.
  - "gettext" in this context means AM_GNU_GETTEXT, and we don't use that.
  - AC_ISC_POSIX is a link test, which means that it fails if we can't link.
    Right now the whole configure script fails if we can't link, but the
    patch for that will be forthcoming in a few hours.

OK?

-- 
Daniel Jacobowitz
MontaVista Software                         Debian GNU/Linux Developer

2003-08-27  Daniel Jacobowitz  <drow@mvista.com>

	* acinclude.m4: Don't call AC_ISC_POSIX.
	* aclocal.m4: Regenerated.
	* configure: Regenerated.

Index: acinclude.m4
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/acinclude.m4,v
retrieving revision 1.263
diff -u -p -r1.263 acinclude.m4
--- acinclude.m4	17 Aug 2003 20:23:03 -0000	1.263
+++ acinclude.m4	27 Aug 2003 16:44:54 -0000
@@ -122,9 +122,6 @@ AC_DEFUN(GLIBCXX_CONFIGURE, [
   gcc_version=`$CXX -dumpversion`
   AC_MSG_RESULT($gcc_version)
 
-  # For some reason, gettext needs this.
-  AC_ISC_POSIX
-
   # Will set LN_S to either 'ln -s', 'ln', or 'cp -p' (if linking isn't
   # available).  Uncomment the next line to force a particular method.
   AC_PROG_LN_S


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