From 5f36d94d9d8b4b27287156b494853ccea4a5c1bf Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Sun, 8 Nov 2009 22:39:10 +0000 Subject: Set -DPREFIX for yasm simply whenever extern_prefix is set instead of hardcoding it based on the object format. Originally committed as revision 20478 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure') diff --git a/configure b/configure index ba59e523ce..65c15280d2 100755 --- a/configure +++ b/configure @@ -2232,10 +2232,10 @@ EOF YASMFLAGS="-f $objformat -DARCH_$(toupper $subarch)" enabled x86_64 && append YASMFLAGS "-m amd64" enabled pic && append YASMFLAGS "-DPIC" + test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX" case "$objformat" in elf) enabled debug && append YASMFLAGS "-g dwarf2" ;; - macho64) append YASMFLAGS "-DPIC -DPREFIX" ;; - *) append YASMFLAGS "-DPREFIX" ;; + macho64) append YASMFLAGS "-DPIC" ;; esac disabled yasm || { check_yasm "pabsw xmm0, xmm0" && enable yasm; } -- cgit v1.2.3