From: <il...@us...> - 2003-11-24 07:05:20
|
Update of /cvsroot/meshdb/src/geo In directory sc8-pr-cvs1:/tmp/cvs-serv21264 Modified Files: Makefile.inc Log Message: Make compat includes explicit so as to avoid masking the real headers when we want them i.e. force a #include compat/err.h so we can #include <err.h> to pick up the platform's err.h. Index: Makefile.inc =================================================================== RCS file: /cvsroot/meshdb/src/geo/Makefile.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.inc 15 Sep 2002 12:58:29 -0000 1.2 +++ Makefile.inc 24 Nov 2003 07:04:46 -0000 1.3 @@ -10,7 +10,7 @@ LIBGEO = ${_CURDIR}/../libgeo${_OBJDIR}/libgeo.a LDADD_GEO= -lgeo -lm -CFLAGS+= -I${_CURDIR}/../compat +CFLAGS+= -I${_CURDIR}/.. DBDIR?= /www/public/users/mesh/db2 BINDIR?= ${DBDIR}/bin |