diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2006-07-03 20:51:58 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2006-07-03 20:51:58 +0000 |
commit | 66e7d55998da761e3fef3dc5a2c442b13e3ab299 (patch) | |
tree | 6ae7ba09e8469f17c8de0f20e5a10c066d9aafe6 | |
parent | 4635b6ebd8eba1a7755f985db509aff8c3c06859 (diff) | |
download | cygnal-66e7d55998da761e3fef3dc5a2c442b13e3ab299.tar.gz cygnal-66e7d55998da761e3fef3dc5a2c442b13e3ab299.tar.bz2 cygnal-66e7d55998da761e3fef3dc5a2c442b13e3ab299.zip |
* mingwex/Makefile.in: Add -I$(srcdir)/.. to INCLUDES.
-rw-r--r-- | winsup/mingw/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/mingw/mingwex/Makefile.in | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index d7e85d351..94c9f55db 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,5 +1,9 @@ +2006-07-04 Danny Smith <dannysmith@users.sourceforge.net> + + * mingwex/Makefile.in: Add -I$(srcdir)/.. to INCLUDES. + 2006-07-03 Danny Smith <dannysmith@users.sourceforge.net> - + Support SSE float environment in fenv.h functions. * cpu_features.c: New file. * cpu_features.h: New file. diff --git a/winsup/mingw/mingwex/Makefile.in b/winsup/mingw/mingwex/Makefile.in index 651169d75..1b7609910 100644 --- a/winsup/mingw/mingwex/Makefile.in +++ b/winsup/mingw/mingwex/Makefile.in @@ -95,7 +95,7 @@ OPTFLAGS= -fomit-frame-pointer MNO_CYGWIN = @MNO_CYGWIN@ W32API_INCLUDE = @W32API_INCLUDE@ -INCLUDES = -I$(srcdir) -I$(srcdir)/../include \ +INCLUDES = -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../include \ -nostdinc \ -iwithprefixbefore include ALL_CFLAGS = $(CFLAGS) $(OPTFLAGS) $(W32API_INCLUDE) $(INCLUDES) $(MNO_CYGWIN) |