diff options
Diffstat (limited to 'app-editors/vim/files/6.1_patches.80.84.diff')
-rw-r--r-- | app-editors/vim/files/6.1_patches.80.84.diff | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/app-editors/vim/files/6.1_patches.80.84.diff b/app-editors/vim/files/6.1_patches.80.84.diff deleted file mode 100644 index 584d1e0064b1..000000000000 --- a/app-editors/vim/files/6.1_patches.80.84.diff +++ /dev/null @@ -1,27 +0,0 @@ -diff -urN /tmp/src/auto/configure src/auto/configure ---- /tmp/src/auto/configure Tue Sep 24 20:39:56 2002 -+++ src/auto/configure Tue Sep 24 20:40:22 2002 -@@ -1160,13 +1160,21 @@ - - - --if test -d /usr/local/lib; then -+have_local_include='' -+have_local_lib='' -+if test "$GCC" = yes; then -+ echo 'void f(){}' > conftest.c -+ have_local_include=`${CC-cc} -c -v conftest.c 2>&1 | grep '/usr/local/include'` -+ have_local_lib=`${CC-cc} -c -v conftest.c 2>&1 | grep '/usr/local/lib'` -+ rm -f conftest.c conftest.o -+fi -+if test -z "$have_local_lib" -a -d /usr/local/lib; then - tt=`echo "$LDFLAGS" | sed -e 's+-L/usr/local/lib ++g' -e 's+-L/usr/local/lib$++g'` - if test "$tt" = "$LDFLAGS"; then - LDFLAGS="$LDFLAGS -L/usr/local/lib" - fi - fi --if test -d /usr/local/include; then -+if test -z "$have_local_include" -a -d /usr/local/include; then - tt=`echo "$CPPFLAGS" | sed -e 's+-I/usr/local/include ++g' -e 's+-I/usr/local/include$++g'` - if test "$tt" = "$CPPFLAGS"; then - # Don't do this if gcc looks in /usr/local/include by default! gcc 3.1+ is rather |