]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Install preloadable_libintl.so only on glibc systems.
authorBruno Haible <bruno@clisp.org>
Tue, 3 Feb 2004 11:00:59 +0000 (11:00 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:11:47 +0000 (12:11 +0200)
gettext-runtime/intl/ChangeLog
gettext-runtime/intl/Makefile.in

index 4268c6299ec1b33ccdf9a77274aceb035e857c9c..27564980e9069197f1d3acf5f84b9fcb03315873 100644 (file)
@@ -1,3 +1,9 @@
+2004-02-02  Bruno Haible  <bruno@clisp.org>
+
+       * Makefile.in (install-exec, installdirs, uninstall): Install
+       preloaded_libintl.so only on glibc systems, not on OpenBSD.
+       Reported by Han Boetes <han@mijncomputer.nl>.
+
 2004-01-29  Bruno Haible  <bruno@clisp.org>
 
        * gettext-0.14.1 released.
index 05f15329e128451829583726899fd5189797d7d7..a9a6cade398eaf2668bef85cca6c655576bd0078 100644 (file)
@@ -1,5 +1,5 @@
 # Makefile for directory with message catalog handling library of GNU gettext
-# Copyright (C) 1995-1998, 2000-2003 Free Software Foundation, Inc.
+# Copyright (C) 1995-1998, 2000-2004 Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify it
 # under the terms of the GNU Library General Public License as published
@@ -271,7 +271,8 @@ install-exec: all
          : ; \
        fi
        if test "$(PACKAGE)" = "gettext-tools" \
-          && test '@USE_INCLUDED_LIBINTL@' = no; then \
+          && test '@USE_INCLUDED_LIBINTL@' = no \
+          && test @GLIBC2@ != no; then \
          $(mkinstalldirs) $(DESTDIR)$(libdir); \
          $(LIBTOOL) --mode=install \
            $(INSTALL_DATA) libgnuintl.$la $(DESTDIR)$(libdir)/libgnuintl.$la; \
@@ -346,7 +347,8 @@ installdirs:
          : ; \
        fi
        if test "$(PACKAGE)" = "gettext-tools" \
-          && test '@USE_INCLUDED_LIBINTL@' = no; then \
+          && test '@USE_INCLUDED_LIBINTL@' = no \
+          && test @GLIBC2@ != no; then \
          $(mkinstalldirs) $(DESTDIR)$(libdir); \
        else \
          : ; \
@@ -376,7 +378,8 @@ uninstall:
          : ; \
        fi
        if test "$(PACKAGE)" = "gettext-tools" \
-          && test '@USE_INCLUDED_LIBINTL@' = no; then \
+          && test '@USE_INCLUDED_LIBINTL@' = no \
+          && test @GLIBC2@ != no; then \
          rm -f $(DESTDIR)$(libdir)/preloadable_libintl.so; \
        else \
          : ; \