Update of /cvsroot/sbcl/sbcl/tools-for-build
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20230/tools-for-build
Modified Files:
grovel-headers.c
Log Message:
1.0.39.4: fix build on non-darwin and ppc/darwin platforms
* fix conditional include of langinfo.h
* conditionalize the darwin/ppc Config file for :dlshim
Index: grovel-headers.c
===================================================================
RCS file: /cvsroot/sbcl/sbcl/tools-for-build/grovel-headers.c,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- grovel-headers.c 3 Jun 2010 04:39:51 -0000 1.40
+++ grovel-headers.c 3 Jun 2010 14:43:15 -0000 1.41
@@ -38,6 +38,8 @@
#include <sys/termios.h>
#ifdef LISP_FEATURE_DARWIN
#include "../src/runtime/darwin-langinfo.h"
+ #else
+ #include <langinfo.h>
#endif
#ifdef LISP_FEATURE_DLSHIM
#include "../src/runtime/darwin-dlshim.h"
|