From: Bruno Haible Date: Tue, 30 Aug 2005 20:35:41 +0000 (+0000) Subject: glocale is no longer part of gettext. X-Git-Tag: v0.15~410 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59c345837ab93dfacc3d112ef8db98dbbd3f96ee;p=thirdparty%2Fgettext.git glocale is no longer part of gettext. --- diff --git a/ChangeLog b/ChangeLog index 7d742d602..f324c2225 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-08-28 Bruno Haible + + * autogen.sh: Remove code for gettext-runtime/glocale. + 2005-07-31 Bruno Haible * autogen.sh: Add commands for gettext-runtime/glocale directory. diff --git a/autogen.sh b/autogen.sh index e8a2f3bc6..74f680a2a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -43,13 +43,6 @@ automake automake ) -(cd gettext-runtime/glocale - aclocal -I m4 -I ../m4 -I ../../gettext-tools/m4 -I ../../m4 - autoconf - autoheader && touch config.h.in - automake -) - cp -p gettext-runtime/ABOUT-NLS gettext-tools/ABOUT-NLS (cd gettext-tools diff --git a/gettext-runtime/ChangeLog b/gettext-runtime/ChangeLog index 3f6e21b6e..6833920c1 100644 --- a/gettext-runtime/ChangeLog +++ b/gettext-runtime/ChangeLog @@ -1,3 +1,13 @@ +2008-08-28 Bruno Haible + + * glocale: Remove directory, moved to separate project. + * configure.ac (--disable-libglocale): Remove option. + (SUBDIR_glocale): Remove variable. + (ENABLE_GLOCALE): Remove conditional. + (AC_CONFIG_SUBDIRS): Remove glocale. + * Makefile.am (SUBDIR_glocale): Remove variable. + (SUBDIRS): Remove $(SUBDIR_glocale). + 2005-08-13 Bruno Haible New configure options --disable-java, --disable-native-java. diff --git a/gettext-runtime/Makefile.am b/gettext-runtime/Makefile.am index 62477100d..9904a34ba 100644 --- a/gettext-runtime/Makefile.am +++ b/gettext-runtime/Makefile.am @@ -29,12 +29,7 @@ SUBDIR_libasprintf = libasprintf else SUBDIR_libasprintf = endif -if ENABLE_GLOCALE -SUBDIR_glocale = glocale -else -SUBDIR_glocale = -endif -SUBDIRS = doc intl intl-java intl-csharp lib $(SUBDIR_libasprintf) $(SUBDIR_glocale) src po man m4 tests +SUBDIRS = doc intl intl-java intl-csharp lib $(SUBDIR_libasprintf) src po man m4 tests EXTRA_DIST = BUGS diff --git a/gettext-runtime/configure.ac b/gettext-runtime/configure.ac index 7ab4f8231..f98f32a0b 100644 --- a/gettext-runtime/configure.ac +++ b/gettext-runtime/configure.ac @@ -151,18 +151,7 @@ if test "$CXX" = ":"; then fi AM_CONDITIONAL([ENABLE_LIBASPRINTF], [test -n "$SUBDIR_libasprintf"]) -dnl Determine whether to build glocale. -AC_ARG_ENABLE(libglocale, - [ --disable-libglocale do not build libglocale], - [if test "$enableval" != no; then - SUBDIR_glocale=glocale - else - SUBDIR_glocale= - fi - ], SUBDIR_glocale=glocale) -AM_CONDITIONAL([ENABLE_GLOCALE], [test -n "$SUBDIR_glocale"]) - -AC_CONFIG_SUBDIRS(libasprintf glocale) +AC_CONFIG_SUBDIRS(libasprintf) AC_CONFIG_FILES([Makefile])