diff options
author | jlam <jlam> | 2002-11-26 06:50:20 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-11-26 06:50:20 +0000 |
commit | ca9281681009e50044a1ea5db9103e80e109c67c (patch) | |
tree | c8c880f81ac006bdbf1a570d4897df4d7d84d05f | |
parent | 6323fa5775c1a8dfb8a7933d969d84ed42a2655d (diff) | |
download | pkgsrc-ca9281681009e50044a1ea5db9103e80e109c67c.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.
-rw-r--r-- | devel/popt/distinfo | 4 | ||||
-rw-r--r-- | devel/popt/patches/patch-ab | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/devel/popt/distinfo b/devel/popt/distinfo index dccaaebf4c3..e3543cc9512 100644 --- a/devel/popt/distinfo +++ b/devel/popt/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2002/10/19 18:08:59 martti Exp $ +$NetBSD: distinfo,v 1.10 2002/11/26 06:50:20 jlam Exp $ SHA1 (popt-1.7.tar.gz) = 66f3c77b87a160951b180447f4a6dce68ad2f71b Size (popt-1.7.tar.gz) = 574549 bytes SHA1 (patch-aa) = e4fe1bf5bfd717faf8233a22300869121827af6c -SHA1 (patch-ab) = b267b75c778a93148aceb3ab4fe85141e6333375 +SHA1 (patch-ab) = 7c9ad516baeb6343dfc21f8611f132592575d084 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 |