diff options
author | green <green@FreeBSD.org> | 2000-11-22 11:15:30 +0800 |
---|---|---|
committer | green <green@FreeBSD.org> | 2000-11-22 11:15:30 +0800 |
commit | bbcfef9cebd78bfeaa922be4ebd96ac46e99c33a (patch) | |
tree | 6546ff10edb3fa0f2b069e2085aea7ece773b22d /emulators | |
parent | 4284140beb9c8e33620873fef2e2879f7ceff3d3 (diff) | |
download | freebsd-ports-gnome-bbcfef9cebd78bfeaa922be4ebd96ac46e99c33a.tar.gz freebsd-ports-gnome-bbcfef9cebd78bfeaa922be4ebd96ac46e99c33a.tar.zst freebsd-ports-gnome-bbcfef9cebd78bfeaa922be4ebd96ac46e99c33a.zip |
Actually have CFLAGS do something. Previously, the emulator has been
compiling with no optimization!!
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/snes9x/files/patch-aa | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/snes9x/files/patch-aa b/emulators/snes9x/files/patch-aa index 4bf161cb863e..2329a7cc493a 100644 --- a/emulators/snes9x/files/patch-aa +++ b/emulators/snes9x/files/patch-aa @@ -38,7 +38,7 @@ #-DMITSHM -CCFLAGS = $(OPTIMISE) -DMITSHM \ -+CCFLAGS = -fomit-frame-pointer -DMITSHM \ ++CCFLAGS = $(CFLAGS) -fomit-frame-pointer -DMITSHM \ -Ii386 \ -I. \ -Iunzip \ @@ -70,7 +70,7 @@ #-DSPC700_SHUTDOWN -CFLAGS=$(CCFLAGS) -+CFLAGS+=$(CCFLAGS) ++#CFLAGS=$(CCFLAGS) .SUFFIXES: .o .cpp .c .cc .h .m .i .S .asm -LDLIBS = -L/usr/X11R6/lib frame.o |