summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-03-25 15:17:47 +0000
committerDiego Biurrun <diego@biurrun.de>2008-03-25 15:17:47 +0000
commit4f854758f7f2b86db02c1a17e7b0272419496509 (patch)
tree40ed223cccc47cfa453f54f964f7c705a14d2ec6
parentdb6107b68f020d091b9407e2c6ea58d81e354d20 (diff)
cosmetics: Rename targetos variable to target_os.
Originally committed as revision 12587 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure20
1 files changed, 10 insertions, 10 deletions
diff --git a/configure b/configure
index ead9918024..7e030a61db 100755
--- a/configure
+++ b/configure
@@ -108,7 +108,7 @@ show_help(){
echo " --source-path=PATH path to source code [$source_path]"
echo " --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]"
echo " --enable-cross-compile assume a cross-compiler is used"
- echo " --target-os=OS compiler targets OS [$targetos]"
+ echo " --target-os=OS compiler targets OS [$target_os]"
echo " --cc=CC use C compiler CC [$cc]"
echo " --make=MAKE use specified make [$make]"
echo " --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]"
@@ -894,7 +894,7 @@ arch=`uname -m`
cpu="generic"
# OS
-targetos=$(tolower $(uname -s))
+target_os=$(tolower $(uname -s))
# libraries
enable zlib
@@ -1009,7 +1009,7 @@ for opt do
;;
--cross-prefix=*) cross_prefix="$optval"
;;
- --target-os=*) targetos="$optval"
+ --target-os=*) target_os="$optval"
;;
--cc=*) cc="$optval"
;;
@@ -1138,7 +1138,7 @@ enabled_any x86_32 x86_64 && enable x86
enabled sparc64 && enable sparc
# OS specific
-case $targetos in
+case $target_os in
beos|haiku|zeta)
PREFIX="$HOME/config"
# helps building libavcodec
@@ -1203,7 +1203,7 @@ case $targetos in
FFSERVERLDFLAGS=-Wl,-bind_at_load
;;
mingw32*)
- targetos=mingw32
+ target_os=mingw32
shlibdir="$bindir"
VHOOKSHFLAGS='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil'
VHOOKLIBS='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)'
@@ -1223,7 +1223,7 @@ case $targetos in
SHFLAGS='-shared -Wl,--output-def,$(@:$(SLIBSUF)=.def) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
;;
cygwin*)
- targetos=cygwin
+ target_os=cygwin
shlibdir="$bindir"
VHOOKSHFLAGS='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil'
VHOOKLIBS='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)'
@@ -1249,7 +1249,7 @@ case $targetos in
enable dv1394
;;
irix*)
- targetos=irix
+ target_os=irix
ranlib="echo ignoring ranlib"
;;
os/2*)
@@ -1281,7 +1281,7 @@ case $targetos in
;;
*)
- targetos="${targetos}-UNKNOWN"
+ target_os="${target_os}-UNKNOWN"
;;
esac
@@ -1371,7 +1371,7 @@ check_deps $ARCH_EXT_LIST
test -z "$need_memalign" && need_memalign="$mmx"
#Darwin CC versions
-if test $targetos = darwin; then
+if test $target_os = darwin; then
if $cc -v 2>&1 | grep -q xlc; then
add_cflags "-qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto"
else
@@ -1684,7 +1684,7 @@ done
test "$vhook" = "default" && vhook="$dlopen"
-if test "$targetos" = cygwin -o "$targetos" = mingw32 && enabled_all static vhook ; then
+if test "$target_os" = cygwin -o "$target_os" = mingw32 && enabled_all static vhook ; then
disable vhook
echo
echo "At the moment vhooks don't work on Cygwin or MinGW static builds."