mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Don't hardcode CXX to g++, CXXFLAGS to -O3 and a bunch of -f optimizations
This port is still broken, but no worse than before
This commit is contained in:
parent
b7bae3d105
commit
c9235a7b47
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=42077
1 changed files with 18 additions and 0 deletions
18
audio/spiralloops/files/patch-Makefile.in
Normal file
18
audio/spiralloops/files/patch-Makefile.in
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
--- Makefile.in.orig Mon Apr 30 03:30:32 2001
|
||||||
|
+++ Makefile.in Mon Apr 30 03:30:56 2001
|
||||||
|
@@ -7,12 +7,10 @@
|
||||||
|
|
||||||
|
####### Compiler, tools and options
|
||||||
|
|
||||||
|
-CC = gcc
|
||||||
|
-CXX = g++
|
||||||
|
-CFLAGS = -pipe -Wall -O3 -ffast-math -DNO_DEBUG -Wno-unused -g
|
||||||
|
-CXXFLAGS= -pipe -Wall -O3 -ffast-math -DNO_DEBUG -Wno-unused -g
|
||||||
|
+CFLAGS += -Wall -DNO_DEBUG -Wno-unused -g
|
||||||
|
+CXXFLAGS+= -Wall -DNO_DEBUG -Wno-unused -g
|
||||||
|
INCPATH = -I/usr/X11R6/include
|
||||||
|
-LINK = g++
|
||||||
|
+LINK = ${CXX}
|
||||||
|
LFLAGS =
|
||||||
|
LIBS = -L/usr/X11R6/lib -lfltk -lGL -lXext -lX11 -lm
|
||||||
|
MOC = moc
|
Loading…
Add table
Reference in a new issue