diff options
author | tron <tron@pkgsrc.org> | 2001-08-11 23:14:46 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-08-11 23:14:46 +0000 |
commit | a9ff3ded3bfd4c881310edbc0b6e212edfd15b68 (patch) | |
tree | 7d690b18058117340b5f9b8d9e9bc553d9761ade /chat | |
parent | b9a0798e678c89b9f2db10c36d4632104fa8e356 (diff) | |
download | pkgsrc-a9ff3ded3bfd4c881310edbc0b6e212edfd15b68.tar.gz |
Fix build problem reported by Martin Husemann in PR pkg/13680 by manually
adding "-lintl" to another "Makefile.in".
Diffstat (limited to 'chat')
-rw-r--r-- | chat/xchat/distinfo | 3 | ||||
-rw-r--r-- | chat/xchat/patches/patch-ae | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/chat/xchat/distinfo b/chat/xchat/distinfo index 6358aef0785..080a5bf5cbf 100644 --- a/chat/xchat/distinfo +++ b/chat/xchat/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.4 2001/08/07 14:57:57 tron Exp $ +$NetBSD: distinfo,v 1.5 2001/08/11 23:14:46 tron Exp $ SHA1 (xchat-1.8.2.tar.bz2) = 18fa80ddfe4863e92a03afbf5ea4302c82b14308 Size (xchat-1.8.2.tar.bz2) = 618960 bytes @@ -6,3 +6,4 @@ SHA1 (patch-aa) = d870e35dae1fdfe976cbe9572146438ae0620dd3 SHA1 (patch-ab) = 141689091f4533456050b1ab931af9390945d81f SHA1 (patch-ac) = 10dce1c565b8d95fd6b4941ddb1fbf7bb82e52ed SHA1 (patch-ad) = cfc8885c4de11a426739638b32d661d458e8915e +SHA1 (patch-ae) = 49e7b9283fb6f499dedd123bdac3d2571e4ef44a diff --git a/chat/xchat/patches/patch-ae b/chat/xchat/patches/patch-ae new file mode 100644 index 00000000000..b9c3e90950b --- /dev/null +++ b/chat/xchat/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.1 2001/08/11 23:14:46 tron Exp $ + +--- src/fe-gtk/Makefile.in.orig Sun Aug 12 01:05:18 2001 ++++ src/fe-gtk/Makefile.in Sun Aug 12 01:09:32 2001 +@@ -104,7 +104,7 @@ + bin_PROGRAMS = xchat + + CFLAGS = $(GUI_CFLAGS) +-LIBS = $(GUI_LIBS) ++LIBS = $(GUI_LIBS) -lintl + + INCLUDES = -I$(includedir) + |