tags 342581 + patch thanks Attached is a patch to Makefile to fix the problem. Perhaps the output of uname -m change which triggered a latent bug.
-- Blars Blarson [EMAIL PROTECTED] http://www.blars.org/blars.html With Microsoft, failure is not an option. It is a standard feature.
--- Makefile 2005-12-09 00:57:46.000000000 +0000 +++ ../../orig/gradm2-2.1.7/Makefile 2005-12-09 00:43:01.000000000 +0000 @@ -22,7 +22,7 @@ FIND=/usr/bin/find STRIP=/usr/bin/strip LIBS := $(shell if [ "`uname -m`" != "sparc64" ]; then echo "-lfl" ; else echo "" ; fi) -OPT_FLAGS := $(shell if [ "`uname -m`" != "x86_64" ]; then echo "-O2" ; else echo "-O2 -m64" ; fi) +OPT_FLAGS := $(shell if [ "`uname -m`" != "sparc64" ] && [ "`uname -m`" != "x86_64" ]; then echo "-O2" ; else echo "-O2 -m64" ; fi) CFLAGS := $(OPT_FLAGS) -DGRSEC_DIR=\"$(GRSEC_DIR)\" LDFLAGS= INSTALL = /usr/bin/install -c