diff options
author | obrien <obrien@FreeBSD.org> | 1998-01-27 18:42:21 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1998-01-27 18:42:21 +0800 |
commit | 29e2ee2c0a3d1263f5f95467df5a1468d758932c (patch) | |
tree | dbd5125da681da3a8f205bba1c9c94369c51fead /editors/vim | |
parent | e1f5898874af928bf581df262656b5b35b89dcce (diff) | |
download | freebsd-ports-gnome-29e2ee2c0a3d1263f5f95467df5a1468d758932c.tar.gz freebsd-ports-gnome-29e2ee2c0a3d1263f5f95467df5a1468d758932c.tar.zst freebsd-ports-gnome-29e2ee2c0a3d1263f5f95467df5a1468d758932c.zip |
Add libXm.so.0.1 to search list of possible Motif libraries [for Lesstif?]
Requested by: Andreas Klemm <andreas@klemm.gtn.com>
Diffstat (limited to 'editors/vim')
-rw-r--r-- | editors/vim/files/patch-02 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/vim/files/patch-02 b/editors/vim/files/patch-02 new file mode 100644 index 000000000000..9bbbd708d835 --- /dev/null +++ b/editors/vim/files/patch-02 @@ -0,0 +1,11 @@ +--- configure.orig Tue Jan 20 12:15:36 1998 ++++ configure Tue Jan 27 02:39:35 1998 +@@ -2273,7 +2273,7 @@ + gui_libs="`echo $x_libraries|sed 's%/^/^/*$%%'` `echo "$GUI_INC_LOC" | sed s/include/lib/` /local/Motif*/lib /local/lib/Motif* /usr/local/Motif*/lib /usr/local/lib/Motif* /usr/Motif*/lib /usr/lib/Motif* /usr/local/lib /usr/local/X11*/lib /usr/lib /usr/X11*/lib /usr/lib/X11* /usr/dt/lib $MOTIFHOME/lib $GUI_LIB_LOC" + 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" -o -f "$try/libXm.so.0" -o -f "$try/libXm.so.0.1" -o -f "$try/libXm.sl"; then + GUI_LIB_LOC=$try + fi + done |