On 05 Jul 2003 12:08:25 +0200, Harald Dunkel wrote: > > I would suggest to use "cc -E $CFLAGS" instead of "cc -E" during > configure. $CFLAGS might contain some -I flags pointing to include > directories to search for xpm.h or png.h, for example.
What is the actual problem? I have no time to test it now, but I would think all of these may work: CFLAGS="-O5 -g" ./configure --something CC="cc -E -O5 -g" ./configure --something ./configure --something CFLAGS="-O5 -g" ./configure --something CC="cc -E -O5 -g" This value should be propagated to "make", but you may also specify CC or CFLAGS for the make stage separately, like: make something CFLAGS="-O5 -g" See also INSTALL.fvwm for other hints (including Solaris). Regards, Mikhael. -- Visit the official FVWM web page at <URL: http://www.fvwm.org/>. To unsubscribe from the list, send "unsubscribe fvwm" in the body of a message to [EMAIL PROTECTED] To report problems, send mail to [EMAIL PROTECTED]
