Changeset 4025
- Timestamp:
- 05/10/07 11:52:37 (6 years ago)
- Location:
- vic/branches/mpeg4
- Files:
-
- 4 modified
-
configure (modified) (5 diffs)
-
configure.in (modified) (1 diff)
-
configure.in.head (modified) (1 diff)
-
configure.in.tk (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vic/branches/mpeg4/configure
r4007 r4025 1299 1299 --enable-debug build with debugging enabled 1300 1300 --enable-ipv6 build with ipv6 enabled 1301 --disable-aquatcl build with aquatcl enabled 1302 --disable-aquatk build with aquatk enabled 1301 1303 --enable-gpl Enable or disable use of gpl functionality - H264 MPEG4 Swscale 1302 1304 --disable-ffmpeg-co Enable or disable ffmpeg svn checkout … … 4298 4300 esac 4299 4301 4302 # Check whether --enable-aquatcl was given. 4303 if test "${enable_aquatcl+set}" = set; then 4304 enableval=$enable_aquatcl; aquatcl=no 4305 fi 4306 4307 # Check whether --enable-aquatk was given. 4308 if test "${enable_aquatk+set}" = set; then 4309 enableval=$enable_aquatk; aquatk=no 4310 fi 4311 4312 4300 4313 if test "$aquatk" != "yes" -a "$mingw" != "yes"; then 4301 4314 … … 4581 4594 4582 4595 if test "$aquatcl" == yes; then 4583 echo " On MACOSX - Using Aqua TCL/Tk"4596 echo "Using AquaTCL" 4584 4597 V_LIB_TCL="-framework Tcl" 4598 V_DEFINE="$V_DEFINE -DMAC_OSX_TCL" 4585 4599 V_LIBRARY_TCL=/Library/Frameworks/Tcl.framework/Versions/8.4/Resources/Scripts 4586 4600 V_INCLUDE_TCL="-I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tcl.framework/PrivateHeaders" 4587 4601 4588 4602 elif test "$ucltcl" == yes; then 4589 if test -z "$ ucltcl"; then4603 if test -z "$tcl"; then 4590 4604 # UCL defaults 4591 4605 ucltcl=../tcl-8.0 4592 4606 fi 4593 4607 if test ! -d "$ucltcl" ; then 4594 echo " '$d' is not a directory"4608 echo "UCL tcl path: '$ucltcl' is not a directory" 4595 4609 exit 1 4596 4610 fi … … 4854 4868 4855 4869 if test "$aquatk" == yes; then 4870 echo "Using AquaTk" 4856 4871 V_LIB_TK="-framework Tk" 4872 V_DEFINE="$V_DEFINE -DMAC_OSX_TK" 4857 4873 V_LIBRARY_TK=/Library/Frameworks/Tk.framework/Versions/8.4/Resources/Scripts 4858 4874 V_INCLUDE_TK="-I/Library/Frameworks/Tk.framework/Headers -I/Library/Frameworks/Tk.framework/PrivateHeaders" 4859 4875 4860 4876 elif test "$ucltk" == yes; then 4861 if test -z "$ ucltk"; then4877 if test -z "$tk"; then 4862 4878 # UCL defaults 4863 4879 ucltk=../tk-8.0 4864 4880 fi 4865 4881 if test ! -d "$ucltk" ; then 4866 echo " '$d' is not a directory"4882 echo "UCL TK dir: '$ucltk' is not a directory" 4867 4883 exit 1 4868 4884 fi … … 6950 6966 V_STATIC="" 6951 6967 V_BROKEN_OBJ= 6952 V_DEFINE="$V_DEFINE -DHAVE_IPV6 -D MAC_OSX_TCL -DMAC_OSX_TK -DHAVE_FAST_INT"6968 V_DEFINE="$V_DEFINE -DHAVE_IPV6 -DHAVE_FAST_INT" 6953 6969 V_LIB="$V_LIB -framework Carbon -framework QuickTime -lssl -lcrypto" 6954 6970 if test "$target_cpu" = powerpc; then -
vic/branches/mpeg4/configure.in
r4008 r4025 578 578 V_STATIC="" 579 579 V_BROKEN_OBJ= 580 V_DEFINE="$V_DEFINE -DHAVE_IPV6 -D MAC_OSX_TCL -DMAC_OSX_TK -DHAVE_FAST_INT"580 V_DEFINE="$V_DEFINE -DHAVE_IPV6 -DHAVE_FAST_INT" 581 581 V_LIB="$V_LIB -framework Carbon -framework QuickTime -lssl -lcrypto" 582 582 if test "$target_cpu" = powerpc; then -
vic/branches/mpeg4/configure.in.head
r3937 r4025 90 90 esac 91 91 92 AC_ARG_ENABLE(aquatcl, --disable-aquatcl build with aquatcl enabled, aquatcl=no, ) 93 AC_ARG_ENABLE(aquatk, --disable-aquatk build with aquatk enabled, aquatk=no, ) 94 92 95 if test "$aquatk" != "yes" -a "$mingw" != "yes"; then 93 96 builtin(include, configure.in.x11) -
vic/branches/mpeg4/configure.in.tk
r4003 r4025 7 7 8 8 if test "$aquatcl" == yes; then 9 echo " On MACOSX - Using Aqua TCL/Tk"9 echo "Using AquaTCL" 10 10 V_LIB_TCL="-framework Tcl" 11 V_DEFINE="$V_DEFINE -DMAC_OSX_TCL" 11 12 V_LIBRARY_TCL=/Library/Frameworks/Tcl.framework/Versions/8.4/Resources/Scripts 12 13 V_INCLUDE_TCL="-I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tcl.framework/PrivateHeaders" 13 14 14 15 elif test "$ucltcl" == yes; then 15 if test -z "$ ucltcl"; then16 if test -z "$tcl"; then 16 17 # UCL defaults 17 18 ucltcl=../tcl-8.0 18 19 fi 19 20 if test ! -d "$ucltcl" ; then 20 echo " '$d' is not a directory"21 echo "UCL tcl path: '$ucltcl' is not a directory" 21 22 exit 1 22 23 fi … … 174 175 175 176 if test "$aquatk" == yes; then 177 echo "Using AquaTk" 176 178 V_LIB_TK="-framework Tk" 179 V_DEFINE="$V_DEFINE -DMAC_OSX_TK" 177 180 V_LIBRARY_TK=/Library/Frameworks/Tk.framework/Versions/8.4/Resources/Scripts 178 181 V_INCLUDE_TK="-I/Library/Frameworks/Tk.framework/Headers -I/Library/Frameworks/Tk.framework/PrivateHeaders" 179 182 180 183 elif test "$ucltk" == yes; then 181 if test -z "$ ucltk"; then184 if test -z "$tk"; then 182 185 # UCL defaults 183 186 ucltk=../tk-8.0 184 187 fi 185 188 if test ! -d "$ucltk" ; then 186 echo " '$d' is not a directory"189 echo "UCL TK dir: '$ucltk' is not a directory" 187 190 exit 1 188 191 fi
