diff options
author | jlam <jlam@pkgsrc.org> | 2006-04-08 05:02:39 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-04-08 05:02:39 +0000 |
commit | 31c1b1fd57d3e03943ededbbba0ec0d758384b5b (patch) | |
tree | ec382bb7f452f056e76859afd9a796d0f590d107 /x11/XaoS/patches | |
parent | fc3bb82c25cb42c32e87853e22bde85952e9a411 (diff) | |
download | pkgsrc-31c1b1fd57d3e03943ededbbba0ec0d758384b5b.tar.gz |
The GNU configure script is asked to check for libintl, but then it
never uses it unless it's the included one. Link against the correct
-lintl so that the build will not fail.
Diffstat (limited to 'x11/XaoS/patches')
-rw-r--r-- | x11/XaoS/patches/patch-ad | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/x11/XaoS/patches/patch-ad b/x11/XaoS/patches/patch-ad new file mode 100644 index 00000000000..5bb2de8023d --- /dev/null +++ b/x11/XaoS/patches/patch-ad @@ -0,0 +1,12 @@ +$NetBSD: patch-ad,v 1.1 2006/04/08 05:02:39 jlam Exp $ + +--- src/Makefile.in.orig 2003-02-10 17:42:28.000000000 -0500 ++++ src/Makefile.in +@@ -1,6 +1,6 @@ + CC = @CC@ + CFLAGS = @CFLAGS@ +-LIBS = @LIBS@ ++LIBS = @LIBS@ @INTLLIBS@ + LFLAGS = @LDFLAGS@ + AR = @AR@ + RANLIB = @RANLIB@ |