]> sourceware.org Git - newlib-cygwin.git/commitdiff
* profile/configure.in: Make msvcrt.dll version default.
authorEarnie Boyd <earnie@users.sf.net>
Mon, 11 Jun 2001 18:57:39 +0000 (18:57 +0000)
committerEarnie Boyd <earnie@users.sf.net>
Mon, 11 Jun 2001 18:57:39 +0000 (18:57 +0000)
* profile/makefile.in: Build both gcrt1.o and gcrt2.o.
* provile/configure: Regenerate.

winsup/mingw/ChangeLog
winsup/mingw/profile/Makefile.in
winsup/mingw/profile/configure
winsup/mingw/profile/configure.in

index bd136f2c365a441608f01360c0d812c498a4ee3f..1afa120b54d29c27c8191069e8c599f547207757 100644 (file)
@@ -1,4 +1,10 @@
 
+2001-06-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
+
+       * profile/configure.in: Make msvcrt.dll version default.
+       * profile/makefile.in: Build both gcrt1.o and gcrt2.o.  
+       * provile/configure: Regenerate.
+
 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
 
        * include/stdio.h (swscanf): Make first arugument const. 
index 396ff20feadc2707fd30ab947fcf4802fbc2a184..d8825269fa371c1d9a8850d5d2311c1663aa397b 100644 (file)
@@ -65,7 +65,7 @@ DLLTOOL_FLAGS = --as $(AS_FOR_TARGET)
 
 LIBGMON_A = @LIBGMON_A@
 LIBGMON_OBJS = gmon.o mcount.o profil.o
-CRT0S = gcrt$(CRT_ID).o
+CRT0S = gcrt1.o gcrt2.o
 
 LIBS = $(LIBGMON_A)
 DLLS = 
index 7d5b92b220345722167793116cdb4e40d1ca7e11..cc3dcfeac3592726c76b9713d798978d7e71ebb4 100755 (executable)
@@ -646,18 +646,18 @@ test "$host_alias" != "$target_alias" &&
 
 
 case "$target_os" in
-*mingw32msvc*)
-  CRT_ID=2
+*mingw32crt*)
+  CRT_ID=1
   MNO_CYGWIN=
-  RUNTIME=msvcrt
-  THREAD_DLL=mingwm
+  RUNTIME=crtdll
+  THREAD_DLL=mingwc
   LIBM_A=libm.a
   LIBGMON_A=libgmon.a
   ;;
 *cygwin*)
-  CRT_ID=1
+  CRT_ID=2
   MNO_CYGWIN=-mno-cygwin
-  RUNTIME=crtdll
+  RUNTIME=msvcrt
   THREAD_DLL=mingwc
   # Do not build libm.a when building under Cygwin winsup. Otherwise, it'll
   # overwrite Cygwin's one. Likewise for libgmon.a.
@@ -665,11 +665,11 @@ case "$target_os" in
   LIBGMON_A=
   ;;
 *)
-  # Build it for CRTDLL by default.
-  CRT_ID=1
+  # Build it for MSVCRT by default.
+  CRT_ID=2
   MNO_CYGWIN=
-  RUNTIME=crtdll
-  THREAD_DLL=mingwc
+  RUNTIME=msvcrt
+  THREAD_DLL=mingwm
   LIBM_A=libm.a
   LIBGMON_A=libgmon.a
   ;;
index 8f2846e705e041051318b94c5c14eb6f45228b6f..4f41536b9c2ba69630c17a159bbc22ef2d6d19dc 100644 (file)
@@ -16,7 +16,7 @@ dnl You should have received a copy of the GNU General Public License
 dnl along with this program; if not, write to the Free Software
 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
-AC_PREREQ(2.12)
+AC_PREREQ(2.13)
 AC_INIT(gcrt0.c)
 
 CC=${CC-cc}
@@ -36,18 +36,18 @@ AC_SUBST(DLLWRAP)
 AC_CANONICAL_SYSTEM
 
 case "$target_os" in
-*mingw32msvc*)
-  CRT_ID=2
+*mingw32crt*)
+  CRT_ID=1
   MNO_CYGWIN=
-  RUNTIME=msvcrt
-  THREAD_DLL=mingwm
+  RUNTIME=crtdll
+  THREAD_DLL=mingwc
   LIBM_A=libm.a
   LIBGMON_A=libgmon.a
   ;;
 *cygwin*)
-  CRT_ID=1
+  CRT_ID=2
   MNO_CYGWIN=-mno-cygwin
-  RUNTIME=crtdll
+  RUNTIME=msvcrt
   THREAD_DLL=mingwc
   # Do not build libm.a when building under Cygwin winsup. Otherwise, it'll
   # overwrite Cygwin's one. Likewise for libgmon.a.
@@ -55,11 +55,11 @@ case "$target_os" in
   LIBGMON_A=
   ;;
 *)
-  # Build it for CRTDLL by default.
-  CRT_ID=1
+  # Build it for MSVCRT by default.
+  CRT_ID=2
   MNO_CYGWIN=
-  RUNTIME=crtdll
-  THREAD_DLL=mingwc
+  RUNTIME=msvcrt
+  THREAD_DLL=mingwm
   LIBM_A=libm.a
   LIBGMON_A=libgmon.a
   ;;
This page took 0.038098 seconds and 5 git commands to generate.