On Wed, 7 Nov 2012, Allin Cottrell wrote: > It has been pointed out to me that "make check" fails for the gretl 1.9.10 > release. This is not a substantive failure, it's a bug in the build process > for the checker program. And this is now fixed in CVS. I'll post a small > patch that fixes the issue for the released code before long.
The patch, which can be applied to the 1.9.10 source as released, is attached. Allin Cottrell
--- tests/Makefile.in.orig 2012-11-07 11:04:51.959428384 -0500 +++ tests/Makefile.in 2012-11-07 09:43:31.097431909 -0500 @@ -7,6 +7,9 @@ CFLAGS = @CFLAGS@ XML_CFLAGS = @XML_CFLAGS@ XML_LIBS = @XML_LIBS@ +GLIB_CFLAGS = @GLIB_CFLAGS@ +GLIB_LIBS = @GLIB_LIBS@ + SSE2_OPT = @SSE2_CFLAGS@ OMP_OPT = @OPENMP_CFLAGS@ @@ -25,10 +28,10 @@ all: nistcheck nistcheck: nistcheck.o $(LIBGRETL) - ../libtool --mode=link $(CCO) -o $@ $< $(LIBGRETL) $(XML_LIBS) + ../libtool --mode=link $(CCO) -o $@ $< $(LIBGRETL) $(XML_LIBS) $(GLIB_LIBS) nistcheck.o: nistcheck.c - $(CCO) $(CFLAGS) $(XML_CFLAGS) -c $< + $(CCO) $(CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS) -c $< .PHONY :
