Thanks,
Blake
Index: target.make
===================================================================
--- target.make (revision 26339)
+++ target.make (working copy)
@@ -343,6 +343,10 @@
ifeq ($(findstring darwin7, $(GNUSTEP_TARGET_OS)), darwin7)
DYLIB_EXTRA_FLAGS += -Wl,-single_module
endif
+# suppress deprecation warnings on OS X 10.5 (Leopard)
+ifeq ($(findstring darwin9, $(GNUSTEP_TARGET_OS)), darwin9)
+ INTERNAL_OBJCFLAGS += -Wno-deprecated-declarations
+endif
SHARED_LIB_LINK_CMD = \
$(CC) $(SHARED_LD_PREFLAGS) \
_______________________________________________
Gnustep-dev mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnustep-dev
The following patch modifies target.make so that it adds the compiler
option -Wno-deprecated-declarations when compiling GNUstep on Mac OS X
10.5 (Leopard) using Apple's GCC. Is this kind of wholesale disabling
of warnings okay, or should this be done on an individual GNUmakefile
level?
- PATCH: suppress deprecation warnings on OS X Leopard Blake Nicholson
- Fwd: PATCH: suppress deprecation warnings on OS X Leo... Blake Nicholson
- Re: PATCH: suppress deprecation warnings on OS X ... Nicola Pero
- Re: PATCH: suppress deprecation warnings on O... Blake Nicholson
- Re: PATCH: suppress deprecation warnings ... Nicola Pero
- Re: PATCH: suppress deprecation warn... Nicola Pero
- Re: PATCH: suppress deprecation ... Blake Nicholson
- Re: PATCH: suppress deprecat... Nicola Pero
- Re: PATCH: suppress deprecation ... Tim McIntosh
- Re: PATCH: suppress deprecat... David Ayers
- Re: PATCH: suppress deprecat... Tim McIntosh
