bug-guile
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[FIXED:] Misspelled include file name


From: Dirk Herrmann
Subject: [FIXED:] Misspelled include file name
Date: Thu, 12 Oct 2000 09:59:05 +0200 (MEST)

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 @@
    address@hidden, 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]