r383 - trunk/code/tools/lcc

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Nov 28 04:50:55 EST 2005


Author: icculus
Date: 2005-11-28 04:50:55 -0500 (Mon, 28 Nov 2005)
New Revision: 383

Modified:
   trunk/code/tools/lcc/Makefile
Log:

Must explicitly define MACOS_X here or lcc won't build on the Mac.



Modified: trunk/code/tools/lcc/Makefile
===================================================================
--- trunk/code/tools/lcc/Makefile	2005-11-27 20:01:09 UTC (rev 382)
+++ trunk/code/tools/lcc/Makefile	2005-11-28 09:50:55 UTC (rev 383)
@@ -26,6 +26,11 @@
   CC := ccache $(CC)
 endif
 
+# Need MACOS_X defined or this won't build.
+ifeq ($(PLATFORM),darwin)
+  LCC_CFLAGS += -DMACOS_X
+endif
+
 ifeq ($(PLATFORM),SunOS)
   INSTALL=ginstall
 else




More information about the quake3-commits mailing list