diff options
author | Måns Rullgård <mans@mansr.com> | 2005-12-11 00:45:33 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2005-12-11 00:45:33 +0000 |
commit | 9261e3eb4ecbb94a6e75faebea20cbba2425d436 (patch) | |
tree | 4022d2f5c363bf8fa136ae77d01cdfbca2bdd9d5 | |
parent | f6d1338cb5ca056021a3628e2f15b9b68e70301d (diff) | |
download | ffmpeg-9261e3eb4ecbb94a6e75faebea20cbba2425d436.tar.gz |
alpha needs -fPIC for shared libs
Originally committed as revision 4732 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1184,7 +1184,7 @@ fi if test "$lshared" = "yes" ; then # LIBOBJFLAGS may have already been set in the OS configuration if test -z "$LIBOBJFLAGS" ; then - if test "$cpu" = "x86_64" -o "$cpu" = "ia64" ; then + if test "$cpu" = "x86_64" -o "$cpu" = "ia64" -o "$cpu" = "alpha" ; then LIBOBJFLAGS="\$(PIC)" fi fi |