patches/dmalloc/5.5.2/120-g++_check.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 27 14:28:36 2008 +0000 (2008-07-27)
branch1.2
changeset 739 8ebf5ea601d8
permissions -rw-r--r--
Backport #876 from trunk:
Re-enable the restart functionality by removing some variables from the saved environment.

/branches/1.2/scripts/functions | 16 10 6 0 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
     1 Correctly check for g++ existence.
     2 
     3 Copyright 2007 Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
     4 Licensed to you as dmalloc-5.5.2 is.
     5 
     6 diff -dur dmalloc-5.5.2.orig/configure dmalloc-5.5.2/configure
     7 --- dmalloc-5.5.2.orig/configure	2007-05-18 11:40:31.000000000 +0200
     8 +++ dmalloc-5.5.2/configure	2007-05-18 11:42:02.000000000 +0200
     9 @@ -2643,7 +2643,7 @@
    10  
    11  
    12  # see if we actually have a CXX program
    13 -if test "$ac_cv_prog_CXX" = "" -o ! -x "$ac_cv_prog_CXX"; then
    14 +if test "$ac_cv_prog_CXX" = "" -o ! -x `which "$ac_cv_prog_CXX"`; then
    15      { echo "$as_me:$LINENO: WARNING: could not find C++ compiler $ac_cv_prog_CXX" >&5
    16  echo "$as_me: WARNING: could not find C++ compiler $ac_cv_prog_CXX" >&2;}
    17      enable_cxx=no