patches/dmalloc/5.5.2/120-g++_check.patch
author Arnaud Lacombe <lacombar@gmail.com>
Thu Aug 05 17:59:51 2010 +0200 (2010-08-05)
changeset 2069 366bd2b22675
permissions -rw-r--r--
complibs/mpc: fix MPC 0.8.1 build with MPFR 3.0.0

This is the change introduced by revision 734 of MPC repository.

Author: Paul Zimmermann <Paul.Zimmermann@loria.fr>
Revision log: [acos.c] fixed problem with GMP_RNDA (should be MPFR_RNDA, and code was wrong)

Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
     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