diff options
author | Alexander Leidinger <netchild@FreeBSD.org> | 2003-12-22 15:40:52 +0000 |
---|---|---|
committer | Alexander Leidinger <netchild@FreeBSD.org> | 2003-12-22 15:40:52 +0000 |
commit | 09c56e9b42d241d58bd7d89e4fb57d4718a52aec (patch) | |
tree | c9b3f7b06f21ca2895288827cd23bada7a1e2653 /devel/stlport | |
parent | 6f67899da579d2a3c7724ac69d21df6ac3909111 (diff) | |
download | ports-09c56e9b42d241d58bd7d89e4fb57d4718a52aec.tar.gz ports-09c56e9b42d241d58bd7d89e4fb57d4718a52aec.zip |
Notes
Diffstat (limited to 'devel/stlport')
-rw-r--r-- | devel/stlport/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/stlport/Makefile b/devel/stlport/Makefile index ae8bfcfb0075..19c14ddba189 100644 --- a/devel/stlport/Makefile +++ b/devel/stlport/Makefile @@ -46,8 +46,9 @@ CXX= icpc CFLAGS= -O -ip -axiMKW CXXFLAGS= ${CFLAGS} .else -CFLAGS= -CXXFLAGS= +# There's segfault on -current if you use non default CFLAGS. +CFLAGS= -O -pipe +CXXFLAGS= ${CFLAGS} .endif .if ${COMPILER} == gcc && ${OSVERSION} < 460000 |