summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--PACKAGING3
-rw-r--r--gettext-runtime/configure.ac3
-rw-r--r--gettext-tools/configure.ac5
3 files changed, 4 insertions, 7 deletions
diff --git a/PACKAGING b/PACKAGING
index cf1ae86ad..46a161232 100644
--- a/PACKAGING
+++ b/PACKAGING
@@ -126,7 +126,8 @@ is according to the following file list.
$prefix/lib/libgettextlib*
$prefix/lib/libgettextsrc*
$prefix/lib/libgettextpo*
- $prefix/lib/preloadable_libintl.so (only installed on glibc systems)
+ $prefix/lib/preloadable_libintl.so (only installed on glibc systems;
+ actually installed by gettext-runtime's "make install")
$prefix/lib/gettext/*
$prefix/share/locale/*/LC_MESSAGES/gettext-tools.mo
$prefix/share/gettext/config.rpath
diff --git a/gettext-runtime/configure.ac b/gettext-runtime/configure.ac
index 2b0afc627..c53147187 100644
--- a/gettext-runtime/configure.ac
+++ b/gettext-runtime/configure.ac
@@ -101,7 +101,8 @@ AM_GNU_GETTEXT([use-libtool], [need-ngettext])
dnl Conditionals for the intl/ directory.
AM_CONDITIONAL([USE_INCLUDED_LIBINTL], [test $USE_INCLUDED_LIBINTL = yes])
AM_CONDITIONAL([BUILD_INCLUDED_LIBINTL], [test $BUILD_INCLUDED_LIBINTL = yes])
-AM_CONDITIONAL([PRELOADABLE_LIBINTL], [false])
+AM_CONDITIONAL([PRELOADABLE_LIBINTL],
+ [test $USE_INCLUDED_LIBINTL = no && test $GLIBC2 = yes && test "$enable_shared" = yes])
dnl Checks for header files, functions and declarations.
gl_INIT
diff --git a/gettext-tools/configure.ac b/gettext-tools/configure.ac
index 623fde4fc..7c9011906 100644
--- a/gettext-tools/configure.ac
+++ b/gettext-tools/configure.ac
@@ -123,11 +123,6 @@ dnl Checks for libraries.
dnl These are the only lines required to internationalize the package.
dnl (OK, not quite, the AC_CONFIG_FILES has also some parts.)
AM_GNU_GETTEXT([use-libtool], [need-ngettext], [\${top_builddir}/../gettext-runtime/intl])
-dnl Conditionals for referencing the ../gettext-runtime/intl/ directory.
-AM_CONDITIONAL([USE_INCLUDED_LIBINTL], [test $USE_INCLUDED_LIBINTL = yes])
-AM_CONDITIONAL([BUILD_INCLUDED_LIBINTL], [test $BUILD_INCLUDED_LIBINTL = yes])
-AM_CONDITIONAL([PRELOADABLE_LIBINTL],
- [test $USE_INCLUDED_LIBINTL = no && test $GLIBC2 = yes && test "$enable_shared" = yes])
dnl This option allows to build gettext-tools without (re)building libtextstyle.
AC_ARG_WITH([installed-libtextstyle],