You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ga...@apache.org on 2007/08/21 10:03:50 UTC

svn commit: r568001 - /xerces/c/branches/xerces-2.7/samples/SEnumVal/Makefile.in

Author: gareth
Date: Tue Aug 21 01:03:49 2007
New Revision: 568001

URL: http://svn.apache.org/viewvc?rev=568001&view=rev
Log:
Add a conition for g++ on Solaris. Thanks to Boris Kolpackov.

Modified:
    xerces/c/branches/xerces-2.7/samples/SEnumVal/Makefile.in

Modified: xerces/c/branches/xerces-2.7/samples/SEnumVal/Makefile.in
URL: http://svn.apache.org/viewvc/xerces/c/branches/xerces-2.7/samples/SEnumVal/Makefile.in?rev=568001&r1=568000&r2=568001&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/samples/SEnumVal/Makefile.in (original)
+++ xerces/c/branches/xerces-2.7/samples/SEnumVal/Makefile.in Tue Aug 21 01:03:49 2007
@@ -93,8 +93,13 @@
 
 ## SOLARIS
 ifeq (${PLATFORM}, SOLARIS)
+ifneq (${GXX}, yes)
 $(OUTDIR)/SEnumVal.o:: ${SRC}/SEnumVal.cpp ${HEADER_FILES}
 	${CC} ${INCLUDES} ${CMP} -ptr${OUTDIR} -o $(OUTDIR)/SEnumVal.o ${SRC}/SEnumVal.cpp
+else
+$(OUTDIR)/SEnumVal.o:: ${SRC}/SEnumVal.cpp ${HEADER_FILES}
+	${CC} ${INCLUDES} ${CMP} -o $(OUTDIR)/SEnumVal.o ${SRC}/SEnumVal.cpp
+endif
 else
 $(OUTDIR)/SEnumVal.o:: ${SRC}/SEnumVal.cpp ${HEADER_FILES}
 	${CC} ${INCLUDES} ${CMP} -o $(OUTDIR)/SEnumVal.o ${SRC}/SEnumVal.cpp



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org