comparison configure @ 27677:6fd5be1615a7

100l: Revert incorrect removal or --ar and --ranlib options. They are still needed for FFmpeg.
author diego
date Sat, 04 Oct 2008 12:24:18 +0000
parents 67fc228e59d7
children 88f790280c77
comparison
equal deleted inserted replaced
27676:67fc228e59d7 27677:6fd5be1615a7
407 --enable-runtime-cpudetection enable runtime CPU detection [disable] 407 --enable-runtime-cpudetection enable runtime CPU detection [disable]
408 --enable-cross-compile enable cross-compilation [autodetect] 408 --enable-cross-compile enable cross-compilation [autodetect]
409 --cc=COMPILER C compiler to build MPlayer [gcc] 409 --cc=COMPILER C compiler to build MPlayer [gcc]
410 --host-cc=COMPILER C compiler for tools needed while building [gcc] 410 --host-cc=COMPILER C compiler for tools needed while building [gcc]
411 --as=ASSEMBLER assembler to build MPlayer [as] 411 --as=ASSEMBLER assembler to build MPlayer [as]
412 --ar=AR librarian to build MPlayer [ar]
413 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
412 --windres=WINDRES windres to build MPlayer [windres] 414 --windres=WINDRES windres to build MPlayer [windres]
413 --target=PLATFORM target platform (i386-linux, arm-linux, etc) 415 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
414 --enable-static build a statically linked binary 416 --enable-static build a statically linked binary
415 --charset=charset convert the console messages to this character set 417 --charset=charset convert the console messages to this character set
416 --language=list a white space or comma separated list of languages for 418 --language=list a white space or comma separated list of languages for
484 _armvfp=auto 486 _armvfp=auto
485 _iwmmxt=auto 487 _iwmmxt=auto
486 _mtrr=auto 488 _mtrr=auto
487 _altivec=auto 489 _altivec=auto
488 _install=install 490 _install=install
491 _ranlib=ranlib
489 _windres=windres 492 _windres=windres
490 _cc=cc 493 _cc=cc
494 _ar=ar
491 test "$CC" && _cc="$CC" 495 test "$CC" && _cc="$CC"
492 _as=auto 496 _as=auto
493 _runtime_cpudetection=no 497 _runtime_cpudetection=no
494 _cross_compile=auto 498 _cross_compile=auto
495 _prefix="/usr/local" 499 _prefix="/usr/local"
784 --host-cc=*) 788 --host-cc=*)
785 _host_cc=`echo $ac_option | cut -d '=' -f 2` 789 _host_cc=`echo $ac_option | cut -d '=' -f 2`
786 ;; 790 ;;
787 --as=*) 791 --as=*)
788 _as=`echo $ac_option | cut -d '=' -f 2` 792 _as=`echo $ac_option | cut -d '=' -f 2`
793 ;;
794 --ar=*)
795 _ar=`echo $ac_option | cut -d '=' -f 2`
796 ;;
797 --ranlib=*)
798 _ranlib=`echo $ac_option | cut -d '=' -f 2`
789 ;; 799 ;;
790 --windres=*) 800 --windres=*)
791 _windres=`echo $ac_option | cut -d '=' -f 2` 801 _windres=`echo $ac_option | cut -d '=' -f 2`
792 ;; 802 ;;
793 --charset=*) 803 --charset=*)
1373 1383
1374 if aix ; then 1384 if aix ; then
1375 _ld_extra="$_ld_extra -lC" 1385 _ld_extra="$_ld_extra -lC"
1376 fi 1386 fi
1377 1387
1388 if irix ; then
1389 _ranlib='ar -r'
1390 elif linux ; then
1391 _ranlib='true'
1392 fi
1393
1378 if win32 ; then 1394 if win32 ; then
1379 _exesuf=".exe" 1395 _exesuf=".exe"
1380 # -lwinmm is always needed for osdep/timer-win2.c 1396 # -lwinmm is always needed for osdep/timer-win2.c
1381 _ld_extra="$_ld_extra -lwinmm" 1397 _ld_extra="$_ld_extra -lwinmm"
1382 _pe_executable=yes 1398 _pe_executable=yes
7751 BINDIR = \$(DESTDIR)$_bindir 7767 BINDIR = \$(DESTDIR)$_bindir
7752 DATADIR = \$(DESTDIR)$_datadir 7768 DATADIR = \$(DESTDIR)$_datadir
7753 MANDIR = \$(DESTDIR)$_mandir 7769 MANDIR = \$(DESTDIR)$_mandir
7754 CONFDIR = \$(DESTDIR)$_confdir 7770 CONFDIR = \$(DESTDIR)$_confdir
7755 7771
7772 AR = $_ar
7756 CC = $_cc 7773 CC = $_cc
7757 CXX = $_cc 7774 CXX = $_cc
7758 HOST_CC = $_host_cc 7775 HOST_CC = $_host_cc
7759 INSTALL = $_install 7776 INSTALL = $_install
7760 INSTALLSTRIP = $_install_strip 7777 INSTALLSTRIP = $_install_strip
7778 RANLIB = $_ranlib
7761 WINDRES = $_windres 7779 WINDRES = $_windres
7762 7780
7763 EXTRA_INC = $_inc_extra 7781 EXTRA_INC = $_inc_extra
7764 EXTRAXX_INC = $_inc_extra $_inc_extraxx 7782 EXTRAXX_INC = $_inc_extra $_inc_extraxx
7765 CFLAGS = $CFLAGS \$(EXTRA_INC) 7783 CFLAGS = $CFLAGS \$(EXTRA_INC)