comparison configure @ 27670:d9d5ba3da7d0

Remove unused options --ar and --ranlib.
author diego
date Sat, 04 Oct 2008 10:53:28 +0000
parents f85ff39d7524
children 9ec6cc5d7017
comparison
equal deleted inserted replaced
27669:f85ff39d7524 27670:d9d5ba3da7d0
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]
414 --windres=WINDRES windres to build MPlayer [windres] 412 --windres=WINDRES windres to build MPlayer [windres]
415 --target=PLATFORM target platform (i386-linux, arm-linux, etc) 413 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
416 --enable-static build a statically linked binary 414 --enable-static build a statically linked binary
417 --charset=charset convert the console messages to this character set 415 --charset=charset convert the console messages to this character set
418 --language=list a white space or comma separated list of languages for 416 --language=list a white space or comma separated list of languages for
486 _armvfp=auto 484 _armvfp=auto
487 _iwmmxt=auto 485 _iwmmxt=auto
488 _mtrr=auto 486 _mtrr=auto
489 _altivec=auto 487 _altivec=auto
490 _install=install 488 _install=install
491 _ranlib=ranlib
492 _windres=windres 489 _windres=windres
493 _cc=cc 490 _cc=cc
494 _ar=ar
495 test "$CC" && _cc="$CC" 491 test "$CC" && _cc="$CC"
496 _as=auto 492 _as=auto
497 _runtime_cpudetection=no 493 _runtime_cpudetection=no
498 _cross_compile=auto 494 _cross_compile=auto
499 _prefix="/usr/local" 495 _prefix="/usr/local"
788 --host-cc=*) 784 --host-cc=*)
789 _host_cc=`echo $ac_option | cut -d '=' -f 2` 785 _host_cc=`echo $ac_option | cut -d '=' -f 2`
790 ;; 786 ;;
791 --as=*) 787 --as=*)
792 _as=`echo $ac_option | cut -d '=' -f 2` 788 _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`
799 ;; 789 ;;
800 --windres=*) 790 --windres=*)
801 _windres=`echo $ac_option | cut -d '=' -f 2` 791 _windres=`echo $ac_option | cut -d '=' -f 2`
802 ;; 792 ;;
803 --charset=*) 793 --charset=*)
1383 1373
1384 if aix ; then 1374 if aix ; then
1385 _ld_extra="$_ld_extra -lC" 1375 _ld_extra="$_ld_extra -lC"
1386 fi 1376 fi
1387 1377
1388 if irix ; then
1389 _ranlib='ar -r'
1390 elif linux ; then
1391 _ranlib='true'
1392 fi
1393
1394 if win32 ; then 1378 if win32 ; then
1395 _exesuf=".exe" 1379 _exesuf=".exe"
1396 # -lwinmm is always needed for osdep/timer-win2.c 1380 # -lwinmm is always needed for osdep/timer-win2.c
1397 _ld_extra="$_ld_extra -lwinmm" 1381 _ld_extra="$_ld_extra -lwinmm"
1398 _pe_executable=yes 1382 _pe_executable=yes
7767 DATADIR = \$(DESTDIR)$_datadir 7751 DATADIR = \$(DESTDIR)$_datadir
7768 MANDIR = \$(DESTDIR)$_mandir 7752 MANDIR = \$(DESTDIR)$_mandir
7769 CONFDIR = \$(DESTDIR)$_confdir 7753 CONFDIR = \$(DESTDIR)$_confdir
7770 LIBDIR = \$(DESTDIR)$_libdir 7754 LIBDIR = \$(DESTDIR)$_libdir
7771 7755
7772 AR = $_ar
7773 CC = $_cc 7756 CC = $_cc
7774 CXX = $_cc 7757 CXX = $_cc
7775 HOST_CC = $_host_cc 7758 HOST_CC = $_host_cc
7776 RANLIB = $_ranlib
7777 WINDRES = $_windres 7759 WINDRES = $_windres
7778 INSTALL = $_install 7760 INSTALL = $_install
7779 INSTALLSTRIP = $_install_strip 7761 INSTALLSTRIP = $_install_strip
7780 7762
7781 EXTRA_INC = $_inc_extra 7763 EXTRA_INC = $_inc_extra