On Thu, 5 Oct 2000, Bruce Korb wrote:
>
> Either the include file name must use double quotes,
> or the build directory must have a ``-I'' option pointing
> to it:
>
> > cc -DHAVE_CONFIG_H -I.. -I../../libguile/.. -I../../libltdl \
> > -g -c ../../libguile/alloca.c -KPIC -DPIC -o .libs/alloca.lo
> > UX:acomp: ERROR: "../../libguile/alloca.c", line 28: \
> > cannot find include file: <scmconfig.h>
> > make[1]: *** [alloca.lo] Error 1
> > make[1]: Leaving directory `/home/bkorb/tools/guile/guile-1.4/=build/libguile'
> > make: *** [all-recursive] Error 1
The following patch should solve the problem. It's also in cvs
now. Thanks for the bug report.
diff -u -r1.8 alloca.c
--- alloca.c 2000/04/21 14:16:30 1.8
+++ alloca.c 2000/10/12 07:52:11
@@ -25,7 +25,7 @@
[EMAIL PROTECTED], http://www.cs.washington.edu/homes/gjb */
#ifdef HAVE_CONFIG_H
-#include <scmconfig.h>
+#include "libguile/scmconfig.h"
#endif
#ifdef HAVE_STRING_H
Best regards
Dirk
_______________________________________________
Bug-guile mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-guile