# HG changeset patch # User diego # Date 1204566625 0 # Node ID 3eedbd7321ea86f6d4ddf04594da1ba5452cb71f # Parent cc7bc19e3166b08db21a51bcf8955fd7cf4fb59a Add CFLAG_STACKREALIGN unconditionally to win32.o CFLAGS, configure takes care of setting it only when necessary anyway. diff -r cc7bc19e3166 -r 3eedbd7321ea loader/Makefile --- a/loader/Makefile Mon Mar 03 12:38:33 2008 +0000 +++ b/loader/Makefile Mon Mar 03 17:50:25 2008 +0000 @@ -11,8 +11,6 @@ # QTX emulation is not supported in Darwin ifneq ($(TARGET_OS),Darwin) SRCS_COMMON += wrapper.S -else -win32.o: CFLAGS += $(CFLAG_STACKREALIGN) endif endif @@ -34,6 +32,7 @@ include ../mpcommon.mak CFLAGS+=-fno-omit-frame-pointer $(CFLAG_NO_OMIT_LEAF_FRAME_POINTER) +win32.o: CFLAGS += $(CFLAG_STACKREALIGN) TEST_OBJS = $(LIBNAME_COMMON) ../cpudetect.o ../mp_msg.o ../mp_fifo.o ../osdep/libosdep.a TEST_LDFLAGS = -ltermcap -ldl -lm -lpthread -g