bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gettext-0.11 trivial configure.in typo


From: Tim Mooney
Subject: gettext-0.11 trivial configure.in typo
Date: 10 Feb 2002 00:24:40 GMT

While rebuilding the configure machinery with more recent tools,
autoconf 2.52 pointed out:

configure.in:120: error: possibly undefined macro: AC_TRY_COMPILER

Looks like a typo to me (unless this a gettext-local macro I'm not finding...).


--- gettext-0.11.orig/ChangeLog Thu Jan 31 07:28:38 2002
+++ gettext-0.11/ChangeLog      Sat Feb  9 18:14:27 2002
@@ -0,0 +1,4 @@
+2002-02-09  Tim Mooney <address@hidden>
+
+       * configure.in: fix trivial AC_TRY_COMPILER typo.
+
--- gettext-0.11.orig/configure.in      Thu Jan 31 07:29:11 2002
+++ gettext-0.11/configure.in   Sat Feb  9 17:57:06 2002
@@ -117,7 +117,7 @@
   AC_MSG_CHECKING([whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works])
   AC_LANG_SAVE
   AC_LANG_CPLUSPLUS
-  AC_TRY_COMPILER([int main(){return(0);}], ac_cv_prog_cxx_works, 
ac_cv_prog_cxx_cross)
+  AC_TRY_COMPILE([int main(){return(0);}], ac_cv_prog_cxx_works, 
ac_cv_prog_cxx_cross)
   AC_LANG_RESTORE
   AC_MSG_RESULT($ac_cv_prog_cxx_works)
   if test $ac_cv_prog_cxx_works = no; then


As a heads up, it's also worthwhile to note that autoconf 2.52g and presumably
later versions will now error out rebuilding configure if you modify LIBOBJS
directly, which gettext does.  You're apparently supposed to use AC_LIBOBJS
instead.

Tim
-- 
Tim Mooney                              address@hidden
Information Technology Services         (701) 231-1076 (Voice)
Room 242-J6, IACC Building              (701) 231-8541 (Fax)
North Dakota State University, Fargo, ND 58105-5164



reply via email to

[Prev in Thread] Current Thread [Next in Thread]