configure 34.4 KB
Newer Older
F
Fabrice Bellard 已提交
1
#!/bin/sh
2
#
F
Fabrice Bellard 已提交
3
# ffmpeg configure script (c) 2000, 2001, 2002 Fabrice Bellard
4
#
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
cat << EOF

Usage: configure [options]
Options: [defaults in brackets after descriptions]

EOF
echo "Standard options:"
echo "  --help                   print this message"
echo "  --prefix=PREFIX          install in PREFIX [$prefix]"
echo "  --mandir=DIR             man documentation in DIR [PREFIX/man]"
echo "  --enable-mp3lame         enable mp3 encoding via libmp3lame [default=no]"
echo "  --enable-vorbis          enable vorbis support via libvorbisenc [default=no]"
echo "  --enable-faad            enable faad support via libfaad [default=no]"
echo "  --enable-faadbin         build faad support with runtime linking [default=no]"
echo "  --enable-faac            enable faac support via libfaac [default=no]"
22
echo "  --enable-xvid            enable xvid support via xvidcore [default=no]"
23 24 25
echo "  --enable-mingw32         enable mingw32 native/cross windows compile"
echo "  --enable-a52             enable GPL'ed A52 support [default=no]"
echo "  --enable-a52bin          open liba52.so.0 at runtime [default=no]"
26
echo "  --enable-dts             enable GPL'ed DTS support [default=no]"
27 28 29 30 31
echo "  --enable-pp              enable GPL'ed post processing support [default=no]"
echo "  --enable-shared-pp       use libpostproc.so [default=no]"
echo "  --enable-shared          build shared libraries [default=no]"
echo "  --enable-amr_nb          enable amr_nb float audio codec"
echo "  --enable-amr_nb-fixed    use fixed point for amr-nb codec"
32
echo "  --enable-amr_wb          enable amr_wb float audio codec"
33
echo "  --enable-sunmlib         use Sun medialib [default=no]"
34
echo "  --enable-pthreads        use pthreads [default=no]"
35
echo "  --enable-gpl             allow use of gpl code, the resulting libav* and ffmpeg will be under gpl [default=no]"
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
echo ""
echo "Advanced options (experts only):"
echo "  --source-path=PATH       path of source code [$source_path]"
echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
echo "  --cc=CC                  use C compiler CC [$cc]"
echo "  --make=MAKE              use specified make [$make]"
echo "  --extra-cflags=ECFLAGS   add ECFLAGS to CFLAGS [$CFLAGS]"
echo "  --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]"
echo "  --extra-libs=ELIBS       add ELIBS [$ELIBS]"
echo "  --cpu=CPU                force cpu to CPU  [$cpu]"
echo "  --tune=PROCESSOR         tune code for a particular CPU (may fails or misperforms on other CPUs)"
echo "  --powerpc-perf-enable    enable performance report on PPC (requires enabling PMC)"
echo "  --disable-mmx            disable mmx usage"
echo "  --disable-altivec        disable AltiVec usage"
echo "  --disable-audio-oss      disable OSS audio support [default=no]"
echo "  --disable-audio-beos     disable BeOS audio support [default=no]"
echo "  --disable-v4l            disable video4linux grabbing [default=no]"
echo "  --disable-dv1394         disable DV1394 grabbing [default=no]"
echo "  --disable-network        disable network support [default=no]"
echo "  --disable-zlib           disable zlib [default=no]"
echo "  --disable-simple_idct    disable simple IDCT routines [default=no]"
echo "  --disable-vhook          disable video hooking support"
echo "  --enable-gprof           enable profiling with gprof [$gprof]"
echo "  --disable-debug          disable debugging symbols"
echo "  --disable-opts           disable compiler optimizations"
echo "  --disable-mpegaudio-hp   faster (but less accurate)"
echo "                           mpegaudio decoding [default=no]"
echo "  --disable-ffserver       disable ffserver build"
echo "  --disable-ffplay         disable ffplay build"
echo "  --disable-risky          disables patent encumbered codecs"
echo "  --enable-small           optimize for size instead of speed"
67
echo "  --enable-memalign-hack   emulate memalign, interferes with memory debuggers"
68 69 70 71 72
echo ""
echo "NOTE: The object files are build at the place where configure is launched"
exit 1
fi

73
# set temporary file name
Z
Zdenek Kabelac 已提交
74
if test ! -z "$TMPDIR" ; then
75
    TMPDIR1="${TMPDIR}"
Z
Zdenek Kabelac 已提交
76
elif test ! -z "$TEMPDIR" ; then
77
    TMPDIR1="${TEMPDIR}"
N
Nick Kurshev 已提交
78
else
79
    TMPDIR1="/tmp"
N
Nick Kurshev 已提交
80 81
fi

82 83
TMPC="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c"
TMPO="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o"
84
TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}"
85 86 87
TMPS="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S"
TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"

F
Fabrice Bellard 已提交
88 89
# default parameters
prefix="/usr/local"
F
Fabrice Bellard 已提交
90
mandir=""
F
Fabrice Bellard 已提交
91
bindir=""
92
cross_prefix=""
F
Fabrice Bellard 已提交
93 94
cc="gcc"
ar="ar"
M
Michael Niedermayer 已提交
95
ranlib="ranlib"
96
make="make"
97
strip="strip"
F
Fabrice Bellard 已提交
98
cpu=`uname -m`
99
tune="generic"
100
powerpc_perf="no"
101
mmx="default"
102
altivec="default"
103
mmi="default"
F
Fabrice Bellard 已提交
104
case "$cpu" in
105
  i386|i486|i586|i686|i86pc|BePC)
F
Fabrice Bellard 已提交
106 107
    cpu="x86"
  ;;
108 109
  # armv4l is a subset of armv5tel
  armv4l|armv5tel)
110 111
    cpu="armv4l"
  ;;
112 113 114
  alpha)
    cpu="alpha"
  ;;
115
  "Power Macintosh"|ppc)
116 117
    cpu="powerpc"
  ;;
118 119 120
  mips)
    cpu="mips"
  ;;
121
  sun4u|sparc64)
122 123
    cpu="sparc64"
  ;;
124 125 126
  sparc)
    cpu="sparc"
  ;;
A
Alex Beregszaszi 已提交
127 128 129
  sh4)
    cpu="sh4"
  ;;
F
Fabrice Bellard 已提交
130
  *)
131
    cpu="unknown"
F
Fabrice Bellard 已提交
132 133 134
  ;;
esac
gprof="no"
F
Fabrice Bellard 已提交
135 136
v4l="yes"
audio_oss="yes"
137
audio_beos="no"
138
dv1394="yes"
F
Fabrice Bellard 已提交
139
network="yes"
140
zlib="yes"
141
mp3lame="no"
142
vorbis="no"
143 144
faad="no"
faadbin="no"
145
faac="no"
146
xvid="no"
147
a52="no"
Z
Zdenek Kabelac 已提交
148
a52bin="no"
149
dts="no"
150
pp="no"
151
shared_pp="no"
152
mingw32="no"
153
cygwin="no"
154
os2="no"
155
lshared="no"
156 157
optimize="yes"
debug="yes"
158
extralibs="-lm"
159
simpleidct="yes"
160
bigendian="no"
161
inttypes="yes"
162
emu_fast_int="no"
163
vhook="default"
164 165
dlfcn="no"
dlopen="no"
166
mpegaudio_hp="yes"
167
SHFLAGS=-shared
168
netserver="no"
169
need_inet_aton="no"
170
ffserver="yes"
171
ffplay="yes"
172 173
LDFLAGS=-Wl,--warn-common
FFSLDFLAGS=-Wl,-E
174 175 176 177
LIBPREF="lib"
LIBSUF=".a"
SLIBPREF="lib"
SLIBSUF=".so"
F
Fabrice Bellard 已提交
178
EXESUF=""
M
Michael Niedermayer 已提交
179
risky="yes"
180
amr_nb="no"
181
amr_wb="no"
Z
Zdenek Kabelac 已提交
182
amr_nb_fixed="no"
183
sunmlib="no"
184
pthreads="no"
185
gpl="no"
186
memalignhack="no"
187 188 189 190 191 192 193

# OS specific
targetos=`uname -s`
case $targetos in
BeOS)
prefix="/boot/home/config"
# helps building libavcodec
194
CFLAGS="-DPIC -fomit-frame-pointer"
195
# 3 gcc releases known for BeOS, each with ugly bugs
196
gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
197 198 199 200 201 202 203 204
case "$gcc_version" in
2.9-beos-991026*|2.9-beos-000224*) echo "R5/GG gcc"
mmx="no"
;;
*20010315*) echo "BeBits gcc"
CFLAGS="$CFLAGS -fno-expensive-optimizations"
;;
esac
205 206 207
SHFLAGS=-nostart
# disable linux things
audio_oss="no"
F
Fabrice Bellard 已提交
208
v4l="no"
209
dv1394="no"
210 211
# enable beos things
audio_beos="yes"
212 213 214 215 216
# no need for libm, but the inet stuff
# Check for BONE
if (echo $BEINCLUDES|grep 'headers/be/bone' >/dev/null); then
extralibs="-lbind -lsocket"
else
217
netserver="yes"
218
need_inet_aton="yes"
219
extralibs="-lnet"
220
fi ;;
221 222 223
SunOS)
v4l="no"
audio_oss="no"
224
dv1394="no"
225 226 227 228 229 230
make="gmake"
LDFLAGS=""
FFSLDFLAGS=""
need_inet_aton="yes"
extralibs="$extralibs -lsocket -lnsl"
;;
231 232 233
FreeBSD)
v4l="no"
audio_oss="yes"
234
dv1394="no"
235
make="gmake"
236 237
CFLAGS="-pthread"
LDFLAGS="$LDFLAGS -export-dynamic -pthread"
238
;;
239
BSD/OS)
F
Fabrice Bellard 已提交
240
v4l="no"
F
Fabrice Bellard 已提交
241
audio_oss="yes"
242
dv1394="no"
243 244 245
extralibs="-lpoll -lgnugetopt -lm"
make="gmake"
;;
246
Darwin)
247
cc="cc"
248 249
v4l="no"
audio_oss="no"
250
dv1394="no"
251
ffserver="no"
252
SHFLAGS="-dynamiclib"
253
extralibs=""
254
darwin="yes"
255
strip="strip -x"
256
LDFLAGS="-Wl,-d"
257
FFSLDFLAGS=-Wl,-bind_at_load
258
;;
259
MINGW32*)
F
Fabrice Bellard 已提交
260 261
# Note: the rest of the mingw32 config is done afterwards as mingw32
# can be forced on command line for linux cross compilation
262 263
mingw32="yes"
;;
264 265 266
CYGWIN*)
v4l="no"
audio_oss="yes"
267
dv1394="no"
268 269 270 271 272
extralibs=""
cygwin="yes"
test -f /usr/include/inttypes.h || \
test -f /usr/local/include/inttypes.h || \
echo "Missing inttypes.h, please copy cygwin_inttypes.h to" \
273
     "/usr/local/include/inttypes.h !!!"
274
;;
275
Linux)
276
LDFLAGS="$LDFLAGS -rdynamic"
277
;;
278 279 280 281 282 283
IRIX*)
ranlib="echo ignoring ranlib"
v4l="no"
audio_oss="no"
make="gmake"
;;
284 285
OS/2)
TMPE=$TMPE".exe"
286 287 288
ar="emxomfar -p64"
ranlib="echo ignoring ranlib"
strip="echo ignoring strip"
289
CFLAGS="-Zomf"
290
LDFLAGS="-Zomf -Zstack 16384 -s"
291 292 293 294 295 296
SHFLAGS=""
FFSLDFLAGS=""
LIBPREF=""
LIBSUF=".lib"
SLIBPREF=""
SLIBSUF=".dll"
F
Fabrice Bellard 已提交
297
EXESUF=".exe"
298 299 300
extralibs=""
v4l="no"
audio_oss="no"
301
dv1394="no"
302 303 304 305
network="no"
ffserver="no"
os2="yes"
;;
306 307
*) ;;
esac
F
Fabrice Bellard 已提交
308

309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
# From mplayer configure. We need TARGET_OS available
# to the Makefile, so it can distinguish between flavors
# of AltiVec on PowerPC
TARGET_OS=`( uname -s ) 2>&1`
  case "$TARGET_OS" in
  Linux|FreeBSD|NetBSD|BSD/OS|OpenBSD|SunOS|QNX|Darwin|GNU)
    ;;
  IRIX*)
    TARGET_OS=IRIX
    ;;
  HP-UX*)
    TARGET_OS=HP-UX
    ;;
  [cC][yY][gG][wW][iI][nN]*)
    TARGET_OS=CYGWIN
    ;;
  *)
    TARGET_OS="$TARGET_OS-UNKNOWN"
    ;;
  esac

330 331 332
# find source path
# XXX: we assume an absolute path is given when launching configure, 
# except in './configure' case.
333
source_path="`echo $0 | sed -e 's#/configure##'`"
334 335 336 337
source_path_used="yes"
if test -z "$source_path" -o "$source_path" = "." ; then
    source_path=`pwd`
    source_path_used="no"
F
Fabrice Bellard 已提交
338 339 340 341 342 343
fi

for opt do
  case "$opt" in
  --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
  ;;
F
Fabrice Bellard 已提交
344 345
  --mandir=*) mandir=`echo $opt | cut -d '=' -f 2`
  ;;
346 347 348 349
  --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
  ;;
  --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
  ;;
F
Fabrice Bellard 已提交
350 351
  --cc=*) cc=`echo $opt | cut -d '=' -f 2`
  ;;
352 353
  --make=*) make=`echo $opt | cut -d '=' -f 2`
  ;;
354 355 356 357 358 359
  --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
  ;;
  --extra-ldflags=*) LDFLAGS=${opt#--extra-ldflags=}
  ;;
  --extra-libs=*) extralibs=${opt#--extra-libs=}
  ;;
F
Fabrice Bellard 已提交
360 361
  --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
  ;;
362 363
  --tune=*) tune=`echo $opt | cut -d '=' -f 2`
  ;;
364 365
  --powerpc-perf-enable) powerpc_perf="yes"
  ;;
F
Fabrice Bellard 已提交
366 367
  --disable-mmx) mmx="no"
  ;;
368 369
  --disable-altivec) altivec="no"
  ;;
F
Fabrice Bellard 已提交
370 371
  --enable-gprof) gprof="yes"
  ;;
F
Fabrice Bellard 已提交
372 373 374 375
  --disable-v4l) v4l="no"
  ;;
  --disable-audio-oss) audio_oss="no"
  ;;
376 377
  --disable-audio-beos) audio_beos="no"
  ;;
378 379
  --disable-dv1394) dv1394="no"
  ;;
380
  --disable-network) network="no"; ffserver="no"
F
Fabrice Bellard 已提交
381
  ;;
382 383
  --disable-zlib) zlib="no"
  ;;
384
  --enable-a52) a52="yes"
385
  ;;
386
  --enable-a52bin) a52bin="yes" ; extralibs="$ldl $extralibs"
Z
Zdenek Kabelac 已提交
387
  ;;
388 389
  --enable-dts) dts="yes" ; extralibs="$extralibs -ldts"
  ;;
390
  --enable-pp) pp="yes"
391 392 393
  ;;
  --enable-shared-pp) shared_pp="yes"
  ;;
394 395
  --enable-mp3lame) mp3lame="yes"
  ;;
396 397
  --enable-vorbis) vorbis="yes"
  ;;
Z
Zdenek Kabelac 已提交
398 399 400 401
  --enable-faad) faad="yes"
  ;;
  --enable-faadbin) faadbin="yes"
  ;;
402 403
  --enable-faac) faac="yes"
  ;;
404 405
  --enable-xvid) xvid="yes"
  ;;
406 407
  --disable-vhook) vhook="no"
  ;;
408
  --disable-simple_idct) simpleidct="no"
409
  ;;
410 411
  --enable-mingw32) mingw32="yes"
  ;;
412
  --enable-shared) lshared="yes"
N
Nick Kurshev 已提交
413
  ;;
414 415 416 417
  --disable-debug) debug="no"
  ;;
  --disable-opts) optimize="no"
  ;;
418 419
  --disable-mpegaudio-hp) mpegaudio_hp="no"
  ;;
420 421
  --disable-ffserver) ffserver="no"
  ;;
422 423
  --disable-ffplay) ffplay="no"
  ;;
M
Michael Niedermayer 已提交
424 425
  --disable-risky) risky="no"
  ;;
426
  --enable-small) optimize="small"
427
  ;;
428 429
  --enable-amr_nb) amr_nb="yes"
  ;;
Z
Zdenek Kabelac 已提交
430 431
  --enable-amr_nb-fixed) amr_nb_fixed="yes"
  ;;
432 433
  --enable-amr_wb) amr_wb="yes"
  ;; 
434 435
  --enable-sunmlib) sunmlib="yes"
  ;;
436 437
  --enable-pthreads) pthreads="yes"
  ;;
438 439
  --enable-gpl) gpl="yes"
  ;;
440 441
  --enable-memalign-hack) memalignhack="yes"
  ;;
F
Fabrice Bellard 已提交
442 443 444
  esac
done

445 446 447 448 449 450 451 452 453 454
if test "$gpl" != "yes"; then
    if test "$pp" != "no" -o "$shared_pp" != "no"; then
        echo "The Postprocessing code is under GPL and --enable-gpl is not specified"
        fail="yes"
    fi

    if test "$a52" != "no" -o "$a52bin" != "no"; then
        echo "liba52 is under GPL and --enable-gpl is not specified"
        fail="yes"
    fi
455

456 457 458 459 460
    if test "$xvid" != "no"; then
        echo "libxvidcore is under GPL and --enable-gpl is not specified"
        fail="yes"
    fi

461 462 463 464
    if test "$dts" != "no"; then
        echo "libdts is under GPL and --enable-gpl is not specified"
        fail="yes"
    fi
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
    
    if test "$faad" != "no" -o "$faadbin" != "no"; then
        cat > $TMPC << EOF
            #include <faad.h>
            int main( void ) { return 0; }
EOF
    
        if $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
            cat > $TMPC << EOF
                #include <faad.h>
                #ifndef FAAD2_VERSION
                ok faad1
                #endif
                int main( void ) { return 0; }
EOF
            if $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
                echo "faad2 is under GPL and --enable-gpl is not specified"
                fail="yes"
            fi
        else
            faad="no"
            faadbin="no"
            echo "faad test failed"
        fi
    fi
   

M
10l  
Michael Niedermayer 已提交
492
    if test "$fail" = "yes"; then
493 494 495 496
        exit 1
    fi
fi

497 498 499 500 501 502 503 504 505
# compute mmx state
if test $mmx = "default"; then
    if test $cpu = "x86"; then
        mmx="yes"
    else
        mmx="no"
    fi
fi

506
#Darwin CC versions
507
needmdynamicnopic="no"
508
if test $targetos = Darwin; then
509
    if test -n "`$cc -v 2>&1 | grep xlc`"; then
510
	CFLAGS="$CFLAGS -qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto"
511
    else
512
	gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
513 514
	case "$gcc_version" in
	    *2.95*) 
515
		CFLAGS="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer"
516
		;;
517
	    *3.*)
518
		CFLAGS="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer -force_cpusubtype_ALL -Wno-sign-compare"
519 520 521
		if test "$lshared" = no; then
		   needmdynamicnopic="yes"
		fi
522 523
		;;
	    *)
524
		CFLAGS="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer"
525 526 527
		if test "$lshared" = no; then
		   needmdynamicnopic="yes"
		fi
528 529 530 531 532
		;;
	esac
    fi
fi

533 534 535 536 537 538 539 540 541
# Can only do AltiVec on PowerPC
if test $altivec = "default"; then
    if test $cpu = "powerpc"; then
        altivec="yes"
    else
        altivec="no"
    fi
fi

542 543
# Add processor-specific flags
TUNECPU="generic"
544
POWERPCMODE="32bits"
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
if test $tune != "generic"; then
    case $tune in
	601|ppc601|PowerPC601)
	    CFLAGS="$CFLAGS -mcpu=601"
	    if test $altivec = "yes"; then
		echo "WARNING: tuning for PPC601 but altivec enabled !";
	    fi
	    TUNECPU=ppc601
	;;
	603*|ppc603*|PowerPC603*)
	    CFLAGS="$CFLAGS -mcpu=603"
	    if test $altivec = "yes"; then
		echo "WARNING: tuning for PPC603 but altivec enabled !";
	    fi
	    TUNECPU=ppc603
	;;
	604*|ppc604*|PowerPC604*)
	    CFLAGS="$CFLAGS -mcpu=604"
	    if test $altivec = "yes"; then
		echo "WARNING: tuning for PPC604 but altivec enabled !";
	    fi
	    TUNECPU=ppc604
	;;
568
	G3|g3|75*|ppc75*|PowerPC75*)
569
	    CFLAGS="$CFLAGS -mcpu=750 -mtune=750 -mpowerpc-gfxopt"
570 571 572 573 574
	    if test $altivec = "yes"; then
		echo "WARNING: tuning for PPC75x but altivec enabled !";
	    fi
	    TUNECPU=ppc750
	;;
575
	G4|g4|745*|ppc745*|PowerPC745*)
576
	    CFLAGS="$CFLAGS -mcpu=7450 -mtune=7450 -mpowerpc-gfxopt"
577 578 579 580 581 582
	    if test $altivec = "no"; then
		echo "WARNING: tuning for PPC745x but altivec disabled !";
	    fi
	    TUNECPU=ppc7450
	;;
	74*|ppc74*|PowerPC74*)
583
	    CFLAGS="$CFLAGS -mcpu=7400 -mtune=7400 -mpowerpc-gfxopt"
584 585 586
	    if test $altivec = "no"; then
		echo "WARNING: tuning for PPC74xx but altivec disabled !";
	    fi
587
	    TUNECPU=ppc7400
588
	;;
589
	G5|g5|970|ppc970|PowerPC970|power4*|Power4*)
590
	    CFLAGS="$CFLAGS -mcpu=970 -mtune=970 -mpowerpc-gfxopt -mpowerpc64"
591 592 593 594
	    if test $altivec = "no"; then
		echo "WARNING: tuning for PPC970 but altivec disabled !";
	    fi
	    TUNECPU=ppc970
595
            POWERPCMODE="64bits"
596 597 598 599 600 601 602
	;;
	*)
	echo "WARNING: unknown CPU "$tune", ignored"
	;;
    esac
fi

603
# AltiVec flags: The FSF version of GCC differs from the Apple version 
604 605
if test $cpu = "powerpc"; then
    if test $altivec = "yes"; then
606
        if test -n "`$cc -v 2>&1 | grep version | grep Apple`"; then
607 608 609 610 611 612 613
            CFLAGS="$CFLAGS -faltivec"
        else
            CFLAGS="$CFLAGS -maltivec -mabi=altivec"
        fi
    fi
fi

614 615 616 617 618 619 620
# See if we have <altivec.h>
cat > $TMPC << EOF
#include <altivec.h>
int main( void ) { return 0; }
EOF

_altivec_h="no"
621
if $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
622 623 624
_altivec_h="yes"
fi

625 626
# See does our compiler support Motorola AltiVec C API
if test $altivec = "yes"; then
627
if test $_altivec_h = "yes"; then
628
cat > $TMPC << EOF
629
#include <altivec.h>
630 631 632 633 634 635
int main(void) {
    vector signed int v1, v2, v3;
    v1 = vec_add(v2,v3);
    return 0;
}
EOF
636 637 638 639 640 641 642 643 644
else
cat > $TMPC << EOF
int main(void) {
    vector signed int v1, v2, v3;
    v1 = vec_add(v2,v3);
    return 0;
}
EOF
fi
645
$cc $CFLAGS -o $TMPE $TMPC 2> /dev/null || altivec="no"
646 647
fi

648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
# Can only do mmi on mips
if test $mmi = "default"; then
    if test $cpu = "mips"; then
        mmi="yes"
    else
        mmi="no"
    fi
fi

# See does our compiler support mmi
if test $mmi = "yes"; then
cat > $TMPC << EOF
int main(void) {
    __asm__ ("lq \$2, 0(\$2)");
    return 0;
}
EOF
665
$cc -o $TMPE $TMPC 2> /dev/null || mmi="no"
666 667
fi

668 669 670
if test "$mingw32" = "yes" ; then
    v4l="no"
    audio_oss="no"
671
    dv1394="no"
F
Fabrice Bellard 已提交
672
    ffserver="no"
673
    network="no"
F
Fabrice Bellard 已提交
674 675 676 677 678 679 680
    LIBPREF=""
    LIBSUF=".lib"
    SLIBPREF=""
    SLIBSUF=".dll"
    EXESUF=".exe"
    prefix="/c/Program Files/FFmpeg"
    bindir="$prefix"
681 682
fi

683 684
cc="${cross_prefix}${cc}"
ar="${cross_prefix}${ar}"
M
Michael Niedermayer 已提交
685
ranlib="${cross_prefix}${ranlib}"
686 687
strip="${cross_prefix}${strip}"

F
Fabrice Bellard 已提交
688 689
if test -z "$cross_prefix" ; then

690 691 692 693 694 695 696 697 698 699
# ---
# big/little endian test
cat > $TMPC << EOF
#include <inttypes.h>
int main(int argc, char ** argv){
	volatile uint32_t i=0x01234567;
	return (*((uint8_t*)(&i))) == 0x67;
}
EOF

700 701
if $cc -o $TMPE $TMPC 2>/dev/null ; then
$TMPE && bigendian="yes"
702 703 704 705
else
echo big/little test failed
fi

F
Fabrice Bellard 已提交
706 707 708 709 710 711 712 713 714
else

# if cross compiling, cannot launch a program, so make a static guess
if test "$cpu" = "powerpc" -o "$cpu" = "mips" ; then
    bigendian="yes"
fi

fi

715 716 717 718 719 720 721 722 723 724 725
# ---
# *inttypes.h* test
cat > $TMPC << EOF
#include <inttypes.h>
int main(int argc, char ** argv){
    return 0;
}
EOF

$cc -o $TMPE $TMPC 2>/dev/null || inttypes="no"

726 727 728 729 730 731 732 733 734 735 736 737
# ---
# *int_fast* test
cat > $TMPC << EOF
#include <inttypes.h>
int main(int argc, char ** argv){
	volatile uint_fast64_t i=0x01234567;
	return 0;
}
EOF

$cc -o $TMPE $TMPC 2>/dev/null || emu_fast_int="yes"

N
Nick Kurshev 已提交
738 739 740 741 742 743 744 745 746 747
# ---
# check availability of some header files

cat > $TMPC << EOF
#include <malloc.h>
int main( void ) { return 0; }
EOF

_memalign=no
_malloc_h=no
748
if $cc -o $TMPE $TMPC 2> /dev/null ; then
N
Nick Kurshev 已提交
749 750 751 752 753 754 755 756 757 758 759
_malloc_h=yes
_memalign=yes
# check for memalign - atmos
cat > $TMPC << EOF
#include <malloc.h>
int main ( void ) {
char *string = NULL;
string = memalign(64, sizeof(char));
return 0;
}
EOF
760
$cc -o $TMPE $TMPC 2> /dev/null || _memalign=no
N
Nick Kurshev 已提交
761 762
fi

763 764 765 766 767 768 769 770 771 772
cat > $TMPC << EOF
#include <time.h>
int main( void ) { localtime_r(NULL, NULL); }
EOF

localtime_r=no
if $cc -o $TMPE $TMPC 2> /dev/null ; then
  localtime_r=yes
fi

773 774 775 776 777 778 779 780 781 782 783
if test "$zlib" = "yes"; then
# check for zlib - mmu_man
cat > $TMPC << EOF
#include <zlib.h>
int main ( void ) {
if (zlibVersion() != ZLIB_VERSION)
   puts("zlib version differs !!!");
   return 1;
return 0;
}
EOF
784
$cc $CFLAGS -o $TMPE $TMPC -lz 2> /dev/null || zlib="no"
785
# $TMPE 2> /dev/null > /dev/null || zlib="no"
786 787 788 789 790 791
# XXX: more tests needed - runtime test
fi
if test "$zlib" = "yes"; then
extralibs="$extralibs -lz"
fi

792 793 794 795 796 797 798 799
# test for lrintf in math.h
cat > $TMPC << EOF
#define _ISOC9X_SOURCE  1
#include <math.h>
int main( void ) { return (lrintf(3.999f) > 0)?0:1; }
EOF

have_lrintf="no"
800
if $cc $extralibs -o $TMPE $TMPC 2> /dev/null ; then
801
  have_lrintf="yes"
802 803 804 805 806
  # allanc@chickenandporn.com: cannot execute cross-compiled
  # code on the host.  Only execute if not cross-compiling.
  if test -z "$cross_prefix" ; then
    $TMPE 2> /dev/null > /dev/null || have_lrintf="no"
  fi
807 808
fi

F
Falk Hüffner 已提交
809 810 811 812 813 814 815 816 817
_restrict=
for restrict_keyword in restrict __restrict__ __restrict; do
  echo "void foo(char * $restrict_keyword p);" > $TMPC
  if $cc -c -o $TMPO $TMPC 2> /dev/null; then
    _restrict=$restrict_keyword
    break;
  fi
done

818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
# test gcc version to see if vector builtins can be used
# currently only used on i386 for MMX builtins
cat > $TMPC << EOF
int main(void) { 
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2)
return 0;
#else
#error no vector builtins
#endif
}
EOF

builtin_vector=no
if $cc -o $TMPO $TMPC 2> /dev/null ; then
  builtin_vector=yes
833 834 835 836 837 838 839 840 841 842 843
fi

# dlopen/dlfcn.h probing

cat > $TMPC << EOF
#include <dlfcn.h>
int main( void ) { return (int) dlopen("foo", 0); }
EOF

ldl=-ldl

844
if $cc -o $TMPE $TMPC -ldl > /dev/null 2>&1 ; then
845 846 847 848
dlfcn=yes
dlopen=yes
fi

849
if $cc -o $TMPE $TMPC > /dev/null 2>&1 ; then
850 851 852 853 854 855 856 857 858
dlfcn=yes
dlopen=yes
ldl=""
fi

cat > $TMPC << EOF
int main( void ) { return (int) dlopen("foo", 0); }
EOF

859
if $cc -o $TMPE $TMPC -ldl > /dev/null 2>&1  ; then
860 861 862
dlopen=yes
fi

863
if $cc -o $TMPE $TMPC > /dev/null 2>&1  ; then
864 865 866 867 868 869 870 871
dlopen=yes
ldl=""
fi

if test "$vhook" = "default" ; then
  vhook="$dlopen"
fi

872 873 874
##########################################
# imlib probe

875 876 877 878 879 880 881
cat > $TMPC << EOF
#include <X11/Xlib.h>
#include <Imlib2.h>
int main( void ) { return (int) imlib_load_font("foo"); }
EOF

imlib2=no
M
Michael Niedermayer 已提交
882
if $cc -o $TMPE $TMPC -lImlib2 -lm > /dev/null 2>&1  ; then
883
imlib2=yes
884 885
fi

886 887 888
##########################################
# freetype probe

889 890 891 892 893 894
cat > $TMPC << EOF
#include <ft2build.h>
int main( void ) { return (int) FT_Init_FreeType(0); }
EOF

freetype2=no
895
if test "x$targetos" != "xBeOS" && test "$os2" != "yes"; then
896
  if (freetype-config --version) >/dev/null 2>&1 ; then
897
    if $cc -o $TMPE $TMPC `freetype-config --cflags` `freetype-config --libs`  > /dev/null 2>&1 ; then
898
      freetype2=yes
899
    fi
900
  fi
901 902
fi

903 904 905 906 907
##########################################
# SDL probe

cat > $TMPC << EOF
#include <SDL.h>
908
#undef main /* We don't want SDL to override our main() */
909 910 911 912 913
int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
EOF

sdl_too_old=no
sdl=no
914
if (sdl-config --version) >/dev/null 2>&1 ; then
915
if $cc -o $TMPE `sdl-config --cflags` $TMPC `sdl-config --libs`  > /dev/null 2>&1  ; then
916 917 918 919 920 921 922
_sdlversion=`sdl-config --version | sed 's/[^0-9]//g'`
if test "$_sdlversion" -lt 121 ; then
sdl_too_old=yes
else
sdl=yes
fi
fi
M
Michael Niedermayer 已提交
923
fi
924

925 926 927 928
##########################################
# texi2html probe

texi2html=no
929
if (texi2html -version) >/dev/null 2>&1; then
930 931 932
texi2html=yes
fi

933
case "`$cc -v 2>&1 | grep version`" in
934 935 936 937 938 939 940
    *gcc*)
	CFLAGS="-Wall $CFLAGS"
	;;
    *)
	;;
esac

F
Fabrice Bellard 已提交
941 942 943 944
if test "$sdl" = "no" ; then
   ffplay=no
fi

945
if test "$debug" = "yes"; then
F
Falk Hüffner 已提交
946
	CFLAGS="-g $CFLAGS"
947 948 949
fi

if test "$optimize" = "small"; then
950
#  CFLAGS=${CFLAGS//-O3/-Os}
951 952 953
  CFLAGS="$CFLAGS -Os"
fi

954
if test "$optimize" = "yes"; then
955
    if test -n "`$cc -v 2>&1 | grep xlc`"; then
956 957 958
	CFLAGS="$CFLAGS -O5"
	LDFLAGS="$LDFLAGS -O5"
    else
F
Falk Hüffner 已提交
959
	CFLAGS="-O3 $CFLAGS"
960
    fi
961 962
fi

F
Fabrice Bellard 已提交
963 964 965 966
if test x"$bindir" = x""; then
bindir="${prefix}/bin"
fi

F
Fabrice Bellard 已提交
967 968 969 970
if test x"$mandir" = x""; then
mandir="${prefix}/man"
fi

F
Fabrice Bellard 已提交
971
echo "Install prefix   $prefix"
972
echo "Source path      $source_path"
F
Fabrice Bellard 已提交
973
echo "C compiler       $cc"
974
echo "make             $make"
975
echo "CPU              $cpu ($tune)"
976
echo "Big Endian       $bigendian"
977
echo "inttypes.h       $inttypes"
978
echo "broken inttypes.h $emu_fast_int"
F
Fabrice Bellard 已提交
979
if test $cpu = "x86"; then
F
Fabrice Bellard 已提交
980
echo "MMX enabled      $mmx"
981
echo "Vector Builtins  $builtin_vector"
F
Fabrice Bellard 已提交
982 983
fi
if test $cpu = "mips"; then
984
echo "MMI enabled      $mmi"
F
Fabrice Bellard 已提交
985 986
fi
if test $cpu = "powerpc"; then
987
echo "AltiVec enabled  $altivec"
F
Fabrice Bellard 已提交
988
fi
F
Fabrice Bellard 已提交
989
echo "gprof enabled    $gprof"
990
echo "zlib enabled     $zlib"
991
echo "mp3lame enabled  $mp3lame"
992
echo "vorbis enabled   $vorbis"
Z
Zdenek Kabelac 已提交
993 994
echo "faad enabled     $faad"
echo "faadbin enabled  $faadbin"
995
echo "faac enabled     $faac"
996
echo "xvid enabled     $xvid"
F
Fabrice Bellard 已提交
997
echo "a52 support      $a52"
Z
Zdenek Kabelac 已提交
998
echo "a52 dlopened     $a52bin"
999
echo "dts support      $dts"
1000
echo "pp support       $pp"
1001 1002
echo "debug symbols    $debug"
echo "optimize         $optimize"
1003
echo "shared pp        $shared_pp"
1004
echo "Video hooking    $vhook"
1005 1006 1007 1008
echo "SDL support      $sdl"
if test $sdl_too_old = "yes"; then
echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support"
fi
M
Michael Niedermayer 已提交
1009
echo "risky / patent encumbered codecs $risky"
1010 1011

if test "$vhook" = "yes" ; then
1012
echo "Imlib2 support   $imlib2"
1013
echo "freetype support $freetype2"
1014
fi
1015
echo "Sun medialib support"  $sunmlib
1016
echo "pthreads support"      $pthreads
Z
Zdenek Kabelac 已提交
1017 1018
echo "AMR-NB float support"  $amr_nb
echo "AMR-NB fixed support"  $amr_nb_fixed
1019
echo "AMR-WB float support"  $amr_wb
1020 1021 1022 1023 1024
if test "$gpl" = "no" ; then
echo "License: LGPL"
else
echo "License: GPL"
fi
F
Fabrice Bellard 已提交
1025

1026
echo "Creating config.mak and config.h"
F
Fabrice Bellard 已提交
1027

1028
echo "# Automatically generated by configure - do not modify" > config.mak
1029
echo "/* Automatically generated by configure - do not modify */" > $TMPH
F
Fabrice Bellard 已提交
1030

1031
echo "prefix=$prefix" >> config.mak
F
Fabrice Bellard 已提交
1032
echo "bindir=$bindir" >> config.mak
F
Fabrice Bellard 已提交
1033
echo "mandir=$mandir" >> config.mak
1034
echo "MAKE=$make" >> config.mak
1035 1036
echo "CC=$cc" >> config.mak
echo "AR=$ar" >> config.mak
M
Michael Niedermayer 已提交
1037
echo "RANLIB=$ranlib" >> config.mak
1038
echo "STRIP=$strip" >> config.mak
1039 1040 1041 1042 1043 1044 1045 1046

# SHCFLAGS is a copy of CFLAGS without -mdynamic-no-pic.  Used when building 
# shared modules on OS/X (vhook/Makefile).
SHCFLAGS=$CFLAGS
if test "$needmdynamicnopic" = yes; then
   CFLAGS="$CFLAGS -mdynamic-no-pic"
fi

N
Nick Kurshev 已提交
1047
echo "OPTFLAGS=$CFLAGS" >> config.mak
1048
echo "SHCFLAGS=$SHCFLAGS">>config.mak
1049
echo "LDFLAGS=$LDFLAGS" >> config.mak
1050
echo "FFSLDFLAGS=$FFSLDFLAGS" >> config.mak
1051
echo "SHFLAGS=$SHFLAGS" >> config.mak
1052 1053 1054 1055
echo "LIBPREF=$LIBPREF" >> config.mak
echo "LIBSUF=$LIBSUF" >> config.mak
echo "SLIBPREF=$SLIBPREF" >> config.mak
echo "SLIBSUF=$SLIBSUF" >> config.mak
F
Fabrice Bellard 已提交
1056
echo "EXESUF=$EXESUF" >> config.mak
1057
echo "TARGET_OS=$TARGET_OS" >> config.mak
Z
Zdenek Kabelac 已提交
1058
if test "$cpu" = "x86" ; then
1059
  echo "TARGET_ARCH_X86=yes" >> config.mak
1060
  echo "#define ARCH_X86 1" >> $TMPH
1061
elif test "$cpu" = "armv4l" ; then
1062
  echo "TARGET_ARCH_ARMV4L=yes" >> config.mak
1063
  echo "#define ARCH_ARMV4L 1" >> $TMPH
1064
elif test "$cpu" = "alpha" ; then
1065
  echo "TARGET_ARCH_ALPHA=yes" >> config.mak
1066
  echo "#define ARCH_ALPHA 1" >> $TMPH
1067 1068 1069
elif test "$cpu" = "sparc64" ; then
  echo "TARGET_ARCH_SPARC64=yes" >> config.mak
  echo "#define ARCH_SPARC64 1" >> $TMPH
1070 1071 1072 1073 1074
  echo "TARGET_ARCH_SPARC=yes" >> config.mak
  echo "#define ARCH_SPARC 1" >> $TMPH
elif test "$cpu" = "sparc" ; then
  echo "TARGET_ARCH_SPARC=yes" >> config.mak
  echo "#define ARCH_SPARC 1" >> $TMPH
1075 1076 1077
elif test "$cpu" = "powerpc" ; then
  echo "TARGET_ARCH_POWERPC=yes" >> config.mak
  echo "#define ARCH_POWERPC 1" >> $TMPH
1078 1079 1080 1081 1082
  if test $POWERPCMODE = "32bits"; then
    echo "#define POWERPC_MODE_32BITS 1" >> $TMPH
  else
    echo "#define POWERPC_MODE_64BITS 1" >> $TMPH
  fi
1083 1084 1085
  if test "$powerpc_perf" = "yes"; then
    echo "#define POWERPC_PERFORMANCE_REPORT 1" >> $TMPH
  fi
1086 1087 1088
elif test "$cpu" = "mips" ; then
  echo "TARGET_ARCH_MIPS=yes" >> config.mak
  echo "#define ARCH_MIPS 1" >> $TMPH
A
Alex Beregszaszi 已提交
1089 1090 1091 1092
elif test "$cpu" = "sh4" ; then
  echo "TARGET_ARCH_SH4=yes" >> config.mak
  echo "#define ARCH_SH4 1" >> $TMPH
fi
1093
echo "#define TUNECPU $TUNECPU" >> $TMPH
1094 1095 1096
if test "$bigendian" = "yes" ; then
  echo "WORDS_BIGENDIAN=yes" >> config.mak
  echo "#define WORDS_BIGENDIAN 1" >> $TMPH
1097
fi
1098 1099
if test "$inttypes" != "yes" ; then
  echo "#define EMULATE_INTTYPES 1" >> $TMPH
1100
fi
1101
if test "$emu_fast_int" = "yes" ; then
1102
  echo "#define EMULATE_FAST_INT 1" >> $TMPH
1103
fi
Z
Zdenek Kabelac 已提交
1104
if test "$mmx" = "yes" ; then
1105
  echo "TARGET_MMX=yes" >> config.mak
1106
  echo "#define HAVE_MMX 1" >> $TMPH
M
Michael Niedermayer 已提交
1107
  echo "#define __CPU__ 586" >> $TMPH
F
Fabrice Bellard 已提交
1108
fi
1109 1110 1111 1112
if test "$builtin_vector" = "yes" ; then
  echo "TARGET_BUILTIN_VECTOR=yes" >> config.mak
  echo "#define HAVE_BUILTIN_VECTOR 1" >> $TMPH
fi
1113 1114 1115 1116
if test "$mmi" = "yes" ; then
  echo "TARGET_MMI=yes" >> config.mak
  echo "#define HAVE_MMI 1" >> $TMPH
fi
1117 1118 1119
if test "$altivec" = "yes" ; then
  echo "TARGET_ALTIVEC=yes" >> config.mak
  echo "#define HAVE_ALTIVEC 1" >> $TMPH
1120 1121
  echo "// Enable the next line to use the reference C code instead of AltiVec" >> $TMPH
  echo "// #define ALTIVEC_USE_REFERENCE_C_CODE 1" >> $TMPH
1122 1123 1124
  if test "$_altivec_h" = "yes" ; then
    echo "#define HAVE_ALTIVEC_H 1" >> $TMPH
  else
A
1l  
Alex Beregszaszi 已提交
1125
    echo "#undef HAVE_ALTIVEC_H" >> $TMPH
1126
  fi
1127
fi
Z
Zdenek Kabelac 已提交
1128
if test "$gprof" = "yes" ; then
1129
  echo "TARGET_GPROF=yes" >> config.mak
1130
  echo "#define HAVE_GPROF 1" >> $TMPH
F
Fabrice Bellard 已提交
1131
fi
1132 1133 1134
if test "$localtime_r" = "yes" ; then
  echo "#define HAVE_LOCALTIME_R 1" >> $TMPH
fi
1135 1136 1137
if test "$imlib2" = "yes" ; then
  echo "HAVE_IMLIB2=yes" >> config.mak
fi
1138 1139 1140
if test "$freetype2" = "yes" ; then
  echo "HAVE_FREETYPE2=yes" >> config.mak
fi
1141 1142 1143 1144 1145
if test "$sunmlib" = "yes" ; then
  echo "HAVE_MLIB=yes" >> config.mak
  echo "#define HAVE_MLIB 1" >> $TMPH
  extralibs="$extralibs -lmlib"
fi
1146 1147 1148
if test "$pthreads" = "yes" ; then
  echo "HAVE_PTHREADS=yes" >> config.mak
  echo "#define HAVE_PTHREADS 1" >> $TMPH
1149
  if test $targetos != FreeBSD; then
1150 1151
     extralibs="$extralibs -lpthread"
  fi
1152
fi
1153 1154 1155 1156 1157
if test "$sdl" = "yes" ; then
  echo "CONFIG_SDL=yes" >> config.mak
  echo "SDL_LIBS=`sdl-config --libs`" >> config.mak
  echo "SDL_CFLAGS=`sdl-config --cflags`" >> config.mak
fi
1158 1159 1160
if test "$texi2html" = "yes"; then
  echo "BUILD_DOC=yes" >> config.mak
fi
1161 1162 1163
if test "$have_lrintf" = "yes" ; then
  echo "#define HAVE_LRINTF 1" >> $TMPH
fi
1164 1165 1166
if test "$vhook" = "yes" ; then
  echo "BUILD_VHOOK=yes" >> config.mak
  echo "#define HAVE_VHOOK 1" >> $TMPH
1167
  extralibs="$extralibs $ldl"
1168
fi
Z
Zdenek Kabelac 已提交
1169
if test "$lshared" = "yes" ; then
N
Nick Kurshev 已提交
1170
  echo "BUILD_SHARED=yes" >> config.mak
F
Fabrice Bellard 已提交
1171
  echo "PIC=-fPIC" >> config.mak
N
Nick Kurshev 已提交
1172
fi
1173
echo "EXTRALIBS=$extralibs" >> config.mak
1174 1175 1176
version=`grep '#define FFMPEG_VERSION ' $source_path/libavcodec/avcodec.h |
 cut -d '"' -f 2`
echo "VERSION=$version" >>config.mak
1177
# if you do not want to use encoders, disable that.
1178
echo "#define CONFIG_ENCODERS 1" >> $TMPH
1179 1180 1181
echo "CONFIG_ENCODERS=yes" >> config.mak

# if you do not want to use decoders, disable that.
1182
echo "#define CONFIG_DECODERS 1" >> $TMPH
1183 1184
echo "CONFIG_DECODERS=yes" >> config.mak

F
Fabrice Bellard 已提交
1185 1186 1187 1188
# AC3
if test "$a52" = "yes" ; then
  echo "#define CONFIG_AC3 1" >> $TMPH
  echo "CONFIG_AC3=yes" >> config.mak
1189

F
Fabrice Bellard 已提交
1190 1191 1192 1193 1194 1195
  if test "$a52bin" = "yes" ; then
    echo "#define CONFIG_A52BIN 1" >> $TMPH
    echo "CONFIG_A52BIN=yes" >> config.mak
  fi
fi

1196 1197 1198 1199 1200 1201
# DTS
if test "$dts" = "yes" ; then
  echo "#define CONFIG_DTS 1" >> $TMPH
  echo "CONFIG_DTS=yes" >> config.mak
fi

1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
# PP
if test "$pp" = "yes" ; then
  echo "#define CONFIG_PP 1" >> $TMPH
  echo "CONFIG_PP=yes" >> config.mak

  if test "$shared_pp" = "yes" ; then
    echo "#define SHARED_PP 1" >> $TMPH
    echo "SHARED_PP=yes" >> config.mak
  fi
fi

1213 1214 1215 1216 1217
# mpeg audio high precision mode
if test "$mpegaudio_hp" = "yes" ; then
  echo "#define CONFIG_MPEGAUDIO_HP 1" >> $TMPH
fi

F
Fabrice Bellard 已提交
1218 1219 1220 1221 1222
if test "$v4l" = "yes" ; then
  echo "#define CONFIG_VIDEO4LINUX 1" >> $TMPH
  echo "CONFIG_VIDEO4LINUX=yes" >> config.mak
fi

1223 1224 1225 1226 1227
if test "$dv1394" = "yes" ; then
  echo "#define CONFIG_DV1394 1" >> $TMPH
  echo "CONFIG_DV1394=yes" >> config.mak
fi

1228 1229 1230 1231 1232 1233 1234 1235
if test "$dlopen" = "yes" ; then
  echo "#define CONFIG_HAVE_DLOPEN 1" >> $TMPH
fi

if test "$dlfcn" = "yes" ; then
  echo "#define CONFIG_HAVE_DLFCN 1" >> $TMPH
fi

F
Fabrice Bellard 已提交
1236 1237 1238
if test "$audio_oss" = "yes" ; then
  echo "#define CONFIG_AUDIO_OSS 1" >> $TMPH
  echo "CONFIG_AUDIO_OSS=yes" >> config.mak
Z
Zdenek Kabelac 已提交
1239 1240
fi

1241 1242 1243 1244 1245
if test "$audio_beos" = "yes" ; then
  echo "#define CONFIG_AUDIO_BEOS 1" >> $TMPH
  echo "CONFIG_AUDIO_BEOS=yes" >> config.mak
fi

F
Fabrice Bellard 已提交
1246 1247 1248
if test "$network" = "yes" ; then
  echo "#define CONFIG_NETWORK 1" >> $TMPH
  echo "CONFIG_NETWORK=yes" >> config.mak
1249
fi
1250

1251 1252 1253 1254 1255
if test "$zlib" = "yes" ; then
  echo "#define CONFIG_ZLIB 1" >> $TMPH
  echo "CONFIG_ZLIB=yes" >> config.mak
fi

Z
Zdenek Kabelac 已提交
1256
if test "$mp3lame" = "yes" ; then
1257
  echo "#define CONFIG_MP3LAME 1" >> $TMPH
1258 1259 1260
  echo "CONFIG_MP3LAME=yes" >> config.mak
fi

1261 1262 1263 1264 1265
if test "$vorbis" = "yes" ; then
  echo "#define CONFIG_VORBIS 1" >> $TMPH
  echo "CONFIG_VORBIS=yes" >> config.mak
fi

1266 1267 1268 1269 1270 1271 1272
if test "$faad" = "yes" ; then
  echo "#define CONFIG_FAAD 1" >> $TMPH
  echo "CONFIG_FAAD=yes" >> config.mak
fi

if test "$faadbin" = "yes" ; then
  echo "#define CONFIG_FAADBIN 1" >> $TMPH
Z
Zdenek Kabelac 已提交
1273
  echo "CONFIG_FAADBIN=yes" >> config.mak
1274 1275
fi

1276 1277 1278 1279 1280
if test "$faac" = "yes" ; then
  echo "#define CONFIG_FAAC 1" >> $TMPH
  echo "CONFIG_FAAC=yes" >> config.mak
fi

1281 1282 1283 1284 1285
if test "$xvid" = "yes" ; then
  echo "#define CONFIG_XVID 1" >> $TMPH
  echo "CONFIG_XVID=yes" >> config.mak
fi

1286 1287 1288
if test "$mingw32" = "yes" ; then
  echo "#define CONFIG_WIN32 1" >> $TMPH
  echo "CONFIG_WIN32=yes" >> config.mak
1289 1290
  echo "HAVE_W32THREADS=yes" >> config.mak
  echo "#define HAVE_W32THREADS 1" >> $TMPH
1291
  echo "#ifndef __MINGW32__" >> $TMPH
1292
  echo "#define __MINGW32__ 1" >> $TMPH
1293
  echo "#endif" >> $TMPH
1294 1295
fi

1296 1297 1298 1299 1300
if test "$os2" = "yes" ; then
  echo "#define CONFIG_OS2 1" >> $TMPH
  echo "CONFIG_OS2=yes" >> config.mak
fi

1301 1302 1303 1304
if test "$TARGET_OS" = "SunOS" ; then
  echo "#define CONFIG_SUNOS 1" >> $TMPH
fi

1305 1306 1307 1308 1309
if test "$darwin" = "yes"; then
  echo "#define CONFIG_DARWIN 1"  >> $TMPH
  echo "CONFIG_DARWIN=yes" >> config.mak
fi

Z
Zdenek Kabelac 已提交
1310
if test "$_malloc_h" = "yes" ; then
1311
  echo "#define HAVE_MALLOC_H 1" >> $TMPH
N
Nick Kurshev 已提交
1312
else
1313
  echo "#undef  HAVE_MALLOC_H" >> $TMPH
N
Nick Kurshev 已提交
1314 1315
fi

Z
Zdenek Kabelac 已提交
1316
if test "$_memalign" = "yes" ; then
1317 1318 1319 1320 1321
  echo "#define HAVE_MEMALIGN 1" >> $TMPH
else
  echo "#undef  HAVE_MEMALIGN" >> $TMPH
fi

1322 1323 1324 1325 1326
if test "$memalignhack" = "yes" ; then
  echo "#define MEMALIGN_HACK 1" >> $TMPH
fi


1327 1328 1329 1330 1331
if test "$netserver" = "yes" ; then
  echo "#define CONFIG_BEOS_NETSERVER 1" >> $TMPH
  echo "CONFIG_BEOS_NETSERVER=yes" >> config.mak
fi

1332 1333 1334 1335
if test "$need_inet_aton" = "yes" ; then
  echo "NEED_INET_ATON=yes" >> config.mak
fi

Z
Zdenek Kabelac 已提交
1336
if test "$simpleidct" = "yes" ; then
1337 1338 1339
  echo "#define SIMPLE_IDCT 1" >> $TMPH
fi

1340 1341 1342 1343 1344
if test "$ffserver" = "yes" ; then
  echo "#define CONFIG_FFSERVER 1" >> $TMPH
  echo "CONFIG_FFSERVER=yes" >> config.mak
fi

1345 1346 1347 1348
if test "$ffplay" = "yes" ; then
  echo "CONFIG_FFPLAY=yes" >> config.mak
fi

M
Michael Niedermayer 已提交
1349 1350 1351 1352 1353
if test "$risky" = "yes" ; then
  echo "#define CONFIG_RISKY 1" >> $TMPH
  echo "CONFIG_RISKY=yes" >> config.mak
fi

1354 1355 1356 1357 1358
if test "$gpl" = "yes" ; then
  echo "#define CONFIG_GPL 1" >> $TMPH
  echo "CONFIG_GPL=yes" >> config.mak
fi

F
Falk Hüffner 已提交
1359 1360
echo "#define restrict $_restrict" >> $TMPH

1361 1362 1363 1364
if test "$optimize" = "small"; then
  echo "#define always_inline"  >> $TMPH
fi

1365 1366
# build tree in object directory if source path is different from current one
if test "$source_path_used" = "yes" ; then
F
Fabrice Bellard 已提交
1367
    DIRS="libavformat libavcodec libavcodec/alpha libavcodec/armv4l libavcodec/i386 \
1368 1369
          libavcodec/ppc libavcodec/liba52 libavcodec/mlib libavcodec/libpostproc tests vhook"
    FILES="Makefile libavformat/Makefile libavcodec/Makefile libavcodec/libpostproc/Makefile tests/Makefile vhook/Makefile"
1370 1371 1372 1373 1374 1375 1376 1377 1378
    for dir in $DIRS ; do
            mkdir -p $dir
    done
    for f in $FILES ; do
        ln -sf $source_path/$f $f
    done
fi
echo "SRC_PATH=$source_path" >> config.mak

1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
if test "$amr_wb" = "yes" ; then
  echo "#define AMR_WB 1" >> $TMPH
  echo "AMR_WB=yes" >> config.mak
  echo
  echo "AMR WB FLOAT NOTICE ! Make sure you have downloaded TS26.204"
  echo "V5.1.0 from "
  echo "http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip"
  echo "and extracted the source to libavcodec/amrwb_float"
  echo
fi

1390 1391 1392 1393
if test "$amr_nb" = "yes" ; then
  echo "#define AMR_NB 1" >> $TMPH
  echo "AMR_NB=yes" >> config.mak
  echo
Z
Zdenek Kabelac 已提交
1394 1395 1396 1397 1398
if test "$amr_nb_fixed" = "yes" ; then
  echo "AMR_NB_FIXED=yes" >> config.mak
  echo "#define AMR_NB_FIXED 1" >> $TMPH
  echo "AMR NB FIXED POINT NOTICE! Make sure you have downloaded TS26.073 "
  echo "REL-5 version 5.1.0 from "
1399 1400
  echo "http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26073-510.zip"
  echo "and extracted src to libavcodec/amr"
Z
Zdenek Kabelac 已提交
1401 1402 1403 1404 1405 1406 1407 1408
  echo "You must also add -DMMS_IO and remove -pedantic-errors to/from CFLAGS in libavcodec/amr/makefile."
  echo "i.e. CFLAGS = -Wall -I. \$(CFLAGS_\$(MODE)) -D\$(VAD) -DMMS_IO"
  echo
else
  echo "AMR NB FLOAT NOTICE ! Make sure you have downloaded TS26.104"
  echo "REL-5 V5.1.0 from "
  echo "http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26104-510.zip"
  echo "and extracted the source to libavcodec/amr_float"
M
Michael Niedermayer 已提交
1409
  echo "and if u try this on an alpha, u may need to change Word32 to int in amr/typedef.h"
1410 1411 1412
  echo
fi

Z
Zdenek Kabelac 已提交
1413 1414
fi

Z
Zdenek Kabelac 已提交
1415
diff $TMPH config.h >/dev/null 2>&1
1416 1417
if test $? -ne 0 ; then
	mv -f $TMPH config.h
N
Nick Kurshev 已提交
1418
else
1419
	echo "config.h is unchanged"
N
Nick Kurshev 已提交
1420 1421
fi

1422
rm -f $TMPO $TMPC $TMPE $TMPS $TMPH