diff options
author | jlam <jlam@pkgsrc.org> | 2002-11-26 06:50:20 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-11-26 06:50:20 +0000 |
commit | 74de443f283e02b1c4ddda8223b825ec04a60635 (patch) | |
tree | c8c880f81ac006bdbf1a570d4897df4d7d84d05f /devel/popt/patches | |
parent | 54e690e8f02ebfd542371a31bf7c9d02e122e411 (diff) | |
download | pkgsrc-74de443f283e02b1c4ddda8223b825ec04a60635.tar.gz |
Don't force the use of "-lintl"...use "$(LIBINTL)" instead, which may be
empty on some systems that provide gettext() functions directly in libc.
Fix by Jeremy Reed <reed@reedmedia.net> in PR 19171.
Diffstat (limited to 'devel/popt/patches')
-rw-r--r-- | devel/popt/patches/patch-ab | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/popt/patches/patch-ab b/devel/popt/patches/patch-ab index 36393ae5846..f11d011b3c4 100644 --- a/devel/popt/patches/patch-ab +++ b/devel/popt/patches/patch-ab @@ -1,4 +1,4 @@ -$NetBSD: patch-ab,v 1.3 2002/10/19 18:08:59 martti Exp $ +$NetBSD: patch-ab,v 1.4 2002/11/26 06:50:22 jlam Exp $ --- Makefile.in.orig Sat Oct 19 18:32:02 2002 +++ Makefile.in Sat Oct 19 19:07:20 2002 @@ -7,15 +7,15 @@ $NetBSD: patch-ab,v 1.3 2002/10/19 18:08:59 martti Exp $ test1_SOURCES = test1.c test1_LDFLAGS = -all-static -test1_LDADD = $(lib_LTLIBRARIES) -+test1_LDADD = $(lib_LTLIBRARIES) -lintl ++test1_LDADD = $(lib_LTLIBRARIES) $(LIBINTL) test2_SOURCES = test2.c test2_LDFLAGS = -all-static -test2_LDADD = $(lib_LTLIBRARIES) -+test2_LDADD = $(lib_LTLIBRARIES) -lintl ++test2_LDADD = $(lib_LTLIBRARIES) $(LIBINTL) test3_SOURCES = test3.c test3_LDFLAGS = -all-static -test3_LDADD = $(lib_LTLIBRARIES) -+test3_LDADD = $(lib_LTLIBRARIES) -lintl ++test3_LDADD = $(lib_LTLIBRARIES) $(LIBINTL) noinst_SCRIPTS = testit.sh |