diff options
Diffstat (limited to 'patches/dmalloc/5.5.2/120-g++_check.patch')
-rw-r--r-- | patches/dmalloc/5.5.2/120-g++_check.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/patches/dmalloc/5.5.2/120-g++_check.patch b/patches/dmalloc/5.5.2/120-g++_check.patch deleted file mode 100644 index a8f76f5a..00000000 --- a/patches/dmalloc/5.5.2/120-g++_check.patch +++ /dev/null @@ -1,17 +0,0 @@ -Correctly check for g++ existence. - -Copyright 2007 Yann E. MORIN <yann.morin.1998@anciens.enib.fr> -Licensed to you as dmalloc-5.5.2 is. - -diff -dur dmalloc-5.5.2.orig/configure dmalloc-5.5.2/configure ---- dmalloc-5.5.2.orig/configure 2007-05-18 11:40:31.000000000 +0200 -+++ dmalloc-5.5.2/configure 2007-05-18 11:42:02.000000000 +0200 -@@ -2643,7 +2643,7 @@ - - - # see if we actually have a CXX program --if test "$ac_cv_prog_CXX" = "" -o ! -x "$ac_cv_prog_CXX"; then -+if test "$ac_cv_prog_CXX" = "" -o ! -x `which "$ac_cv_prog_CXX"`; then - { echo "$as_me:$LINENO: WARNING: could not find C++ compiler $ac_cv_prog_CXX" >&5 - echo "$as_me: WARNING: could not find C++ compiler $ac_cv_prog_CXX" >&2;} - enable_cxx=no |