1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

- Fix WITH_SSE option

PR:		ports/63505
Submitted by:	michael johnson <ahze@ahze.net>
Pointy hat to:	pav
This commit is contained in:
Pav Lucistnik 2004-02-28 17:56:39 +00:00
parent c554f2fc75
commit afb84dd726
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=102433

View File

@ -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