9 Non-autotool config script for MLT.
13 --help - this information
15 General build options:
17 --prefix=directory - install prefix for path (default: $prefix)
18 --libdir=directory - lib directory (default: $prefix/lib)
19 --enable-gpl - Enable GPL components
20 --disable-debug - Compile without debug support (default: on)
21 --disable-mmx - Compile without MMX support (default: on)
22 --disable-sse - Compile without SSE support (default: on)
23 --arch='arch' - Compile for a specific architecture (default: none)
24 --cpu='cpu' - Compile for a specific CPU (default: none)
26 Module disables options:
30 for i in src/modules/*
32 [ -d $i ] && [ "`basename $i`" != "CVS" ] && echo `basename $i` `[ -f $i/gpl ] && echo [GPL]`
34 awk '{ printf( " --disable-%-14.14s- Disable the %s module %s\n", $1, $1, $2 ); }'
37 echo " NOTE: libraries marked [GPL] will not be built unless --enable-gpl is stipulated."
44 echo "version=$version"
45 echo "soversion=$soversion"
48 echo "bindir=$prefix/bin"
49 echo "targetos=$targetos"
51 [ "$mmx" = "true" ] &&
52 echo "MMX_FLAGS=-DUSE_MMX"
54 [ "$sse" = "true" ] &&
55 echo "SSE_FLAGS=-DUSE_SSE"
57 [ "$debug" = "true" ] &&
60 echo "LARGE_FILE=-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE"
62 [ "$arch" != "" ] && echo "TARGETARCH=-march=$arch"
63 [ "$cpu" != "" ] && echo "TARGETCPU=-mcpu=$cpu"
64 echo "OPTIMISATIONS=-O2 -pipe -fomit-frame-pointer"
66 echo "CFLAGS+=-Wall -fPIC -DPIC \$(TARGETARCH) \$(TARGETCPU) \$(OPTIMISATIONS) \$(MMX_FLAGS) \$(SSE_FLAGS) \$(DEBUG_FLAGS) \$(LARGE_FILE)"
70 sysctl -a hw | grep "x86_64: 1" > /dev/null && echo "ARCH_X86_64=1" && echo "CFLAGS+=-DARCH_X86_64"
71 echo "CFLAGS+=-D__DARWIN__ `sdl-config --cflags`"
72 echo "SHFLAGS=-dynamiclib"
73 echo "LDFLAGS+=`sdl-config --libs`"
76 [ "$(uname -m)" = "x86_64" ] && echo "ARCH_X86_64=1" && echo "CFLAGS+=-DARCH_X86_64"
77 echo "OPTIMISATIONS+=-ffast-math"
78 echo "CFLAGS+=-pthread"
79 echo "SHFLAGS=-shared"
81 echo "RDYNAMIC=-rdynamic"
84 [ "$(uname -m)" = "x86_64" ] && echo "ARCH_X86_64=1" && echo "CFLAGS+=-DARCH_X86_64"
85 echo "OPTIMISATIONS+=-ffast-math"
86 echo "CFLAGS+=-pthread"
87 echo "SHFLAGS=-shared"
88 echo "RDYNAMIC=-rdynamic"
96 echo "#!/bin/sh" > mlt-config
98 echo export version=$version
99 echo export prefix=$prefix
100 echo export libdir=$libdir
101 echo export bindir=$prefix/bin
104 cat < mlt-config-template >> mlt-config
106 echo -n > packages.dat
111 for i in framework valerie miracle
113 echo prefix="$prefix" > mlt-$i.pc
115 echo exec_prefix=$prefix
117 echo includedir=$prefix/include
118 echo version=$version
119 echo cflags=`grep ^$i packages.dat | cut -f 2`
120 echo libs=`grep ^$i packages.dat | cut -f 3`
122 cat mlt-$i.pc.in >>mlt-$i.pc
129 # Define build directory for scripts called
130 export build_dir=`dirname $0`
131 export prefix=/usr/local
144 # Chose appropriate suffix for libraries
158 # Iterate through arguments
163 --prefix=* ) prefix="${i#--prefix=}" ;;
164 --libdir=* ) libdir="${i#--libdir=}" ;;
165 --disable-debug ) debug=false ;;
166 --disable-mmx ) mmx=false; sse=false ;;
167 --disable-sse ) sse=false ;;
168 --enable-gpl ) gpl=true ;;
169 --arch=* ) arch="${i#--arch=}" ;;
170 --cpu=* ) cpu="${i#--cpu=}" ;;
174 # Determine the libdir if it's not specified in the args
175 [ "$libdir" = "" ] && libdir=$prefix/lib
177 # Double check mmx (Linux and FreeBSD supported, may end up disabling mmx on other platforms incorrectly)
178 if [ "$mmx" = "true" ]
182 sysctl -a hw | grep "mmx: 1" > /dev/null || mmx=false
185 grep mmx /proc/cpuinfo > /dev/null 2>&1 || mmx=false
188 [ "$(make -V MACHINE_CPU:Mmmx)" ] || mmx=false
191 grep mmx /proc/cpuinfo > /dev/null 2>&1 || mmx=false
196 # Double check SSE (Linux and FreeBSD supported, may end up disabling SSE on other platforms incorrectly)
197 if [ "$sse" = "true" ]
201 sysctl -a hw | grep "sse: 1" > /dev/null || sse=false
204 grep sse /proc/cpuinfo > /dev/null 2>&1 || sse=false
207 [ "$(make -V MACHINE_CPU:Msse)" ] || sse=false
210 grep sse /proc/cpuinfo > /dev/null 2>&1 || sse=false
215 # Show help if requested
220 # Log the configuration history
222 echo "$0 $@" >> config.log
227 # Iterate through each of the components
228 for i in framework modules inigo valerie miracle humperdink
230 if [ -x src/$i/configure ]
232 [ $help = 0 ] && echo "Configuring `basename $i`:"
236 [ $? != 0 ] && exit 1
241 # Build the pkg-config files
246 ( [ "$gpl" = "false" ] &&
247 echo "GPL Components are disabled" ||
248 echo "GPL License Used" )