aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
authorpav <pav@FreeBSD.org>2004-02-29 01:56:39 +0800
committerpav <pav@FreeBSD.org>2004-02-29 01:56:39 +0800
commit64fef98fb9f1bbe3bf53c0ad9385eb31f66416a3 (patch)
tree0eb6b838d75a5dcb04efd306259a8ea97c47e811 /multimedia
parent132bb447f6582d2fc685f8cf3054d89063b9d071 (diff)
downloadfreebsd-ports-gnome-64fef98fb9f1bbe3bf53c0ad9385eb31f66416a3.tar.gz
freebsd-ports-gnome-64fef98fb9f1bbe3bf53c0ad9385eb31f66416a3.tar.zst
freebsd-ports-gnome-64fef98fb9f1bbe3bf53c0ad9385eb31f66416a3.zip
- Fix WITH_SSE option
PR: ports/63505 Submitted by: michael johnson <ahze@ahze.net> Pointy hat to: pav
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/libfame/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/libfame/Makefile b/multimedia/libfame/Makefile
index 0d45dac33ca1..3c6dfa7b70da 100644
--- a/multimedia/libfame/Makefile
+++ b/multimedia/libfame/Makefile
@@ -18,7 +18,7 @@ COMMENT= A video encoding library
USE_LIBTOOL= yes
INSTALLS_SHLIB= yes
-.if !defined(WITH_SSE)
+.if defined(WITH_SSE)
CONFIGURE_ARGS+= --enable-sse
.endif
@@ -33,7 +33,7 @@ MAN3= fame_close.3 fame_encode_frame.3 fame_get_object.3 fame_init.3 \
fame_start_frame.3 fame_end_frame.3
pre-everything::
-.if !defined(WITHOUT_SSE)
+.if !defined(WITH_SSE)
@${ECHO_MSG} " You can enable SSE optimized routines by defining WITH_SSE."
@${ECHO_MSG} ""
.endif