auriemma 01/01/25 11:06:19
Modified: c/src Makefile.in
Log:
Removed spaces from include directive for solaris.
Revision Changes Path
1.24 +6 -3 xml-xalan/c/src/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/Makefile.in,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- Makefile.in 2001/01/18 23:23:56 1.23
+++ Makefile.in 2001/01/25 19:06:14 1.24
@@ -55,6 +55,9 @@
#
#
# $Log: Makefile.in,v $
+# Revision 1.24 2001/01/25 19:06:14 auriemma
+# Removed spaces from include directive for solaris.
+#
# Revision 1.23 2001/01/18 23:23:56 dbertoni
# Bumped up Xerces library number.
#
@@ -235,7 +238,7 @@
endif
SUPPORTED = TRUE
-PLATFORM_COMPILE_OPTIONS = -D${PLATFORM} -D_THREAD_SAFE -I
${STLPORTROOT}/stlport
+PLATFORM_COMPILE_OPTIONS = -D${PLATFORM} -D_THREAD_SAFE
-I${STLPORTROOT}/stlport
ALLLIBS = ${LIBS} -L/usr/lib
SHLIBSUFFIX=.a
CC1 = $(CXX) $(CXXFLAGS) $(PLATFORM_COMPILE_OPTIONS)
@@ -263,11 +266,11 @@
# We have to use the includes from the source distribution, since we use
# headers that others normally wouldn't
-XSL_INCL = -I . -I $(XERCESCROOT)/src/ -I $(XERCESCROOT)/include/
+XSL_INCL = -I. -I$(XERCESCROOT)/src/ -I$(XERCESCROOT)/include/
# We need the ICU library if we are using the ICUBridge
ifdef XALAN_USE_ICU
-XSL_INCL += -I /usr/local/include/
+XSL_INCL += -I/usr/local/include/
XSL_BUILD_OPTIONS += -DXALAN_USE_ICU
endif