mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
485b37699f
commit
c08754f47a
2 changed files with 7 additions and 1 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue