diff options
author | Bruno Haible <bruno@clisp.org> | 2005-08-30 20:35:41 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:12:49 +0200 |
commit | 59c345837ab93dfacc3d112ef8db98dbbd3f96ee (patch) | |
tree | 297ec88809a10b9cd7611fd9c476b0d440ad0037 | |
parent | 2fd648e4bcb17f4584de53a1e5fc3053aead2772 (diff) | |
download | external_gettext-59c345837ab93dfacc3d112ef8db98dbbd3f96ee.zip external_gettext-59c345837ab93dfacc3d112ef8db98dbbd3f96ee.tar.gz external_gettext-59c345837ab93dfacc3d112ef8db98dbbd3f96ee.tar.bz2 |
glocale is no longer part of gettext.
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | autogen.sh | 7 | ||||
-rw-r--r-- | gettext-runtime/ChangeLog | 10 | ||||
-rw-r--r-- | gettext-runtime/Makefile.am | 7 | ||||
-rw-r--r-- | gettext-runtime/configure.ac | 13 |
5 files changed, 16 insertions, 25 deletions
@@ -1,3 +1,7 @@ +2008-08-28 Bruno Haible <bruno@clisp.org> + + * autogen.sh: Remove code for gettext-runtime/glocale. + 2005-07-31 Bruno Haible <bruno@clisp.org> * autogen.sh: Add commands for gettext-runtime/glocale directory. @@ -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 3f6e21b..6833920 100644 --- a/gettext-runtime/ChangeLog +++ b/gettext-runtime/ChangeLog @@ -1,3 +1,13 @@ +2008-08-28 Bruno Haible <bruno@clisp.org> + + * 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 <bruno@clisp.org> New configure options --disable-java, --disable-native-java. diff --git a/gettext-runtime/Makefile.am b/gettext-runtime/Makefile.am index 6247710..9904a34 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 7ab4f82..f98f32a 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]) |