Change location of GC headers as seen by the C source code

This commit is contained in:
jjgarcia 2005-10-27 17:04:06 +00:00
parent a4f608d4b2
commit 7914b23b54
3 changed files with 4 additions and 11 deletions

View file

@ -9,7 +9,8 @@ VPATH = @srcdir@
#
TRUE_CC = @CC@
CC = @CC@
CFLAGS = -c -I. -I$(srcdir) -I$(HDIR) -I../h @CPPFLAGS@ @CFLAGS@ @ECL_CFLAGS@ \
CFLAGS = -c -I. -I$(srcdir) -I$(srcdir)/gc -I$(HDIR) -I../h @CPPFLAGS@ @CFLAGS@ \
@ECL_CFLAGS@ \
# -Wall -W -Wfloat-equal -Wundef -Wendif-labels -Wpointer-arith -Wcast-align \
# -Wwrite-strings -Wconversion -Wsign-compare -Wmissing-prototypes -Wredundant-decls \
# -Wunreachable-code -Winline

View file

@ -62,11 +62,7 @@ typedef unsigned short uint16_t;
#include <object.h>
#include <stacks.h>
#ifdef GBC_BOEHM
# ifdef _MSC_VER
# include <gc.h>
# else
# include <gc/gc.h>
# endif
# include <gc.h>
#endif
#include <external.h>
#include <eval.h>

View file

@ -68,11 +68,7 @@ typedef unsigned short uint16_t;
# define _ARGS(x) x
#endif
#ifdef GBC_BOEHM
# ifdef _MSC_VER
# include <gc.h>
# else
# include <gc/gc.h>
# endif
# include <gc.h>
#endif
#include <external.h>
/*#include "ecl-inl.h"*/