Commit 5e1ffd02 authored by Sean McGovern's avatar Sean McGovern Committed by Jean-Baptiste Kempf

ffmpeg: don't force Intel Core 2 optimizations if not building 64-bit on Solaris

Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
(cherry picked from commit 97fc89290b0279c826232b816e5ba5c334283d79)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 8ea2a889
......@@ -136,7 +136,10 @@ FFMPEGCONF += --enable-pthreads
endif
ifdef HAVE_SOLARIS
FFMPEGCONF += --cpu=core2 --enable-pic
ifeq ($(ARCH),x86_64)
FFMPEGCONF += --cpu=core2
endif
FFMPEGCONF += --enable-pic
endif
# Build
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment