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

This commit is contained in:
Ryan C. Gordon 2005-11-28 09:50:55 +00:00
parent 5a14f87be4
commit 807ba08558

View file

@ -26,6 +26,11 @@ ifeq ($(USE_CCACHE),1)
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