]> git.sesse.net Git - vlc/blob - projects/macosx/framework/Configure.sh
5e560927d8226768180ebcbb4506c47d8bab9791
[vlc] / projects / macosx / framework / Configure.sh
1 #
2 # Configure script
3 #
4 #   used by VLCKit.xcodeproj
5
6 if test "x$SYMROOT" = "x"; then
7     echo " This script is bound to be launched by VLCKit.xcodeproj, not you"
8     exit 1
9 fi
10
11 if test "$ACTION" = "clean"; then
12     rm -Rf $SYMROOT/vlc_build_dir
13     exit 0
14 fi
15
16 # Contruct the vlc_build_dir
17 mkdir -p $SYMROOT/vlc_build_dir
18 cd $SYMROOT/vlc_build_dir
19
20 # Contruct the argument list
21 echo "Building for $ARCHS with sdk=\"$SDKROOT\""
22
23
24 args="--disable-nls $args"
25
26 # Mac OS X related options
27 args="--disable-macosx-defaults $args"
28 args="--disable-macosx $args" # Disable old gui/macosx
29 args="--disable-macosx-vlc-app $args" # Don't build old vlc.app
30
31 args="--with-macosx-version-min=10.5 $args"
32
33 # optional modules
34 args="--enable-faad $args"
35 args="--enable-flac $args"
36 args="--enable-theora $args"
37 args="--enable-shout $args"
38 args="--enable-caca $args"
39 args="--enable-vcdx $args"
40 args="--enable-twolame $args"
41 args="--enable-realrtsp $args"
42 args="--enable-libass $args"
43 args="--enable-asademux $args"
44
45 # disabled stuff
46 args="--disable-ncurses $args"
47 args="--disable-httpd $args"
48 args="--disable-vlm $args"
49 args="--disable-skins2 $args"
50 args="--disable-glx $args"
51 args="--disable-xvideo $args"
52 args="--disable-xcb $args"
53 args="--disable-sdl $args"
54 args="--disable-sdl-image $args"
55 args="--disable-visual $args"
56
57 # where to install
58 args="--prefix=$SYMROOT/vlc_build_dir/vlc_install_dir $args"
59
60 if test "x$SDKROOT" != "x"
61 then
62         args="--with-macosx-sdk=$SDKROOT $args"
63 fi
64
65 # Debug Flags
66 if test "$CONFIGURATION" = "Debug"; then
67         args="--enable-debug $args"
68 else
69         args="--enable-release $args"
70 fi
71
72 top_srcdir="$SRCROOT/../../.."
73
74 # 64 bits switches
75 for arch in $ARCHS; do
76
77     input="$top_srcdir/configure"
78     output="$arch/Makefile"
79     if test -e ${output} && test ${output} -nt ${input}; then
80         continue;
81     fi
82
83     # Contruct the vlc_build_dir/$arch
84     mkdir -p $arch
85     cd $arch
86
87     if test $arch = "x86_64"; then
88         args="--build=x86_64-apple-darwin10 $args"
89     fi
90
91     echo "Running[$arch] configure $args"
92     CFLAGS="-arch $arch" CXXFLAGS="-arch $arch" CPPFLAGS="-arch $arch" OBJCFLAGS="-arch $arch" exec $top_srcdir/configure $args
93     cd ..
94 done