configure.in and makefile.in changes to (hopefully) fix include paths issues on mingw

This commit is contained in:
rossb 2011-11-10 03:01:11 +00:00
commit 3d8db8375a
2 changed files with 20 additions and 15 deletions

View file

@ -18,7 +18,8 @@ libdir = @libdir@
includedir = @includedir@
CC = @CC@
CXX = @CXX@
CFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src/common -I$(top_srcdir)/src/os/unix @CFLAGS@ @DEFS@
# note platform include directories are added to CFLAGS in configure.in
CFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src/common @CFLAGS@ @DEFS@
LIBS = @LIBS@
AR = @AR@
RANLIB = @RANLIB@