lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

LYNX-DEV Problem with makefile in 271ac0100


From: Mark Mentovai
Subject: LYNX-DEV Problem with makefile in 271ac0100
Date: Tue, 16 Dec 1997 15:29:37 -0500

I've discovered a glitch in the makefile supplied with Lynx 2.7.1ac-0.100.
I don't think this problem affects 0.98, but I may be mistaken.  The
problem - makefile (makefile.in, actually) currently contains instructions
that look like this:

all lynx:
        cd WWW/Library/unix && $(MAKE) CC="$(CC)" \
                LY_CFLAGS="$(CFLAGS)"
                CPPFLAGS="$(CPPFLAGS)" \
                LYFLAGS="$(SITE_LYDEFS)"

That causes the CPPFLAGS and SITE_LYDEFS to -NOT- get passed on for
building libwww, due to the lack of a backslash after LY_CFLAGS is passed.
That could be a problem.  The solution to this is simple: put it back in.

all lynx:
        cd WWW/Library/unix && $(MAKE) CC="$(CC)" \
                LY_CFLAGS="$(CFLAGS)" \
                CPPFLAGS="$(CPPFLAGS)" \
                LYFLAGS="$(SITE_LYDEFS)"

I'm happily awaiting the release of 2.8!

-Mox

--
Mark Mentovai
address@hidden
http://www.moxienet.com/

reply via email to

[Prev in Thread] Current Thread [Next in Thread]