From d0e01d94fa30a348c01e1cf155ca1827a6c017af Mon Sep 17 00:00:00 2001 From: Stu Grossman Date: Tue, 8 Oct 1996 15:36:18 +0000 Subject: [PATCH] * configure.in config/mh-windows: Add support for windows host (that is a build done under the Microsoft build environment). --- ChangeLog | 5 +++++ config/mh-windows | 4 ++++ configure.in | 1 + 3 files changed, 10 insertions(+) create mode 100644 config/mh-windows diff --git a/ChangeLog b/ChangeLog index 643860ef10..6f0be42863 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com) + + * configure.in config/mh-windows: Add support for windows host + (that is a build done under the Microsoft build environment). + Tue Oct 8 10:39:08 1996 Ian Lance Taylor * Makefile.in: Replace all uses of srcroot with s, to shrink diff --git a/config/mh-windows b/config/mh-windows new file mode 100644 index 0000000000..e5f606c333 --- /dev/null +++ b/config/mh-windows @@ -0,0 +1,4 @@ +CC=cc +CFLAGS= +RANLIB=true +AR_FLAGS= diff --git a/configure.in b/configure.in index ccbb8bbffc..763055e613 100644 --- a/configure.in +++ b/configure.in @@ -133,6 +133,7 @@ case "${host}" in i[3456]86-*-aix*) host_makefile_frag=config/mh-aix386 ;; i[3456]86-*-go32*) host_makefile_frag=config/mh-go32 ;; *-cygwin32*) host_makefile_frag=config/mh-cygwin32 ;; + *-windows*) host_makefile_frag=config/mh-windows ;; vax-*-ultrix2*) host_makefile_frag=config/mh-vaxult2 ;; *-*-solaris2*) host_makefile_frag=config/mh-solaris ;; m68k-sun-sunos*) host_makefile_frag=config/mh-sun3 ;; -- 2.34.1