jberry 2005/05/08 14:56:42
Modified: c/src/xercesc runConfigure
Log:
Modify runConfigure to accept the names of C++ compilers that it doesn't
recongnize, with an appropriate warning to the user.
There is no reason we should accept only canonical forms of names. Accepting
a broader variety lets the user specify special compiler versions that may be
named differently, such as 'gcc-3.3'.
Revision Changes Path
1.45 +4 -2 xml-xerces/c/src/xercesc/runConfigure
Index: runConfigure
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/runConfigure,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- runConfigure 5 May 2005 09:32:40 -0000 1.44
+++ runConfigure 8 May 2005 21:56:42 -0000 1.45
@@ -650,12 +650,14 @@
CXX="aCC"
CXXVER="aCC05"
;;
+
'')
echo "C++ compiler not specified...we'll assume that configure will
find it..."
;;
*)
- echo "I do not recognize the C++ compiler '$cppcompiler'. Continuing
anyway..."
+ echo "I do not recognize the C++ compiler '$cppcompiler', but don't
worry, 'cause I'm trusting you..."
+ CXX="$cppcompiler"
;;
esac
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]