patches/dmalloc/5.5.2/120-g++_check.patch
author Jang, Bongseo <graycells@gmail.com>
Sun Sep 23 11:18:30 2012 +0900 (2012-09-23)
changeset 3058 2800ef0ff450
permissions -rw-r--r--
libc/eglibc: Split changeset 3052:06b663f297 into eglibc/libc and eglibc/ports patches

crosstool-ng's glibc patche is made against glibc/libc sub-dir.
changeset 3052:06b663f297 is against glibc top-dir. it needs to split.

Signed-off-by: "Jang, Bongseo" <graycells@gmail.com>
[yann.morin.1998@free.fr: fix the ports patches depth]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-ID: <5040c8e83e35618361dc.1348370890@localhost.localdomain>
PatchWork-ID: 186177
     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