+2005-07-31 Bruno Haible <bruno@clisp.org>
+
+ * autogen.sh: Add commands for gettext-runtime/glocale directory.
+
2005-07-24 Bruno Haible <bruno@clisp.org>
Tidy up exported symbols.
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
+2005-07-31 Bruno Haible <bruno@clisp.org>
+
+ * glocale: New directory.
+ * configure.ac (SUBDIR_glocale): New variable.
+ * Makefile.am (SUBDIRS): Add SUBDIR_glocale.
+ (DIST_SUBDIRS): Add glocale.
+
2005-07-26 Bruno Haible <bruno@clisp.org>
* configure.ac: Move the AM_GNU_GETTEXT invocation early, since it
MAKEINFO = env LANG= LC_MESSAGES= LC_ALL= LANGUAGE= @MAKEINFO@
-SUBDIRS = doc intl intl-java intl-csharp lib @SUBDIR_libasprintf@ src po man m4 tests
-DIST_SUBDIRS = doc intl intl-java intl-csharp lib libasprintf src po man m4 tests
+SUBDIRS = doc intl intl-java intl-csharp lib @SUBDIR_libasprintf@ @SUBDIR_glocale@ src po man m4 tests
+DIST_SUBDIRS = doc intl intl-java intl-csharp lib libasprintf glocale src po man m4 tests
EXTRA_DIST = BUGS
fi
AC_SUBST(SUBDIR_libasprintf)
-AC_CONFIG_SUBDIRS(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)
+AC_SUBST(SUBDIR_glocale)
+
+AC_CONFIG_SUBDIRS(libasprintf glocale)
AC_CONFIG_FILES([Makefile])