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 --datadir=directory - data directory (default: $prefix/share)
20 --mandir=directory - man documentation directory (default: $prefix/share/man)
21 --enable-gpl - Enable GPL components
22 --disable-debug - Compile without debug support (default: on)
23 --disable-mmx - Compile without MMX support (default: on)
24 --disable-sse - Compile without SSE support (default: on)
25 --disable-sse2 - Compile without SSE2 support (default: on)
26 --arch='arch' - Compile for a specific architecture (default: none)
27 --cpu='cpu' - Compile for a specific CPU (default: none)
29 Module disable options:
33 for i in src/modules/*
35 [ -d $i ] && [ "`basename $i`" != "CVS" ] && echo `basename $i` `[ -f $i/gpl ] && echo [GPL]`
37 awk '{ printf( " --disable-%-14.14s- Disable the %s module %s\n", $1, $1, $2 ); }'
40 echo " NOTE: libraries marked [GPL] will not be built unless --enable-gpl is stipulated."
47 echo "version=$version"
48 echo "soversion=$soversion"
51 echo "bindir=$prefix/bin"
52 echo "datadir=$datadir"
54 echo "targetos=$targetos"
56 [ "$mmx" = "true" ] &&
57 echo "MMX_FLAGS=-DUSE_MMX"
59 [ "$sse" = "true" ] &&
60 echo "SSE_FLAGS=-DUSE_SSE"
62 [ "$sse2" = "true" ] &&
63 echo "SSE2_FLAGS=-DUSE_SSE2"
65 [ "$debug" = "true" ] &&
68 echo "LARGE_FILE=-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE"
70 [ "$arch" != "" ] && echo "TARGETARCH=-march=$arch"
71 [ "$cpu" != "" ] && echo "TARGETCPU=-mcpu=$cpu"
72 echo "OPTIMISATIONS=-O2 -pipe -fomit-frame-pointer"
74 echo "CFLAGS+=-Wall -fPIC -DPIC \$(TARGETARCH) \$(TARGETCPU) \$(OPTIMISATIONS) \$(MMX_FLAGS) \$(SSE_FLAGS) \$(SSE2_FLAGS) \$(DEBUG_FLAGS) \$(LARGE_FILE)"
78 sysctl -a hw | grep "x86_64: 1" > /dev/null && echo "ARCH_X86_64=1" && echo "CFLAGS+=-DARCH_X86_64"
79 echo "CFLAGS+=-D__DARWIN__ `sdl-config --cflags`"
80 echo "SHFLAGS=-dynamiclib"
81 echo "LDFLAGS+=`sdl-config --libs`"
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"
89 echo "RDYNAMIC=-rdynamic"
90 echo "LDFLAGS+=-Wl,--no-undefined -Wl,--as-needed"
93 [ "$(uname -m)" = "x86_64" ] && echo "ARCH_X86_64=1" && echo "CFLAGS+=-DARCH_X86_64"
94 echo "OPTIMISATIONS+=-ffast-math"
95 echo "CFLAGS+=-pthread"
96 echo "SHFLAGS=-shared"
97 echo "RDYNAMIC=-rdynamic"
98 echo "LDFLAGS+=-Wl,--no-undefined -Wl,--as-needed"
103 echo "LIBSUF=$LIBSUF"
106 echo "#!/bin/sh" > mlt-config
108 echo export version=$version
109 echo export prefix=$prefix
110 echo export libdir=$libdir
111 echo export bindir=$prefix/bin
114 cat < mlt-config-template >> mlt-config
116 echo -n > packages.dat
121 echo prefix="$prefix" > mlt-framework.pc
123 echo exec_prefix=$prefix
125 echo includedir=$prefix/include
126 echo datadir=$datadir
128 echo version=$version
129 echo cflags=`grep ^framework packages.dat | cut -f 2`
130 echo libs=`grep ^framework packages.dat | cut -f 3`
131 ) >> mlt-framework.pc
132 cat mlt-framework.pc.in >>mlt-framework.pc
134 echo prefix="$prefix" > mlt++.pc
136 echo exec_prefix=$prefix
138 echo includedir=$prefix/include
139 echo datadir=$datadir
141 echo version=$version
142 echo cflags=`grep ^mlt++ packages.dat | cut -f 2`
143 echo libs=`grep ^mlt++ packages.dat | cut -f 3`
145 cat mlt++.pc.in >>mlt++.pc
151 # Define build directory for scripts called
152 export build_dir=`dirname $0`
153 export prefix=/usr/local
169 # Chose appropriate suffix for libraries
183 # Iterate through arguments
188 --prefix=* ) prefix="${i#--prefix=}" ;;
189 --libdir=* ) libdir="${i#--libdir=}" ;;
190 --datadir=* ) datadir="${i#--datadir=}" ;;
191 --mandir=* ) mandir="${i#--mandir=}" ;;
192 --disable-debug ) debug=false ;;
193 --disable-mmx ) mmx=false; sse=false; sse2=false ;;
194 --disable-sse ) sse=false; sse2=false ;;
195 --disable-sse2 ) sse2=false ;;
196 --enable-gpl ) gpl=true ;;
197 --arch=* ) arch="${i#--arch=}" ;;
198 --cpu=* ) cpu="${i#--cpu=}" ;;
202 # Determine the libdir if it's not specified in the args
203 [ "$libdir" = "" ] && libdir=$prefix/lib
204 [ "$datadir" = "" ] && datadir=$prefix/share
205 [ "$mandir" = "" ] && mandir=$prefix/share/man
207 # Double check MMX (Darwin, Linux and FreeBSD supported, may end up disabling MMX on other platforms incorrectly)
208 if [ "$mmx" = "true" ]
212 sysctl -a hw | grep "mmx: 1" > /dev/null || mmx=false
215 grep mmx /proc/cpuinfo > /dev/null 2>&1 || mmx=false
218 [ "$(make -V MACHINE_CPU:Mmmx)" ] || mmx=false
221 grep mmx /proc/cpuinfo > /dev/null 2>&1 || mmx=false
226 # Double check SSE (Darwin, Linux and FreeBSD supported, may end up disabling SSE on other platforms incorrectly)
227 if [ "$sse" = "true" ]
231 sysctl -a hw | grep "sse: 1" > /dev/null || sse=false
234 grep sse /proc/cpuinfo > /dev/null 2>&1 || sse=false
237 [ "$(make -V MACHINE_CPU:Msse)" ] || sse=false
240 grep sse /proc/cpuinfo > /dev/null 2>&1 || sse=false
245 # Double check SSE2 (Darwin, Linux and FreeBSD supported, may end up disabling SSE2 on other platforms incorrectly)
246 if [ "$sse2" = "true" ]
250 sysctl -a hw | grep "sse2: 1" > /dev/null || sse2=false
253 grep sse2 /proc/cpuinfo > /dev/null 2>&1 || sse2=false
256 [ "$(make -V MACHINE_CPU:Msse2)" ] || sse2=false
259 grep sse2 /proc/cpuinfo > /dev/null 2>&1 || sse2=false
264 # Show help if requested
269 # Log the configuration history
271 echo "$0 $@" >> config.log
276 # Iterate through each of the components
277 for i in framework modules melt mlt++ swig
279 if [ -x src/$i/configure ]
281 [ $help = 0 ] && echo "Configuring `basename $i`:"
285 [ $? != 0 ] && exit 1
290 # Build the pkg-config files
295 ( [ "$gpl" = "false" ] &&
296 echo "GPL Components are disabled" ||
297 echo "GPL License Used" )