summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorCollin Funk <collin.funk1@gmail.com>2024-07-02 18:04:21 -0700
committerReuben Thomas <rrt@sc3d.org>2024-07-03 13:03:35 +0300
commit24225d705684322f482135e8a2d679485fce0811 (patch)
tree2c3eb8cec15366d408e74e858a045b81a5065112 /Makefile.am
parentf0dab33af133c2df48ba23a8392a151616d88272 (diff)
maint: remove the obsolete gettext modulemaster
* bootstrap.conf (gnulib_modules): Remove gettext. Use the gettext-h module instead. * Makefile.am (hello_LDADD): Update libraries according to current ./bootstrap invocation.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 427910c..d0f4a11 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -37,7 +37,14 @@ SUBDIRS = po
bin_PROGRAMS = hello
hello_SOURCES = src/hello.c src/system.h
-hello_LDADD = $(LIBINTL) $(top_builddir)/lib/lib$(PACKAGE).a
+hello_LDADD = $(top_builddir)/lib/lib$(PACKAGE).a \
+ $(HARD_LOCALE_LIB) \
+ $(LIBC32CONV) \
+ $(LIBICONV) \
+ $(LIBINTL) \
+ $(LIBUNISTRING) \
+ $(MBRTOWC_LIB) \
+ $(SETLOCALE_NULL_LIB)
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@