Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEarnie Boyd <earnie@users.sf.net>2003-05-06 17:26:44 +0400
committerEarnie Boyd <earnie@users.sf.net>2003-05-06 17:26:44 +0400
commit42fbaad1e8c9f26bd92ddbb3248cc8bfd03db173 (patch)
tree83dd250a5952a0e50d3dd912269eeafb6bef22b3 /winsup/mingw/profile/configure.in
parentaf70a0ea40ac29f809b2efb1d5ec5e960219cbb6 (diff)
* configure.in (CFLAGS): Remove -D__USE_CRTIMP=1 due to possibilites
of multiply defined symbols if the symbols is defined locally. E.G.: A local definition of malloc causes this problem. * configure: Regenerate. * profile/Makefile.in (W32API_INCLUDE): New variable. (ALL_CFLAGS): Use W32API_INCLUDE value. (ALL_CXXFLAGS): Ditto. (gcrt0.o gcrt1.o gcrt2.o): Use ALL_CFLAGS instead of CFLAGS. Thanks to Jeff Bonggren <jbon@users.sf.net>. * profile/configure.in (W32API_INCLUDE): Set default value. * profile/configure: Regenerate. * mingwex/Makefile.in (W32API_INCLUDE): New variable. (ALL_CFLAGS): Use W32API-INCLUDE value. (ALL_CXXFLAGS): Ditto. * mingwex/configure.in (W32API_INCLUDE): Set default value. * mingwex/configure: Regenerate.
Diffstat (limited to 'winsup/mingw/profile/configure.in')
-rw-r--r--winsup/mingw/profile/configure.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/winsup/mingw/profile/configure.in b/winsup/mingw/profile/configure.in
index e688a67c6..2496c282e 100644
--- a/winsup/mingw/profile/configure.in
+++ b/winsup/mingw/profile/configure.in
@@ -61,11 +61,14 @@ case "$target_os" in
;;
esac
+W32API_INCLUDE='$(subdir)/../w32api/include'
+
AC_SUBST(CRT_ID)
AC_SUBST(RUNTIME)
AC_SUBST(MNO_CYGWIN)
AC_SUBST(LIBGMON_A)
AC_SUBST(CRT0S)
+AC_SUBST(W32API_INCLUDE)
AC_PROG_INSTALL
AC_OUTPUT(Makefile)