Author: rfm
Date: Thu May 19 09:27:26 2016
New Revision: 39780

URL: http://svn.gna.org/viewcvs/gnustep?rev=39780&view=rev
Log:
mingw64 tweaks

Modified:
    libs/base/trunk/ChangeLog
    libs/base/trunk/GNUmakefile
    libs/base/trunk/Source/Additions/Makefile.preamble
    libs/base/trunk/Source/ObjectiveC2/Makefile.preamble
    libs/base/trunk/Source/unix/Makefile.preamble
    libs/base/trunk/Source/win32/Makefile.preamble

Modified: libs/base/trunk/ChangeLog
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/ChangeLog?rev=39780&r1=39779&r2=39780&view=diff
==============================================================================
--- libs/base/trunk/ChangeLog   (original)
+++ libs/base/trunk/ChangeLog   Thu May 19 09:27:26 2016
@@ -1,3 +1,12 @@
+2016-05-19 Seong Gu Lee <[email protected]>
+
+       * GNUmakefile:
+       * Source/Additions/Makefile.preamble:
+       * Source/ObjectiveC2/Makefile.preamble:
+       * Source/unix/Makefile.preamble:
+       * Source/win32/Makefile.preamble:
+       mingw64 tweaks
+
 2016-05-18  Richard Frith-Macdonald <[email protected]>
 
        * Source/NSPredicate.m: attempt fix for bug #47619

Modified: libs/base/trunk/GNUmakefile
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/GNUmakefile?rev=39780&r1=39779&r2=39780&view=diff
==============================================================================
--- libs/base/trunk/GNUmakefile (original)
+++ libs/base/trunk/GNUmakefile Thu May 19 09:27:26 2016
@@ -73,7 +73,9 @@
 SUBPROJECTS = Source
 ifeq ($(GNUSTEP_BASE_HAVE_GNUTLS), 0)
 ifneq ($(GNUSTEP_TARGET_OS), mingw32)
-  SUBPROJECTS += SSL
+  ifneq ($(GNUSTEP_TARGET_OS), mingw64)
+    SUBPROJECTS += SSL
+  endif
 endif
 endif
 SUBPROJECTS += Tools NSTimeZones Resources Tests

Modified: libs/base/trunk/Source/Additions/Makefile.preamble
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Source/Additions/Makefile.preamble?rev=39780&r1=39779&r2=39780&view=diff
==============================================================================
--- libs/base/trunk/Source/Additions/Makefile.preamble  (original)
+++ libs/base/trunk/Source/Additions/Makefile.preamble  Thu May 19 09:27:26 2016
@@ -48,8 +48,9 @@
 
 ifeq ($(GNUSTEP_TARGET_OS),mingw32)
   ADDITIONAL_OBJCFLAGS += -DBUILD_libgnustep_base_DLL=1
-endif
-ifeq ($(GNUSTEP_TARGET_OS),cygwin)
+else ifeq ($(GNUSTEP_TARGET_OS),mingw64)
+  ADDITIONAL_OBJCFLAGS += -DBUILD_libgnustep_base_DLL=1
+else ifeq ($(GNUSTEP_TARGET_OS),cygwin)
   ADDITIONAL_OBJCFLAGS += -DBUILD_libgnustep_base_DLL=1
 endif
 

Modified: libs/base/trunk/Source/ObjectiveC2/Makefile.preamble
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Source/ObjectiveC2/Makefile.preamble?rev=39780&r1=39779&r2=39780&view=diff
==============================================================================
--- libs/base/trunk/Source/ObjectiveC2/Makefile.preamble        (original)
+++ libs/base/trunk/Source/ObjectiveC2/Makefile.preamble        Thu May 19 
09:27:26 2016
@@ -47,8 +47,9 @@
 
 ifeq ($(GNUSTEP_TARGET_OS),mingw32)
   ADDITIONAL_OBJCFLAGS += -DBUILD_libgnustep_base_DLL=1
-endif
-ifeq ($(GNUSTEP_TARGET_OS),cygwin)
+else ifeq ($(GNUSTEP_TARGET_OS),mingw64)
+  ADDITIONAL_OBJCFLAGS += -DBUILD_libgnustep_base_DLL=1
+else ifeq ($(GNUSTEP_TARGET_OS),cygwin)
   ADDITIONAL_OBJCFLAGS += -DBUILD_libgnustep_base_DLL=1
 endif
 

Modified: libs/base/trunk/Source/unix/Makefile.preamble
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Source/unix/Makefile.preamble?rev=39780&r1=39779&r2=39780&view=diff
==============================================================================
--- libs/base/trunk/Source/unix/Makefile.preamble       (original)
+++ libs/base/trunk/Source/unix/Makefile.preamble       Thu May 19 09:27:26 2016
@@ -47,8 +47,9 @@
 
 ifeq ($(GNUSTEP_TARGET_OS),mingw32)
   ADDITIONAL_OBJCFLAGS += -DBUILD_libgnustep_base_DLL=1
-endif
-ifeq ($(GNUSTEP_TARGET_OS),cygwin)
+else ifeq ($(GNUSTEP_TARGET_OS),mingw64)
+  ADDITIONAL_OBJCFLAGS += -DBUILD_libgnustep_base_DLL=1
+else ifeq ($(GNUSTEP_TARGET_OS),cygwin)
   ADDITIONAL_OBJCFLAGS += -DBUILD_libgnustep_base_DLL=1
 endif
 

Modified: libs/base/trunk/Source/win32/Makefile.preamble
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Source/win32/Makefile.preamble?rev=39780&r1=39779&r2=39780&view=diff
==============================================================================
--- libs/base/trunk/Source/win32/Makefile.preamble      (original)
+++ libs/base/trunk/Source/win32/Makefile.preamble      Thu May 19 09:27:26 2016
@@ -47,8 +47,9 @@
 
 ifeq ($(GNUSTEP_TARGET_OS),mingw32)
   ADDITIONAL_OBJCFLAGS += -DBUILD_libgnustep_base_DLL=1
-endif
-ifeq ($(GNUSTEP_TARGET_OS),cygwin)
+else ifeq ($(GNUSTEP_TARGET_OS),mingw64)
+  ADDITIONAL_OBJCFLAGS += -DBUILD_libgnustep_base_DLL=1
+else ifeq ($(GNUSTEP_TARGET_OS),cygwin)
   ADDITIONAL_OBJCFLAGS += -DBUILD_libgnustep_base_DLL=1
 endif
 


_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to