Just a minor niggle - the Makefile should define CC, otherwise make uses
its default to build the objects. In my case, configure detected gcc
but then make tried to compile using cc.
Regards,
Colin Hogben
--- Makefile.in.orig 2006-03-15 17:08:51.000000000 +0000
+++ Makefile.in 2006-03-15 17:59:31.771000000 +0000
(at)(at) -26,6 +26,8 (at)(at)
#
# $Id: Makefile.in,v 2.0 2006/02/01 11:45:32 roseg Rel roseg $
+CC=(at)CC(at)
+
CFLAGS=-DF_CONF=\"$(F_CONF)\" -DVERSION=\"`cat VERSION`\" (at)CFLAGS(at)
(at)CPPFLAGS(at)
LIBS=(at)LIBS(at)
|