Don't attempt to build SSL on mingw32

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22674 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2006-03-17 16:44:54 +00:00
parent 8065e653d5
commit cec107b9fc
2 changed files with 7 additions and 1 deletions

View file

@ -2,6 +2,8 @@
* Source/cifframe.h: Add code to try to get ffi muld to work on
mingw32
* GNUmakefile: Don't build SSL subproject for mingw32 as it
doesn't work.
2006-03-17 Andrew Sveikauskas <asveikau@mail.rochester.edu>

View file

@ -52,7 +52,11 @@ PACKAGE_NAME = gnustep-base
#
# The list of subproject directories
#
SUBPROJECTS = Source SSL Tools NSTimeZones Resources
SUBPROJECTS = Source
ifneq ($(GNUSTEP_TARGET_OS), mingw32)
SUBPROJECTS += SSL
endif
SUBPROJECTS += Tools NSTimeZones Resources
-include Makefile.preamble