diff options
author | wennmach <wennmach@pkgsrc.org> | 2000-09-05 08:38:13 +0000 |
---|---|---|
committer | wennmach <wennmach@pkgsrc.org> | 2000-09-05 08:38:13 +0000 |
commit | c264f0440f6cef7603fd141e9c4cdfba2565e82b (patch) | |
tree | dff9f5fa22eceef42627fb245485ed894e72cd81 /net | |
parent | 06ebd591d28144bba72cb706f3ee61694fd56691 (diff) | |
download | pkgsrc-c264f0440f6cef7603fd141e9c4cdfba2565e82b.tar.gz |
Do not alphabetically sort libraries to link with. This breaks xchat
on a.out. Fixes PR 10945.
Diffstat (limited to 'net')
-rw-r--r-- | net/xchat/patches/patch-ab | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net/xchat/patches/patch-ab b/net/xchat/patches/patch-ab new file mode 100644 index 00000000000..70408342a5a --- /dev/null +++ b/net/xchat/patches/patch-ab @@ -0,0 +1,21 @@ +$NetBSD: patch-ab,v 1.1 2000/09/05 08:38:13 wennmach Exp $ + +Do not alphabetically sort the GUI libs. This breaks xchat on a.out + +--- configure.orig Tue Sep 5 10:11:57 2000 ++++ configure Tue Sep 5 10:16:31 2000 +@@ -5808,14 +5808,6 @@ + tr "\n" " " < cflags2 > cflags + GUI_CFLAGS=`cat cflags` + +-echo $GUI_LIBS > cflags +-tr " " "\n" < cflags > cflags2 +-sort cflags2 > cflags +-uniq cflags > cflags2 +-tr "\n" " " < cflags2 > cflags +-GUI_LIBS=`cat cflags` +-rm -f cflags cflags2 +- + fi + fi + fi |