Force shared operation under windoze

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@13073 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2002-03-10 10:03:19 +00:00
parent d91ef8a3e3
commit d1d474fae6
2 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2002-03-10 Richard Frith-Macdonald <rfm@gnu.org>
* target.make: Force shared=yes for cygwin and mingw as stuff simply
doesn't work under windows when built static.
Sat Mar 9 09:52:51 2002 Adam Fedor <fedor@yogi.doc.com>
* configure.in: Move HOST_INSTALL so that prefix is defined before

View file

@ -889,11 +889,10 @@ endif
# Mingw32
#
ifeq ($(findstring mingw32, $(GNUSTEP_TARGET_OS)), mingw32)
shared = yes
HAVE_SHARED_LIBS = yes
ifeq ($(shared), yes)
BUILD_DLL = yes
WITH_DLL = yes
endif
SHARED_LIBEXT = .a
DLL_LIBEXT = .dll
DLLTOOL = dlltool
@ -918,11 +917,10 @@ endif
# Cygwin
#
ifeq ($(findstring cygwin, $(GNUSTEP_TARGET_OS)), cygwin)
shared = yes
HAVE_SHARED_LIBS = yes
ifeq ($(shared), yes)
BUILD_DLL = yes
WITH_DLL = yes
endif
SHARED_LIBEXT = .a
DLL_LIBEXT = .dll
DLLTOOL = dlltool