diff options
author | Bruno Haible <bruno@clisp.org> | 2000-07-26 19:17:23 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2000-07-26 19:17:23 +0000 |
commit | e8fce08ecfaa2b1a116e8be56ae58098d90c280b (patch) | |
tree | 76e0b4ff2fb535c569e76b69148002f77a9ca5a8 /intl | |
parent | 0110ece667fb4b62cbdcdf65110e8d52b57f6abc (diff) | |
download | external_gettext-e8fce08ecfaa2b1a116e8be56ae58098d90c280b.zip external_gettext-e8fce08ecfaa2b1a116e8be56ae58098d90c280b.tar.gz external_gettext-e8fce08ecfaa2b1a116e8be56ae58098d90c280b.tar.bz2 |
Introduce symbolic names for the libtool version number.
Diffstat (limited to 'intl')
-rw-r--r-- | intl/ChangeLog | 3 | ||||
-rw-r--r-- | intl/Makefile.in | 8 |
2 files changed, 10 insertions, 1 deletions
diff --git a/intl/ChangeLog b/intl/ChangeLog index e692037..527233e 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,5 +1,8 @@ 2000-07-26 Bruno Haible <haible@clisp.cons.org> + * Makefile.in (LTV_CURRENT, LTV_REVISION, LTV_AGE): New variables. + (libintl.la): Use them. + * Makefile.in (install-exec, install-data, uninstall): Provide DESTDIR support, as recommended by GNU standards. Fix misapplied 2000-06-16 patch. diff --git a/intl/Makefile.in b/intl/Makefile.in index f092a7f..e88fd19 100644 --- a/intl/Makefile.in +++ b/intl/Makefile.in @@ -76,6 +76,11 @@ xopen-msg.sed config.charset ref-add.sin ref-del.sin $(HEADERS) $(SOURCES) DISTFILES.normal = VERSION DISTFILES.gettext = libintl.glibc intlh.inst.in plural.c +# Libtool's library version information for libintl. +LTV_CURRENT=1 +LTV_REVISION=0 +LTV_AGE=0 + .SUFFIXES: .SUFFIXES: .y .c .o .lo .sin .sed .c.o: @@ -104,7 +109,8 @@ libintl.a: $(OBJECTS) libintl.la: $(OBJECTS) $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $@ $(OBJECTS) \ - -version-info 1:0 -rpath $(libdir) + -version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \ + -rpath $(libdir) ../po/cat-id-tbl.$lo: ../po/cat-id-tbl.c $(top_srcdir)/po/$(PACKAGE).pot cd ../po && $(MAKE) cat-id-tbl.$lo |