diff options
author | hubertf <hubertf@pkgsrc.org> | 2001-07-26 16:54:43 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2001-07-26 16:54:43 +0000 |
commit | 1d14255dfd5fda4ee74322b4a23c60897f4bd61c (patch) | |
tree | bb1e0e0c859b506f9ed49ab9d5201296a109eb3c /news | |
parent | 04f42d04861a24ecd2f9682dda1b37095478cb88 (diff) | |
download | pkgsrc-1d14255dfd5fda4ee74322b4a23c60897f4bd61c.tar.gz |
Try building slrn with a LOCALBASE!=/usr/pkg -> *boom*
slrn looks for libslang in /usr/pkg by default, and doesn't know about
looking in other locations. Use $PREFIX instead of /usr/pkg now.
Found while compiling this on Solaris (w/o Zoularis, of course :)
Diffstat (limited to 'news')
-rw-r--r-- | news/slrn/patches/patch-aa | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/news/slrn/patches/patch-aa b/news/slrn/patches/patch-aa new file mode 100644 index 00000000000..31e986411f0 --- /dev/null +++ b/news/slrn/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.6 2001/07/26 16:54:43 hubertf Exp $ + +--- configure.orig Thu Jul 26 18:46:19 2001 ++++ configure Thu Jul 26 18:50:12 2001 +@@ -2058,7 +2058,7 @@ + /usr/local/lib \ + /usr/lib/slang \ + /usr/lib \ +- /usr/pkg/lib" ++ ${PREFIX}/lib" + + for slang_dir in $slang_library_dirs; do + if test -r $slang_dir/libslang.a || test -r $slang_dir/libslang.so; then +@@ -2126,7 +2126,7 @@ + /usr/local/include \ + /usr/include/slang \ + /usr/include \ +- /usr/pkg/include" ++ ${PREFIX}/include" + + for slang_dir in $slang_include_dirs; do + if test -r "$slang_dir/slang.h"; then |