changeset 23761:604adfeb3e64

Move QuickTime codecs check together with the other codecs checks.
author diego
date Sat, 14 Jul 2007 14:53:30 +0000
parents ca47426999ad
children 896a1faed1d2
files configure
diffstat 1 files changed, 14 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sat Jul 14 14:39:51 2007 +0000
+++ b/configure	Sat Jul 14 14:53:30 2007 +0000
@@ -5931,6 +5931,20 @@
 echores "$_real"
 
 
+echocheck "QuickTime codecs"
+if test "$_qtx" = auto ; then
+  test "$_win32dll" = yes || darwin && _qtx=yes
+fi
+if test "$_qtx" = yes ; then
+    _def_qtx='#define USE_QTX_CODECS 1'
+    _codecmodules="qtx $_codecmodules"
+else
+    _def_qtx='#undef USE_QTX_CODECS'
+    _nocodecmodules="qtx $_nocodecmodules"
+fi
+echores "$_qtx"
+
+
 echocheck "LIVE555 Streaming Media libraries"
 if test "$_live" = auto  && test "$_network" = yes ; then
   cat > $TMPCPP << EOF
@@ -6774,20 +6788,6 @@
 echores "$_menu"
 
 
-echocheck "QuickTime codecs"
-if test "$_qtx" = auto ; then
-  test "$_win32dll" = yes || darwin && _qtx=yes
-fi
-if test "$_qtx" = yes ; then
-    _def_qtx='#define USE_QTX_CODECS 1'
-    _codecmodules="qtx $_codecmodules"
-else
-    _def_qtx='#undef USE_QTX_CODECS'
-    _nocodecmodules="qtx $_nocodecmodules"
-fi
-echores "$_qtx"
-
-
 echocheck "Subtitles sorting"
 if test "$_sortsub" = yes ; then
     _def_sortsub='#define USE_SORTSUB 1'