You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by John Conley <Jo...@usa.xerox.com> on 2002/03/28 19:40:43 UTC

Making a Solaris Build

Hi,

I'm trying to rebuild Xalan-C++ version 1.3 for Solaris 2.6 following
the instructions in the release notes. When running "make clean" I get 
the message 
  make: Fatal error in reader: Makefile, line 74: Unexpected end of
  line seen

Line 74 is the label "noxalanroot:" in the following.

ifndef XALANCROOT 
noxalanroot:
	@echo XALANCROOT must be defined
endif

I defined XALANCROOT, etc. 

Here are the diffs between Makefile and
Makefile.in:

< # Generated automatically from Makefile.in by configure.
133,137c132,136
< PLATFORM =SOLARIS
< CC  = cc
< CXX = CC
< CXXFLAGS =  -O -DNDEBUG  
< PREFIX = /usr/local
---
> PLATFORM =@platform@
> CC  = @cc@
> CXX = @cxx@
> CXXFLAGS = @cxxflags@
> PREFIX = @prefix@

Any idea what the problem is?

  --John Conley