diff options
author | andreas <andreas@FreeBSD.org> | 1997-08-23 13:43:43 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1997-08-23 13:43:43 +0000 |
commit | 695697e95fd689fa6b00fbaf3d79ea9a83a32751 (patch) | |
tree | f856ce41028afdc4cb2bd962ce2e36aedeeb6f4a /editors/vim6 | |
parent | 63084c82de7dfe124ccde4a3d60a7abb3b9ecd15 (diff) | |
download | FreeBSD-ports-695697e95fd689fa6b00fbaf3d79ea9a83a32751.zip FreeBSD-ports-695697e95fd689fa6b00fbaf3d79ea9a83a32751.tar.gz |
vim didn't find lesstif's libXm library, since lesstif
doesn't build and install a static library libXm.a.
Diffstat (limited to 'editors/vim6')
-rw-r--r-- | editors/vim6/files/patch-02 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/vim6/files/patch-02 b/editors/vim6/files/patch-02 new file mode 100644 index 0000000..13e801d --- /dev/null +++ b/editors/vim6/files/patch-02 @@ -0,0 +1,11 @@ +--- configure.orig Sat Aug 23 15:28:24 1997 ++++ configure Sat Aug 23 15:29:56 1997 +@@ -1995,7 +1995,7 @@ + echo "configure:1996: checking for location of Motif GUI libs" >&5 + GUI_LIB_LOC= + for try in $gui_libs; do +- if test -f "$try/libXm.a" -o -f "$try/libXm.so" -o -f "$try/libXm.sl"; then ++ if test -f "$try/libXm.a" -o -f "$try/libXm.so.0.1" -o -f "$try/libXm.sl"; then + GUI_LIB_LOC=$try + if test "`(uname) 2>/dev/null`" = SunOS && + uname -r | grep '^5' >/dev/null; then |