diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-04-17 20:50:55 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-04-17 20:50:55 +0300 |
commit | 2cc5fc89122ca058bccb2f9652b4b4c1f89f7be6 (patch) | |
tree | 9a21129e46225369ad2493ad8a515e3ac9c0b8fe | |
parent | 0238ddd5dfd879ca5f87b1e0ba17783b648dbffd (diff) | |
download | egawk-2cc5fc89122ca058bccb2f9652b4b4c1f89f7be6.tar.gz egawk-2cc5fc89122ca058bccb2f9652b4b4c1f89f7be6.tar.bz2 egawk-2cc5fc89122ca058bccb2f9652b4b4c1f89f7be6.zip |
Fix extensions to link with LTLIBINTL.
-rw-r--r-- | extension/ChangeLog | 5 | ||||
-rw-r--r-- | extension/Makefile.am | 2 | ||||
-rw-r--r-- | extension/Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/extension/ChangeLog b/extension/ChangeLog index 950c6cea..b893ee13 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -1,3 +1,8 @@ +2013-04-17 Corinna Vinschen <vinschen@redhat.com> + + * Makefile.am (MY_LIBS): Use $(LTLIBINTL) since we use libtool, + not LIBINTL. + 2013-04-16 Arnold D. Robbins <arnold@skeeve.com> * filefuncs.c, fnmatch.c, fork.c, ordchr.c, readdir.c, readfile.c, diff --git a/extension/Makefile.am b/extension/Makefile.am index d0484977..b51b6c06 100644 --- a/extension/Makefile.am +++ b/extension/Makefile.am @@ -47,7 +47,7 @@ pkgextension_LTLIBRARIES = \ MY_MODULE_FLAGS = -module -avoid-version -no-undefined # on Cygwin, gettext requires that we link with -lintl -MY_LIBS = $(LIBINTL) +MY_LIBS = $(LTLIBINTL) filefuncs_la_SOURCES = filefuncs.c stack.h stack.c gawkfts.h \ gawkfts.c gawkdirfd.h diff --git a/extension/Makefile.in b/extension/Makefile.in index 84be8439..1bd4750b 100644 --- a/extension/Makefile.in +++ b/extension/Makefile.in @@ -502,7 +502,7 @@ pkgextension_LTLIBRARIES = \ MY_MODULE_FLAGS = -module -avoid-version -no-undefined # on Cygwin, gettext requires that we link with -lintl -MY_LIBS = $(LIBINTL) +MY_LIBS = $(LTLIBINTL) filefuncs_la_SOURCES = filefuncs.c stack.h stack.c gawkfts.h \ gawkfts.c gawkdirfd.h |