|
From: Braden M. <br...@en...> - 2001-11-04 21:34:11
|
On Sun, 2001-11-04 at 15:26, Oliver Strutynski wrote:
> I had to add some small patches to OpenVRML 0.11.2 to make it compile and
> link on Mac OSX 10.1. Here are the diffs
I'm definitely interested in patches to get the GNU build working on Mac
OS X, but the source files for configure have changed substantially in
the main branch in CVS. Your patches are not applicable to the current
version.
> Add to configure.in:
>
> dnl
> dnl Some additional Darwin stuff
> dnl
> AM_CONDITIONAL(DARWIN, test "$host" = "powerpc-apple-darwin1.4")
> if test "DARWIN"; then
> LDFLAGS="${LDFLAGS} -lobjc -framework OpenGL -framework Foundation"
> CFLAGS="${CFLAGS} -lobjc -framework OpenGL -framework Foundation"
> CXXFLAGS="${CXXFLAGS} -lobjc -framework OpenGL -framework Foundation"
> fi
LDFLAGS, CFLAGS, ands CXXFLAGS are user variables which should not be
set in configure. Also, I don't see anything in your patches that
modifies the automake makefiles, so I'm not sure why you're using an
automake conditional here.
--
Braden McDaniel e-mail: <br...@en...>
<http://endoframe.com> Jabber: <br...@ja...>
|