mirror of https://github.com/mpv-player/mpv
3306 lines
83 KiB
Bash
Executable File
3306 lines
83 KiB
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# Original version (C) 2000 Pontscho/fresh!mindworkz
|
|
# pontscho@makacs.poliod.hu
|
|
#
|
|
# History / Contributors: Check the Subversion log.
|
|
#
|
|
# Cleanups all over the place (c) 2001 pl
|
|
#
|
|
#
|
|
# This configure script is *not* autoconf-based and has different semantics.
|
|
# It attempts to autodetect all settings and options where possible. It is
|
|
# possible to override autodetection with the --enable-option/--disable-option
|
|
# command line parameters. --enable-option forces the option on skipping
|
|
# autodetection. Yes, this means that compilation may fail and yes, this is not
|
|
# how autoconf-based configure scripts behave.
|
|
#
|
|
# configure generates a series of configuration files:
|
|
# - config.h contains #defines that are used in the C code.
|
|
# - config.mak is included from the Makefiles.
|
|
#
|
|
# If you want to add a new check for $feature, look at the existing checks
|
|
# and try to use helper functions where you can.
|
|
#
|
|
# Furthermore you need to add the variable _feature to the list of default
|
|
# settings and set it to one of yes/no/auto. Also add appropriate
|
|
# --enable-feature/--disable-feature command line options.
|
|
# The results of the check should be written to config.h and config.mak
|
|
# at the end of this script. The variable names used for this should be
|
|
# uniform, i.e. if the option is named 'feature':
|
|
#
|
|
# _feature : should have a value of yes/no/auto
|
|
# def_feature : '#define ... 1' or '#undef ...' for conditional compilation
|
|
# _ld_feature : '-L/path/dir -lfeature' GCC options
|
|
#
|
|
#############################################################################
|
|
|
|
# Prevent locale nonsense from breaking basic text processing utils
|
|
export LC_ALL=C
|
|
|
|
# Store the configure line that was used
|
|
configuration="$*"
|
|
|
|
# Prefer these macros to full length text !
|
|
# These macros only return an error code - NO display is done
|
|
command_check() {
|
|
echo >> "$TMPLOG"
|
|
echo "$@" >> "$TMPLOG"
|
|
"$@" >> "$TMPLOG" 2>&1
|
|
TMPRES="$?"
|
|
echo >> "$TMPLOG"
|
|
return "$TMPRES"
|
|
}
|
|
|
|
compile_check() {
|
|
source="$1"
|
|
shift
|
|
echo >> "$TMPLOG"
|
|
cat "$source" >> "$TMPLOG"
|
|
echo >> "$TMPLOG"
|
|
echo "$_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS $source $extra_cflags $_ld_static $extra_ldflags $libs_mplayer -o $TMPEXE $@" >> "$TMPLOG"
|
|
rm -f "$TMPEXE"
|
|
$_cc $WARNFLAGS $WARN_CFLAGS $CFLAGS "$source" $extra_cflags $_ld_static $extra_ldflags $libs_mplayer -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
|
|
TMPRES="$?"
|
|
echo >> "$TMPLOG"
|
|
echo >> "$TMPLOG"
|
|
return "$TMPRES"
|
|
}
|
|
|
|
cc_check() {
|
|
compile_check $TMPC $@
|
|
}
|
|
|
|
cxx_check() {
|
|
compile_check $TMPCPP $@ -lstdc++
|
|
}
|
|
|
|
cflag_check() {
|
|
cat > $TMPC << EOF
|
|
int main(void) { return 0; }
|
|
EOF
|
|
compile_check $TMPC $@
|
|
}
|
|
|
|
header_check() {
|
|
cat > $TMPC << EOF
|
|
#include <$1>
|
|
int main(void) { return 0; }
|
|
EOF
|
|
shift
|
|
compile_check $TMPC $@
|
|
}
|
|
|
|
return_check() {
|
|
cat > $TMPC << EOF
|
|
#include <$1>
|
|
int main(void) { return $2; }
|
|
EOF
|
|
shift 2
|
|
compile_check $TMPC $@
|
|
}
|
|
|
|
statement_check() {
|
|
cat > $TMPC << EOF
|
|
#include <$1>
|
|
int main(void) { $2; return 0; }
|
|
EOF
|
|
shift
|
|
shift
|
|
compile_check $TMPC $@
|
|
}
|
|
|
|
define_statement_check() {
|
|
cat > $TMPC << EOF
|
|
#define $1
|
|
#include <$2>
|
|
int main(void) { $3; return 0; }
|
|
EOF
|
|
shift 3
|
|
compile_check $TMPC $@
|
|
}
|
|
|
|
return_statement_check() {
|
|
cat > $TMPC << EOF
|
|
#include <$1>
|
|
int main(void) { $2; return $3; }
|
|
EOF
|
|
shift 3
|
|
compile_check $TMPC $@
|
|
}
|
|
|
|
inline_asm_check() {
|
|
cat > $TMPC << EOF
|
|
int main(void) { __asm__ volatile ($1); return 0; }
|
|
EOF
|
|
shift
|
|
compile_check $TMPC $@
|
|
}
|
|
|
|
# The following checks are special and should only be used with broken and
|
|
# non-selfsufficient headers that do not include all of their dependencies.
|
|
|
|
header_check_broken() {
|
|
cat > $TMPC << EOF
|
|
#include <$1>
|
|
#include <$2>
|
|
int main(void) { return 0; }
|
|
EOF
|
|
shift
|
|
shift
|
|
compile_check $TMPC $@
|
|
}
|
|
|
|
statement_check_broken() {
|
|
cat > $TMPC << EOF
|
|
#include <$1>
|
|
#include <$2>
|
|
int main(void) { $3; return 0; }
|
|
EOF
|
|
shift 3
|
|
compile_check $TMPC $@
|
|
}
|
|
|
|
pkg_config_add() {
|
|
unset IFS # shell should not be used for programming
|
|
echo >> "$TMPLOG"
|
|
echo "$_pkg_config --cflags $@" >> "$TMPLOG"
|
|
ctmp=$($_pkg_config --cflags "$@" 2>> "$TMPLOG") || return $?
|
|
echo >> "$TMPLOG"
|
|
echo "$_pkg_config --libs $@" >> "$TMPLOG"
|
|
ltmp=$($_pkg_config --libs "$@" 2>> "$TMPLOG") || return $?
|
|
echo >> "$TMPLOG"
|
|
echo "cflags: $ctmp" >> "$TMPLOG"
|
|
echo "libs: $ltmp" >> "$TMPLOG"
|
|
echo >> "$TMPLOG"
|
|
extra_cflags="$extra_cflags $ctmp"
|
|
libs_mplayer="$libs_mplayer $ltmp"
|
|
}
|
|
|
|
tmp_run() {
|
|
"$TMPEXE" >> "$TMPLOG" 2>&1
|
|
}
|
|
|
|
# Display error message, flushes tempfile, exit
|
|
die () {
|
|
echo
|
|
echo "Error: $@" >&2
|
|
echo >&2
|
|
rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
|
|
echo "Check \"$TMPLOG\" if you do not understand why it failed."
|
|
exit 1
|
|
}
|
|
|
|
# OS test booleans functions
|
|
issystem() {
|
|
test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
|
|
}
|
|
cygwin() { issystem "CYGWIN"; }
|
|
darwin() { issystem "Darwin"; }
|
|
dragonfly() { issystem "DragonFly"; }
|
|
freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
|
|
gnu() { issystem "GNU"; }
|
|
linux() { issystem "Linux"; }
|
|
mingw32() { issystem "MINGW32"; }
|
|
morphos() { issystem "MorphOS"; }
|
|
netbsd() { issystem "NetBSD"; }
|
|
openbsd() { issystem "OpenBSD"; }
|
|
win32() { cygwin || mingw32; }
|
|
|
|
# arch test boolean functions
|
|
x86_32() {
|
|
case "$host_arch" in
|
|
i[3-9]86|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
|
|
*) return 1 ;;
|
|
esac
|
|
}
|
|
|
|
x86_64() {
|
|
case "$host_arch" in
|
|
x86_64|amd64) return 0 ;;
|
|
*) return 1 ;;
|
|
esac
|
|
}
|
|
|
|
x86() {
|
|
x86_32 || x86_64
|
|
}
|
|
|
|
ppc() {
|
|
case "$host_arch" in
|
|
ppc|ppc64|powerpc|powerpc64) return 0;;
|
|
*) return 1;;
|
|
esac
|
|
}
|
|
|
|
alpha() {
|
|
case "$host_arch" in
|
|
alpha*) return 0;;
|
|
*) return 1;;
|
|
esac
|
|
}
|
|
|
|
arm() {
|
|
case "$host_arch" in
|
|
arm*) return 0;;
|
|
*) return 1;;
|
|
esac
|
|
}
|
|
|
|
# Use this before starting a check
|
|
echocheck() {
|
|
echo "============ Checking for $@ ============" >> "$TMPLOG"
|
|
echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
|
|
}
|
|
|
|
# Use this to echo the results of a check
|
|
echores() {
|
|
if test "$res_comment" ; then
|
|
res_comment="($res_comment)"
|
|
fi
|
|
echo "Result is: $@ $res_comment" >> "$TMPLOG"
|
|
echo "##########################################" >> "$TMPLOG"
|
|
echo "" >> "$TMPLOG"
|
|
echo "$@ $res_comment"
|
|
res_comment=""
|
|
}
|
|
#############################################################################
|
|
|
|
# Check how echo works in this /bin/sh
|
|
case $(echo -n) in
|
|
-n) _echo_n= _echo_c='\c' ;; # SysV echo
|
|
*) _echo_n='-n ' _echo_c= ;; # BSD echo
|
|
esac
|
|
|
|
|
|
show_help(){
|
|
cat << EOF
|
|
Usage: $0 [OPTIONS]...
|
|
|
|
Configuration:
|
|
-h, --help display this help and exit
|
|
|
|
Installation directories:
|
|
--prefix=DIR prefix directory for installation [/usr/local]
|
|
--bindir=DIR directory for installing binaries [PREFIX/bin]
|
|
--datadir=DIR directory for installing machine independent
|
|
data files (skins, etc) [PREFIX/share/mpv]
|
|
--mandir=DIR directory for installing man pages [PREFIX/share/man]
|
|
--confdir=DIR directory for installing configuration files
|
|
[PREFIX/etc/mpv]
|
|
--localedir=DIR directory for gettext locales [PREFIX/share/locale]
|
|
|
|
Optional features:
|
|
--disable-encoding disable encoding functionality [enable]
|
|
--disable-libguess disable libguess [autodetect]
|
|
--enable-termcap use termcap database for key codes [autodetect]
|
|
--enable-termios use termios database for key codes [autodetect]
|
|
--disable-iconv disable iconv for encoding conversion [autodetect]
|
|
--enable-lirc enable LIRC (remote control) support [autodetect]
|
|
--enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
|
|
--enable-joystick enable joystick support [disable]
|
|
--disable-vm disable X video mode extensions [autodetect]
|
|
--disable-xf86keysym disable support for multimedia keys [autodetect]
|
|
--enable-radio enable radio interface [disable]
|
|
--enable-radio-capture enable radio capture (through PCI/line-in) [disable]
|
|
--disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
|
|
--disable-tv disable TV interface (TV/DVB grabbers) [enable]
|
|
--disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
|
|
--disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
|
|
--enable-smb enable Samba (SMB) input [autodetect]
|
|
--disable-libquvi4 disable libquvi 0.4.x [autodetect]
|
|
--disable-libquvi9 disable libquvi 0.9.x [autodetect]
|
|
--enable-lcms2 enable LCMS2 support [autodetect]
|
|
--disable-vcd disable VCD support [autodetect]
|
|
--disable-bluray disable Blu-ray support [autodetect]
|
|
--disable-dvdread disable libdvdread [autodetect]
|
|
--disable-enca disable ENCA charset oracle library [autodetect]
|
|
--enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
|
|
--disable-pthreads disable Posix threads support [autodetect]
|
|
--disable-libass disable subtitle rendering with libass [autodetect]
|
|
--disable-libass-osd disable OSD rendering with libass [autodetect]
|
|
--enable-rpath enable runtime linker path for extra libs [disabled]
|
|
--disable-libpostproc disable postprocess filter (vf_pp) [autodetect]
|
|
--disable-libavdevice enable libavdevice demuxers [autodetect]
|
|
--disable-libavfilter enable libavfilter [autodetect]
|
|
--disable-vf-lavfi enable vf_lavfi libavfilter bridge [audodetect]
|
|
--disable-af-lavfi enable af_lavfi libavfilter bridge [audodetect]
|
|
|
|
Codecs:
|
|
--enable-mng enable MNG input support [autodetect]
|
|
--enable-jpeg enable JPEG input/output support [autodetect]
|
|
--enable-libcdio enable libcdio support [autodetect]
|
|
--enable-libav skip Libav autodetection [autodetect]
|
|
--disable-ladspa disable LADSPA plugin support [autodetect]
|
|
--disable-libbs2b disable libbs2b audio filter support [autodetect]
|
|
--disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
|
|
|
|
Resampler:
|
|
--disable-libavresample check for libswresample only [autodetect]
|
|
|
|
Video output:
|
|
--enable-gl enable OpenGL video output [autodetect]
|
|
--enable-caca enable CACA video output [autodetect]
|
|
--enable-direct3d enable Direct3D video output [autodetect]
|
|
--enable-sdl enable SDL audio output [disable]
|
|
--enable-sdl2 enable SDL 2.0+ audio and video output [disable]
|
|
--enable-xv enable Xv video output [autodetect]
|
|
--enable-vdpau enable VDPAU acceleration [autodetect]
|
|
--enable-vm enable XF86VidMode support [autodetect]
|
|
--enable-xinerama enable Xinerama support [autodetect]
|
|
--enable-x11 enable X11 video output [autodetect]
|
|
--enable-wayland enable Wayland video output [autodetect]
|
|
--disable-xss disable screensaver support via xss [autodetect]
|
|
--disable-corevideo disable CoreVideo video output [autodetect]
|
|
--disable-cocoa disable Cocoa OpenGL backend [autodetect]
|
|
|
|
Audio output:
|
|
--disable-alsa disable ALSA audio output [autodetect]
|
|
--disable-ossaudio disable OSS audio output [autodetect]
|
|
--disable-rsound disable RSound audio output [autodetect]
|
|
--disable-pulse disable Pulseaudio audio output [autodetect]
|
|
--disable-portaudio disable PortAudio audio output [autodetect]
|
|
--disable-jack disable JACK audio output [autodetect]
|
|
--enable-openal enable OpenAL audio output [disable]
|
|
--disable-coreaudio disable CoreAudio audio output [autodetect]
|
|
--disable-dsound disable DirectSound audio output [autodetect]
|
|
--disable-wasapi0 disable WASAPI (event mode) audio output [autodetect]
|
|
--disable-select disable using select() on the audio device [enable]
|
|
|
|
Localization options:
|
|
--enable-gettext enable gettext() usage [disable]
|
|
|
|
Miscellaneous options:
|
|
--enable-cross-compile enable cross-compilation [disable]
|
|
--cc=COMPILER C compiler to build mpv [gcc]
|
|
--pkg-config=PKGCONFIG pkg-config to find some libraries [pkg-config]
|
|
--windres=WINDRES windres to build mpv [windres]
|
|
--target=PLATFORM target platform (i386-linux, arm-linux, etc)
|
|
--enable-static build a statically linked binary
|
|
--with-install=PATH path to a custom install program
|
|
--disable-manpage do not build and install manpage [auto]
|
|
--disable-build-date do not include binary compile time
|
|
|
|
Advanced options:
|
|
--enable-shm enable shm [autodetect]
|
|
--disable-debug compile-in debugging information [enable]
|
|
--disable-optimization compile without -O2 [enable]
|
|
|
|
Use these options if autodetection fails:
|
|
--extra-cflags=FLAGS extra CFLAGS
|
|
--extra-ldflags=FLAGS extra LDFLAGS
|
|
--extra-libs=FLAGS extra linker flags
|
|
--extra-libs-mpv=FLAGS extra linker flags for mpv
|
|
|
|
This configure script is NOT autoconf-based, even though its output is similar.
|
|
It will try to autodetect all configuration options. If you --enable an option
|
|
it will be forcefully turned on, skipping autodetection. This can break
|
|
compilation, so you need to know what you are doing.
|
|
EOF
|
|
exit 0
|
|
} #show_help()
|
|
|
|
# GOTCHA: the variables below defines the default behavior for autodetection
|
|
# and have - unless stated otherwise - at least 2 states : yes no
|
|
# If autodetection is available then the third state is: auto
|
|
_install=install
|
|
_pkg_config=auto
|
|
_windres=auto
|
|
_cc=auto
|
|
test "$CC" && _cc="$CC"
|
|
_debug=-g
|
|
_opt=-O2
|
|
_cross_compile=no
|
|
_prefix="/usr/local"
|
|
ffmpeg=auto
|
|
_encoding=yes
|
|
_disable_avresample=no
|
|
_x11=auto
|
|
_wayland=auto
|
|
_xss=auto
|
|
_xv=auto
|
|
_vdpau=auto
|
|
_direct3d=auto
|
|
_sdl=no
|
|
_sdl2=no
|
|
_dsound=auto
|
|
_wasapi0=auto
|
|
_mng=auto
|
|
_jpeg=auto
|
|
_gl=auto
|
|
_aa=auto
|
|
_caca=auto
|
|
_dvb=auto
|
|
_iconv=auto
|
|
_ossaudio=auto
|
|
_rsound=auto
|
|
_pulse=auto
|
|
_portaudio=auto
|
|
_jack=auto
|
|
_openal=no
|
|
_libcdio=auto
|
|
_mpg123=auto
|
|
_ladspa=auto
|
|
_libbs2b=auto
|
|
_vcd=auto
|
|
_bluray=auto
|
|
_dvdread=auto
|
|
_lcms2=auto
|
|
_xinerama=auto
|
|
_vm=auto
|
|
_xf86keysym=auto
|
|
_alsa=auto
|
|
_select=yes
|
|
_radio=no
|
|
_radio_capture=no
|
|
_radio_v4l2=auto
|
|
_tv=yes
|
|
_tv_v4l2=auto
|
|
_pvr=auto
|
|
_smb=auto
|
|
_libquvi4=auto
|
|
_libquvi9=auto
|
|
_libguess=auto
|
|
_joystick=no
|
|
_lirc=auto
|
|
_lircc=auto
|
|
_termcap=auto
|
|
_termios=auto
|
|
_shm=auto
|
|
_gettext=no
|
|
_cdda=auto
|
|
_coreaudio=auto
|
|
_corevideo=auto
|
|
_cocoa=auto
|
|
_macosx_bundle=auto
|
|
_enca=auto
|
|
_pthreads=auto
|
|
_ass=auto
|
|
_libass_osd=auto
|
|
_rpath=no
|
|
libpostproc=auto
|
|
libavfilter=auto
|
|
vf_lavfi=auto
|
|
af_lavfi=auto
|
|
libavdevice=auto
|
|
_stream_cache=yes
|
|
_priority=no
|
|
def_dos_paths="#define HAVE_DOS_PATHS 0"
|
|
def_priority="#undef CONFIG_PRIORITY"
|
|
_build_man=auto
|
|
_build_date=yes
|
|
for ac_option do
|
|
case "$ac_option" in
|
|
--help|-help|-h)
|
|
show_help
|
|
;;
|
|
--prefix=*)
|
|
_prefix=$(echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
--bindir=*)
|
|
_bindir=$(echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
--mandir=*)
|
|
_mandir=$(echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
--confdir=*)
|
|
_confdir=$(echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
--localedir=*)
|
|
_localedir=$(echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
|
|
--with-install=*)
|
|
_install=$(echo $ac_option | cut -d '=' -f 2 )
|
|
;;
|
|
|
|
--extra-cflags=*)
|
|
extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
|
|
;;
|
|
--extra-ldflags=*)
|
|
extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
|
|
;;
|
|
--extra-libs=*)
|
|
extra_libs=$(echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
--extra-libs-mpv=*)
|
|
libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
|
|
--target=*)
|
|
_target=$(echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
--cc=*)
|
|
_cc=$(echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
--pkg-config=*)
|
|
_pkg_config=$(echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
--windres=*)
|
|
_windres=$(echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
|
|
--enable-static)
|
|
_ld_static='-static'
|
|
;;
|
|
--disable-static)
|
|
_ld_static=''
|
|
;;
|
|
--enable-debug)
|
|
_debug='-g'
|
|
;;
|
|
--enable-debug=*)
|
|
_debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
--disable-debug)
|
|
_debug=
|
|
;;
|
|
--enable-optimization)
|
|
_opt='-O2'
|
|
;;
|
|
--enable-optimization=*)
|
|
_opt=$(echo $_echo_n '-O'$_echo_c; echo $ac_option | cut -d '=' -f 2)
|
|
;;
|
|
--disable-optimization)
|
|
_opt=
|
|
;;
|
|
--enable-gettext) _gettext=yes ;;
|
|
--disable-gettext) _gettext=no ;;
|
|
--enable-cross-compile) _cross_compile=yes ;;
|
|
--disable-cross-compile) _cross_compile=no ;;
|
|
--enable-encoding) _encoding=yes ;;
|
|
--disable-encoding) _encoding=no ;;
|
|
--enable-wayland) _wayland=yes ;;
|
|
--disable-wayland) _wayland=no ;;
|
|
--enable-x11) _x11=yes ;;
|
|
--disable-x11) _x11=no ;;
|
|
--enable-xss) _xss=yes ;;
|
|
--disable-xss) _xss=no ;;
|
|
--enable-xv) _xv=yes ;;
|
|
--disable-xv) _xv=no ;;
|
|
--enable-vdpau) _vdpau=yes ;;
|
|
--disable-vdpau) _vdpau=no ;;
|
|
--enable-direct3d) _direct3d=yes ;;
|
|
--disable-direct3d) _direct3d=no ;;
|
|
--enable-sdl) _sdl=yes ;;
|
|
--disable-sdl) _sdl=no ;;
|
|
--enable-sdl2) _sdl2=yes ;;
|
|
--disable-sdl2) _sdl2=no ;;
|
|
--enable-dsound) _dsound=yes ;;
|
|
--disable-dsound) _dsound=no ;;
|
|
--enable-wasapi0) _wasapi0=yes ;;
|
|
--disable-wasapi0) _wasapi0=no ;;
|
|
--enable-mng) _mng=yes ;;
|
|
--disable-mng) _mng=no ;;
|
|
--enable-jpeg) _jpeg=yes ;;
|
|
--disable-jpeg) _jpeg=no ;;
|
|
--enable-gl) _gl=yes ;;
|
|
--disable-gl) _gl=no ;;
|
|
--enable-caca) _caca=yes ;;
|
|
--disable-caca) _caca=no ;;
|
|
--enable-dvb) _dvb=yes ;;
|
|
--disable-dvb) _dvb=no ;;
|
|
--enable-iconv) _iconv=yes ;;
|
|
--disable-iconv) _iconv=no ;;
|
|
--enable-ossaudio) _ossaudio=yes ;;
|
|
--disable-ossaudio) _ossaudio=no ;;
|
|
--enable-rsound) _rsound=yes ;;
|
|
--disable-rsound) _rsound=no ;;
|
|
--enable-pulse) _pulse=yes ;;
|
|
--disable-pulse) _pulse=no ;;
|
|
--enable-portaudio) _portaudio=yes ;;
|
|
--disable-portaudio) _portaudio=no ;;
|
|
--enable-jack) _jack=yes ;;
|
|
--disable-jack) _jack=no ;;
|
|
--enable-openal) _openal=auto ;;
|
|
--disable-openal) _openal=no ;;
|
|
--enable-libcdio) _libcdio=yes ;;
|
|
--disable-libcdio) _libcdio=no ;;
|
|
--enable-mpg123) _mpg123=yes ;;
|
|
--disable-mpg123) _mpg123=no ;;
|
|
--enable-ladspa) _ladspa=yes ;;
|
|
--disable-ladspa) _ladspa=no ;;
|
|
--enable-libbs2b) _libbs2b=yes ;;
|
|
--disable-libbs2b) _libbs2b=no ;;
|
|
--enable-vcd) _vcd=yes ;;
|
|
--disable-vcd) _vcd=no ;;
|
|
--enable-bluray) _bluray=yes ;;
|
|
--disable-bluray) _bluray=no ;;
|
|
--enable-dvdread) _dvdread=yes ;;
|
|
--disable-dvdread) _dvdread=no ;;
|
|
--enable-lcms2) _lcms2=yes ;;
|
|
--disable-lcms2) _lcms2=no ;;
|
|
--enable-xinerama) _xinerama=yes ;;
|
|
--disable-xinerama) _xinerama=no ;;
|
|
--enable-vm) _vm=yes ;;
|
|
--disable-vm) _vm=no ;;
|
|
--enable-xf86keysym) _xf86keysym=yes ;;
|
|
--disable-xf86keysym) _xf86keysym=no ;;
|
|
--enable-alsa) _alsa=yes ;;
|
|
--disable-alsa) _alsa=no ;;
|
|
--enable-tv) _tv=yes ;;
|
|
--disable-tv) _tv=no ;;
|
|
--enable-tv-v4l2) _tv_v4l2=yes ;;
|
|
--disable-tv-v4l2) _tv_v4l2=no ;;
|
|
--enable-radio) _radio=yes ;;
|
|
--enable-radio-capture) _radio_capture=yes ;;
|
|
--disable-radio-capture) _radio_capture=no ;;
|
|
--disable-radio) _radio=no ;;
|
|
--enable-radio-v4l2) _radio_v4l2=yes ;;
|
|
--disable-radio-v4l2) _radio_v4l2=no ;;
|
|
--enable-pvr) _pvr=yes ;;
|
|
--disable-pvr) _pvr=no ;;
|
|
--enable-smb) _smb=yes ;;
|
|
--disable-smb) _smb=no ;;
|
|
--enable-libquvi4) _libquvi4=yes ;;
|
|
--disable-libquvi4) _libquvi4=no ;;
|
|
--enable-libquvi9) _libquvi9=yes ;;
|
|
--disable-libquvi9) _libquvi9=no ;;
|
|
--enable-libguess) _libguess=yes ;;
|
|
--disable-libguess) _libguess=no ;;
|
|
--enable-joystick) _joystick=yes ;;
|
|
--disable-joystick) _joystick=no ;;
|
|
--enable-libav) ffmpeg=yes ;;
|
|
--disable-libavresample) _disable_avresample=yes ;;
|
|
--enable-libavresample) _disable_avresample=no ;;
|
|
|
|
--enable-lirc) _lirc=yes ;;
|
|
--disable-lirc) _lirc=no ;;
|
|
--enable-lircc) _lircc=yes ;;
|
|
--disable-lircc) _lircc=no ;;
|
|
--enable-termcap) _termcap=yes ;;
|
|
--disable-termcap) _termcap=no ;;
|
|
--enable-termios) _termios=yes ;;
|
|
--disable-termios) _termios=no ;;
|
|
--enable-shm) _shm=yes ;;
|
|
--disable-shm) _shm=no ;;
|
|
--enable-select) _select=yes ;;
|
|
--disable-select) _select=no ;;
|
|
--enable-pthreads) _pthreads=yes ;;
|
|
--disable-pthreads) _pthreads=no ;;
|
|
--enable-libass) _ass=yes ;;
|
|
--disable-libass) _ass=no ;;
|
|
--enable-libass-osd) _libass_osd=yes ;;
|
|
--disable-libass-osd) _libass_osd=no ;;
|
|
--enable-rpath) _rpath=yes ;;
|
|
--disable-rpath) _rpath=no ;;
|
|
--enable-libpostproc) libpostproc=yes ;;
|
|
--disable-libpostproc) libpostproc=no ;;
|
|
--enable-libavdevice) libavdevice=auto ;;
|
|
--disable-libavdevice) libavdevice=no ;;
|
|
--enable-libavfilter) libavfilter=auto ;;
|
|
--disable-libavfilter) libavfilter=no ;;
|
|
--enable-vf-lavfi) vf_lavfi=auto ;;
|
|
--disable-vf-lavfi) vf_lavfi=no ;;
|
|
--enable-af-lavfi) af_lavfi=auto ;;
|
|
--disable-af-lavfi) af_lavfi=no ;;
|
|
|
|
--enable-enca) _enca=yes ;;
|
|
--disable-enca) _enca=no ;;
|
|
|
|
--enable-coreaudio) _coreaudio=yes ;;
|
|
--disable-coreaudio) _coreaudio=no ;;
|
|
--enable-corevideo) _corevideo=yes ;;
|
|
--disable-corevideo) _corevideo=no ;;
|
|
--enable-cocoa) _cocoa=yes ;;
|
|
--disable-cocoa) _cocoa=no ;;
|
|
--enable-macosx-bundle) _macosx_bundle=yes ;;
|
|
--disable-macosx-bundle) _macosx_bundle=no ;;
|
|
|
|
--enable-manpage) _build_man=yes ;;
|
|
--disable-manpage) _build_man=no ;;
|
|
|
|
--enable-build-date) _build_date=yes ;;
|
|
--disable-build-date) _build_date=no ;;
|
|
*)
|
|
echo "Unknown parameter: $ac_option" >&2
|
|
exit 1
|
|
;;
|
|
|
|
esac
|
|
done
|
|
|
|
# Atmos: moved this here, to be correct, if --prefix is specified
|
|
test -z "$_bindir" && _bindir="$_prefix/bin"
|
|
test -z "$_mandir" && _mandir="$_prefix/share/man"
|
|
test -z "$_confdir" && _confdir="$_prefix/etc/mpv"
|
|
test -z "$_localedir" && _localedir="$_prefix/share/locale"
|
|
|
|
for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
|
|
test "$tmpdir" && break
|
|
done
|
|
|
|
mplayer_tmpdir="$tmpdir/mpv-configure-$RANDOM-$$"
|
|
mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
|
|
|
|
TMPLOG="config.log"
|
|
|
|
rm -f "$TMPLOG"
|
|
echo Parameters configure was run with: > "$TMPLOG"
|
|
if test -n "$CFLAGS" ; then
|
|
echo ${_echo_n} CFLAGS="'$CFLAGS' ${_echo_c}" >> "$TMPLOG"
|
|
fi
|
|
if test -n "$PKG_CONFIG_PATH" ; then
|
|
echo ${_echo_n} PKG_CONFIG_PATH="'$PKG_CONFIG_PATH' ${_echo_c}" >> "$TMPLOG"
|
|
fi
|
|
echo ./configure $configuration >> "$TMPLOG"
|
|
echo >> "$TMPLOG"
|
|
|
|
|
|
echocheck "cross compilation"
|
|
echores $_cross_compile
|
|
|
|
if test $_cross_compile = yes; then
|
|
tmp_run() {
|
|
return 0
|
|
}
|
|
fi
|
|
|
|
tool_prefix=""
|
|
|
|
if test $_cross_compile = yes ; then
|
|
# Usually cross-compiler prefixes match with the target triplet
|
|
test -n "$_target" && tool_prefix="$_target"-
|
|
fi
|
|
|
|
test "$_windres" = auto && _windres="$tool_prefix"windres
|
|
test "$_pkg_config" = auto && _pkg_config="$tool_prefix"pkg-config
|
|
|
|
if test "$_cc" = auto ; then
|
|
if test -n "$tool_prefix" ; then
|
|
_cc="$tool_prefix"gcc
|
|
else
|
|
_cc=cc
|
|
fi
|
|
fi
|
|
|
|
# Determine our OS name and CPU architecture
|
|
if test -z "$_target" ; then
|
|
# OS name
|
|
system_name=$(uname -s 2>&1)
|
|
case "$system_name" in
|
|
Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|Darwin|GNU|MorphOS)
|
|
;;
|
|
Haiku)
|
|
system_name=Haiku
|
|
;;
|
|
GNU/kFreeBSD)
|
|
system_name=FreeBSD
|
|
;;
|
|
[cC][yY][gG][wW][iI][nN]*)
|
|
system_name=CYGWIN
|
|
;;
|
|
MINGW32*)
|
|
system_name=MINGW32
|
|
;;
|
|
*)
|
|
system_name="$system_name-UNKNOWN"
|
|
;;
|
|
esac
|
|
|
|
|
|
# host's CPU/instruction set
|
|
host_arch=$(uname -p 2>&1)
|
|
case "$host_arch" in
|
|
i386|sparc|ppc|alpha|arm|mips|vax)
|
|
;;
|
|
powerpc) # Darwin returns 'powerpc'
|
|
host_arch=ppc
|
|
;;
|
|
*) # uname -p on Linux returns 'unknown' for the processor type,
|
|
# OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
|
|
|
|
# Maybe uname -m (machine hardware name) returns something we
|
|
# recognize.
|
|
|
|
case "$(uname -m 2>&1)" in
|
|
x86_64|amd64|i[3-9]86*|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium*|athlon*|i586_i686|i586-i686|BePC) host_arch=i386 ;;
|
|
ia64) host_arch=ia64 ;;
|
|
macppc|ppc) host_arch=ppc ;;
|
|
ppc64) host_arch=ppc64 ;;
|
|
alpha) host_arch=alpha ;;
|
|
sparc) host_arch=sparc ;;
|
|
sparc64) host_arch=sparc64 ;;
|
|
parisc*|hppa*|9000*) host_arch=hppa ;;
|
|
arm*|zaurus|cats) host_arch=arm ;;
|
|
sh3|sh4|sh4a) host_arch=sh ;;
|
|
s390) host_arch=s390 ;;
|
|
s390x) host_arch=s390x ;;
|
|
*mips*) host_arch=mips ;;
|
|
vax) host_arch=vax ;;
|
|
xtensa*) host_arch=xtensa ;;
|
|
*) host_arch=UNKNOWN ;;
|
|
esac
|
|
;;
|
|
esac
|
|
else # if test -z "$_target"
|
|
for i in 2 3; do
|
|
system_name=$(echo $_target | cut -d '-' -f $i)
|
|
case "$(echo $system_name | tr A-Z a-z)" in
|
|
linux) system_name=Linux ;;
|
|
freebsd) system_name=FreeBSD ;;
|
|
gnu/kfreebsd) system_name=FreeBSD ;;
|
|
netbsd) system_name=NetBSD ;;
|
|
openbsd) system_name=OpenBSD ;;
|
|
dragonfly) system_name=DragonFly ;;
|
|
morphos) system_name=MorphOS ;;
|
|
mingw32*) system_name=MINGW32 ;;
|
|
*) continue ;;
|
|
esac
|
|
break
|
|
done
|
|
# We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
|
|
host_arch=$(echo $_target | cut -d '-' -f 1)
|
|
if test $(echo $host_arch) != "x86_64" ; then
|
|
host_arch=$(echo $host_arch | tr '_' '-')
|
|
fi
|
|
fi
|
|
|
|
extra_cflags="-I. -D_GNU_SOURCE $extra_cflags"
|
|
_timer=timer-linux.c
|
|
_getch=getch2.c
|
|
|
|
if freebsd ; then
|
|
extra_ldflags="$extra_ldflags -L/usr/local/lib"
|
|
extra_cflags="$extra_cflags -I/usr/local/include"
|
|
fi
|
|
|
|
if netbsd || dragonfly ; then
|
|
extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
|
|
extra_cflags="$extra_cflags -I/usr/pkg/include"
|
|
fi
|
|
|
|
if darwin; then
|
|
extra_cflags="-mdynamic-no-pic $extra_cflags"
|
|
_timer=timer-darwin.c
|
|
fi
|
|
|
|
_win32=no
|
|
if win32 ; then
|
|
_win32=yes
|
|
_exesuf=".exe"
|
|
extra_cflags="$extra_cflags -fno-common"
|
|
# -lwinmm is always needed for osdep/timer-win2.c
|
|
libs_mplayer="$libs_mplayer -lwinmm"
|
|
_pe_executable=yes
|
|
_timer=timer-win2.c
|
|
_priority=yes
|
|
def_dos_paths="#define HAVE_DOS_PATHS 1"
|
|
def_priority="#define CONFIG_PRIORITY 1"
|
|
fi
|
|
|
|
if mingw32 ; then
|
|
_getch=getch2-win.c
|
|
extra_cflags="$extra_cflags -D__USE_MINGW_ANSI_STDIO=1"
|
|
# Hack for missing BYTE_ORDER declarations in <sys/types.h>.
|
|
# (For some reason, they are in <sys/param.h>, but we don't bother switching
|
|
# the includes based on whether we're compiling for MinGW.)
|
|
extra_cflags="$extra_cflags -DBYTE_ORDER=1234 -DLITTLE_ENDIAN=1234 -DBIG_ENDIAN=4321"
|
|
fi
|
|
|
|
if cygwin ; then
|
|
extra_cflags="$extra_cflags -mwin32"
|
|
fi
|
|
|
|
_rst2man=rst2man
|
|
if [ -f "$(which rst2man.py)" ] ; then
|
|
_rst2man=rst2man.py
|
|
fi
|
|
|
|
echocheck "whether to build manpages with rst2man"
|
|
if test "$_build_man" = auto ; then
|
|
_build_man=no
|
|
command_check "$_rst2man" --version && _build_man=yes
|
|
else
|
|
_build_man=no
|
|
fi
|
|
echores "$_build_man"
|
|
|
|
echocheck "whether to print binary build date"
|
|
if test "$_build_date" = yes ; then
|
|
_build_yes=yes
|
|
else
|
|
_build_date=no
|
|
extra_cflags="$extra_cflags -DNO_BUILD_TIMESTAMPS"
|
|
fi
|
|
echores "$_build_date"
|
|
|
|
|
|
|
|
TMPC="$mplayer_tmpdir/tmp.c"
|
|
TMPCPP="$mplayer_tmpdir/tmp.cpp"
|
|
TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
|
|
TMPH="$mplayer_tmpdir/tmp.h"
|
|
TMPS="$mplayer_tmpdir/tmp.S"
|
|
|
|
# Checking CC version...
|
|
# Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
|
|
if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
|
|
echocheck "$_cc version"
|
|
cc_vendor=intel
|
|
cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
|
|
cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
|
|
_cc_major=$(echo $cc_version | cut -d '.' -f 1)
|
|
_cc_minor=$(echo $cc_version | cut -d '.' -f 2)
|
|
# TODO verify older icc/ecc compatibility
|
|
case $cc_version in
|
|
'')
|
|
cc_version="v. ?.??, bad"
|
|
cc_fail=yes
|
|
;;
|
|
10.1|11.0|11.1)
|
|
cc_version="$cc_version, ok"
|
|
;;
|
|
*)
|
|
cc_version="$cc_version, bad"
|
|
cc_fail=yes
|
|
;;
|
|
esac
|
|
echores "$cc_version"
|
|
else
|
|
for _cc in "$_cc" gcc cc ; do
|
|
cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
|
|
if test "$cc_name_tmp" = "gcc"; then
|
|
cc_name=$cc_name_tmp
|
|
echocheck "$_cc version"
|
|
cc_vendor=gnu
|
|
cc_version=$($_cc -dumpversion 2>&1)
|
|
case $cc_version in
|
|
2.96*)
|
|
cc_fail=yes
|
|
;;
|
|
*)
|
|
_cc_major=$(echo $cc_version | cut -d '.' -f 1)
|
|
_cc_minor=$(echo $cc_version | cut -d '.' -f 2)
|
|
_cc_mini=$(echo $cc_version | cut -d '.' -f 3)
|
|
;;
|
|
esac
|
|
echores "$cc_version"
|
|
break
|
|
fi
|
|
if $_cc -v 2>&1 | grep -q "clang"; then
|
|
echocheck "$_cc version"
|
|
cc_vendor=clang
|
|
cc_version=$($_cc -dumpversion 2>&1)
|
|
res_comment="experimental support only"
|
|
echores "clang $cc_version"
|
|
break
|
|
fi
|
|
cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
|
|
done
|
|
fi # icc
|
|
test "$cc_fail" = yes && die "unsupported compiler version"
|
|
|
|
echocheck "working compiler"
|
|
cflag_check "" || die "Compiler is not functioning correctly. Check your installation and custom CFLAGS $CFLAGS ."
|
|
echo "yes"
|
|
|
|
echocheck "perl"
|
|
command_check perl -Mv5.8 -e';' || die "Perl is not functioning correctly or is ancient. Install the latest perl available."
|
|
echo yes
|
|
|
|
if test -z "$_target" && x86 ; then
|
|
cat > $TMPC << EOF
|
|
int main(void) {
|
|
int test[(int)sizeof(char *)-7];
|
|
return 0;
|
|
}
|
|
EOF
|
|
cc_check && host_arch=x86_64 || host_arch=i386
|
|
fi
|
|
|
|
echo "Detected operating system: $system_name"
|
|
echo "Detected host architecture: $host_arch"
|
|
|
|
# ---
|
|
|
|
# now that we know what compiler should be used for compilation, try to find
|
|
# out which assembler is used by the $_cc compiler
|
|
if test "$_as" = auto ; then
|
|
_as=$($_cc -print-prog-name=as)
|
|
test -z "$_as" && _as=as
|
|
fi
|
|
|
|
def_fast_64bit='#define HAVE_FAST_64BIT 0'
|
|
def_arch_x86='#define ARCH_X86 0'
|
|
def_arch_x86_32='#define ARCH_X86_32 0'
|
|
def_arch_x86_64='#define ARCH_X86_64 0'
|
|
|
|
case "$host_arch" in
|
|
i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
|
|
arch='x86'
|
|
subarch='x86_32'
|
|
def_arch_x86='#define ARCH_X86 1'
|
|
def_arch_x86_32='#define ARCH_X86_32 1'
|
|
;;
|
|
|
|
ia64)
|
|
arch='ia64'
|
|
def_fast_64bit='#define HAVE_FAST_64BIT 1'
|
|
;;
|
|
|
|
x86_64|amd64)
|
|
arch='x86'
|
|
subarch='x86_64'
|
|
def_arch_x86='#define ARCH_X86 1'
|
|
def_arch_x86_64='#define ARCH_X86_64 1'
|
|
def_fast_64bit='#define HAVE_FAST_64BIT 1'
|
|
;;
|
|
|
|
sparc|sparc64)
|
|
arch='sparc'
|
|
;;
|
|
|
|
arm*)
|
|
arch='arm'
|
|
;;
|
|
|
|
avr32)
|
|
arch='avr32'
|
|
;;
|
|
|
|
sh|sh4)
|
|
arch='sh4'
|
|
;;
|
|
|
|
ppc|ppc64|powerpc|powerpc64)
|
|
arch='ppc'
|
|
;;
|
|
|
|
alpha*)
|
|
arch='alpha'
|
|
;;
|
|
|
|
mips*)
|
|
arch='mips'
|
|
;;
|
|
|
|
hppa)
|
|
arch='pa_risc'
|
|
;;
|
|
|
|
s390)
|
|
arch='s390'
|
|
;;
|
|
|
|
s390x)
|
|
arch='s390x'
|
|
;;
|
|
|
|
vax)
|
|
arch='vax'
|
|
;;
|
|
|
|
xtensa)
|
|
arch='xtensa'
|
|
;;
|
|
|
|
generic)
|
|
arch='generic'
|
|
;;
|
|
|
|
*)
|
|
echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
|
|
echo "It seems nobody has ported mpv to your OS or CPU type yet."
|
|
die "unsupported architecture $host_arch"
|
|
;;
|
|
esac # case "$host_arch" in
|
|
|
|
echocheck "assembler support of -pipe option"
|
|
# -I. helps to detect compilers that just misunderstand -pipe like Sun C
|
|
cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
|
|
|
|
# Checking for CFLAGS
|
|
if test -z "$CFLAGS" ; then
|
|
if test "$cc_vendor" = "intel" ; then
|
|
CFLAGS="$_opt $_debug $_pipe"
|
|
WARNFLAGS="-wd167 -wd556 -wd144"
|
|
elif test "$cc_vendor" = "clang"; then
|
|
CFLAGS="$_opt $_debug $_pipe"
|
|
WARNFLAGS="-Wall -Wno-switch -Wno-logical-op-parentheses -Wpointer-arith -Wundef -Wno-pointer-sign -Wmissing-prototypes"
|
|
ERRORFLAGS="-Werror=implicit-function-declaration"
|
|
elif test "$cc_vendor" != "gnu" ; then
|
|
CFLAGS="$_opt $_debug $_pipe"
|
|
else
|
|
CFLAGS="$_opt $_debug $_pipe"
|
|
WARNFLAGS="-Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls"
|
|
ERRORFLAGS="-Werror-implicit-function-declaration"
|
|
extra_ldflags="$extra_ldflags"
|
|
fi
|
|
else
|
|
warn_cflags=yes
|
|
fi
|
|
|
|
if test "$cc_vendor" = "gnu" ; then
|
|
cflag_check -Wundef && WARNFLAGS="-Wundef $WARNFLAGS"
|
|
# -std=gnu99 is not a warning flag but is placed in WARN_CFLAGS because
|
|
# that's the only variable specific to C now, and this option is not valid
|
|
# for C++.
|
|
cflag_check -std=gnu99 && WARN_CFLAGS="-std=gnu99 $WARN_CFLAGS"
|
|
cflag_check -Wno-pointer-sign && WARN_CFLAGS="-Wno-pointer-sign $WARN_CFLAGS"
|
|
cflag_check -Wdisabled-optimization && WARN_CFLAGS="-Wdisabled-optimization $WARN_CFLAGS"
|
|
cflag_check -Wmissing-prototypes && WARN_CFLAGS="-Wmissing-prototypes $WARN_CFLAGS"
|
|
cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
|
|
else
|
|
CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
|
|
fi
|
|
|
|
cflag_check -MD -MP && DEPFLAGS="-MD -MP"
|
|
|
|
|
|
if test -n "$LDFLAGS" ; then
|
|
extra_ldflags="$extra_ldflags $LDFLAGS"
|
|
warn_cflags=yes
|
|
elif test "$cc_vendor" = "intel" ; then
|
|
extra_ldflags="$extra_ldflags -i-static"
|
|
fi
|
|
if test -n "$CPPFLAGS" ; then
|
|
extra_cflags="$extra_cflags $CPPFLAGS"
|
|
warn_cflags=yes
|
|
fi
|
|
|
|
|
|
echocheck "PIC"
|
|
pic=no
|
|
cat > $TMPC << EOF
|
|
int main(void) {
|
|
#if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
|
|
#error PIC not enabled
|
|
#endif
|
|
return 0;
|
|
}
|
|
EOF
|
|
cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
|
|
echores $pic
|
|
|
|
|
|
if x86 ; then
|
|
|
|
echocheck "ebx availability"
|
|
ebx_available=no
|
|
def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
|
|
cat > $TMPC << EOF
|
|
int main(void) {
|
|
int x;
|
|
__asm__ volatile(
|
|
"xor %0, %0"
|
|
:"=b"(x)
|
|
// just adding ebx to clobber list seems unreliable with some
|
|
// compilers, e.g. Haiku's gcc 2.95
|
|
);
|
|
// and the above check does not work for OSX 64 bit...
|
|
__asm__ volatile("":::"%ebx");
|
|
return 0;
|
|
}
|
|
EOF
|
|
cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
|
|
echores $ebx_available
|
|
|
|
fi #if x86
|
|
|
|
######################
|
|
# MAIN TESTS GO HERE #
|
|
######################
|
|
|
|
|
|
echocheck "-lm"
|
|
if cflag_check -lm ; then
|
|
_ld_lm="-lm"
|
|
echores "yes"
|
|
else
|
|
_ld_lm=""
|
|
echores "no"
|
|
fi
|
|
|
|
|
|
echocheck "gettext support"
|
|
if test "$_gettext" = yes; then
|
|
def_gettext="#define CONFIG_GETTEXT 1"
|
|
else
|
|
def_gettext="#undef CONFIG_GETTEXT"
|
|
fi
|
|
echores "$_gettext"
|
|
|
|
|
|
echocheck "nanosleep"
|
|
_nanosleep=no
|
|
statement_check time.h 'nanosleep(0, 0)' && _nanosleep=yes
|
|
if test "$_nanosleep" = yes ; then
|
|
def_nanosleep='#define HAVE_NANOSLEEP 1'
|
|
else
|
|
def_nanosleep='#undef HAVE_NANOSLEEP'
|
|
fi
|
|
echores "$_nanosleep"
|
|
|
|
|
|
echocheck "mman.h"
|
|
_mman=no
|
|
statement_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
|
|
if test "$_mman" = yes ; then
|
|
def_mman_h='#define HAVE_SYS_MMAN_H 1'
|
|
else
|
|
def_mman_h='#undef HAVE_SYS_MMAN_H'
|
|
fi
|
|
echores "$_mman"
|
|
|
|
|
|
echocheck "dynamic loader"
|
|
_dl=no
|
|
for _ld_tmp in "" "-ldl"; do
|
|
statement_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
|
|
done
|
|
if test "$_dl" = yes ; then
|
|
def_dl='#define HAVE_LIBDL 1'
|
|
else
|
|
def_dl='#undef HAVE_LIBDL'
|
|
fi
|
|
echores "$_dl"
|
|
|
|
|
|
echocheck "pthread"
|
|
if linux ; then
|
|
THREAD_CFLAGS=-D_REENTRANT
|
|
elif freebsd || netbsd || openbsd ; then
|
|
THREAD_CFLAGS=-D_THREAD_SAFE
|
|
fi
|
|
if test "$_pthreads" = auto ; then
|
|
cat > $TMPC << EOF
|
|
#include <pthread.h>
|
|
static void *func(void *arg) { return arg; }
|
|
int main(void) {
|
|
pthread_t tid;
|
|
#ifdef PTW32_STATIC_LIB
|
|
pthread_win32_process_attach_np();
|
|
pthread_win32_thread_attach_np();
|
|
#endif
|
|
return pthread_create (&tid, 0, func, 0) != 0;
|
|
}
|
|
EOF
|
|
_pthreads=no
|
|
for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
|
|
# for crosscompilation, we cannot execute the program, be happy if we can link statically
|
|
cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
|
|
done
|
|
if test "$_pthreads" = no && mingw32 ; then
|
|
_ld_tmp="-lpthreadGC2 -lws2_32"
|
|
cc_check $_ld_tmp -DPTW32_STATIC_LIB && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && CFLAGS="$CFLAGS -DPTW32_STATIC_LIB"
|
|
fi
|
|
fi
|
|
if test "$_pthreads" = yes ; then
|
|
test "$_ld_pthread" && res_comment="using $_ld_pthread"
|
|
def_pthreads='#define HAVE_PTHREADS 1'
|
|
extra_cflags="$extra_cflags $THREAD_CFLAGS"
|
|
else
|
|
res_comment="v4l2 disabled"
|
|
def_pthreads='#undef HAVE_PTHREADS'
|
|
_tv_v4l2=no
|
|
fi
|
|
echores "$_pthreads"
|
|
|
|
if test "$_pthreads" = yes ; then
|
|
|
|
# Cargo-cult for -lrt, which is needed on not so recent glibc version for
|
|
# clock_gettime. It's documented as required before before glibc 2.17, which
|
|
# was released in december 2012. On newer glibc versions or on other systems,
|
|
# this will hopefully do nothing.
|
|
echocheck "linking with -lrt"
|
|
_rt=no
|
|
cc_check "$_ld_pthread -lrt" && _rt=yes
|
|
if test "$_rt" = yes ; then
|
|
_ld_pthread="$_ld_pthread -lrt"
|
|
fi
|
|
echores "$_rt"
|
|
|
|
fi
|
|
|
|
echocheck "stream cache"
|
|
_stream_cache="$_pthreads"
|
|
if test "$_stream_cache" = yes ; then
|
|
def_stream_cache='#define CONFIG_STREAM_CACHE'
|
|
else
|
|
def_stream_cache='#undef CONFIG_STREAM_CACHE'
|
|
fi
|
|
echores "$_stream_cache"
|
|
|
|
echocheck "rpath"
|
|
if test "$_rpath" = yes ; then
|
|
for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
|
|
tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
|
|
done
|
|
extra_ldflags=$tmp
|
|
fi
|
|
echores "$_rpath"
|
|
|
|
echocheck "iconv"
|
|
if test "$_iconv" = auto ; then
|
|
cat > $TMPC << EOF
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <iconv.h>
|
|
#define INBUFSIZE 1024
|
|
#define OUTBUFSIZE 4096
|
|
|
|
char inbuffer[INBUFSIZE];
|
|
char outbuffer[OUTBUFSIZE];
|
|
|
|
int main(void) {
|
|
size_t numread;
|
|
iconv_t icdsc;
|
|
char *tocode="UTF-8";
|
|
char *fromcode="cp1250";
|
|
if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
|
|
while ((numread = read(0, inbuffer, INBUFSIZE))) {
|
|
char *iptr=inbuffer;
|
|
char *optr=outbuffer;
|
|
size_t inleft=numread;
|
|
size_t outleft=OUTBUFSIZE;
|
|
if (iconv(icdsc, &iptr, &inleft, &optr, &outleft)
|
|
!= (size_t)(-1)) {
|
|
write(1, outbuffer, OUTBUFSIZE - outleft);
|
|
}
|
|
}
|
|
if (iconv_close(icdsc) == -1)
|
|
;
|
|
}
|
|
return 0;
|
|
}
|
|
EOF
|
|
_iconv=no
|
|
for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
|
|
cc_check $_ld_lm $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" &&
|
|
_iconv=yes && break
|
|
done
|
|
if test "$_iconv" != yes ; then
|
|
die "Unable to find iconv which should be part of standard compilation environment. Aborting. If you really mean to compile without iconv support use --disable-iconv."
|
|
fi
|
|
fi
|
|
if test "$_iconv" = yes ; then
|
|
def_iconv='#define CONFIG_ICONV 1'
|
|
else
|
|
def_iconv='#undef CONFIG_ICONV'
|
|
fi
|
|
echores "$_iconv"
|
|
|
|
|
|
echocheck "soundcard.h"
|
|
_soundcard_h=no
|
|
def_soundcard_h='#undef HAVE_SOUNDCARD_H'
|
|
def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
|
|
for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
|
|
header_check $_soundcard_header && _soundcard_h=yes &&
|
|
res_comment="$_soundcard_header" && break
|
|
done
|
|
|
|
if test "$_soundcard_h" = yes ; then
|
|
if test $_soundcard_header = "sys/soundcard.h"; then
|
|
def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
|
|
else
|
|
def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
|
|
fi
|
|
fi
|
|
echores "$_soundcard_h"
|
|
|
|
|
|
echocheck "sys/videoio.h"
|
|
sys_videoio_h=no
|
|
def_sys_videoio_h='#undef HAVE_SYS_VIDEOIO_H'
|
|
header_check sys/videoio.h && sys_videoio_h=yes &&
|
|
def_sys_videoio_h='#define HAVE_SYS_VIDEOIO_H 1'
|
|
echores "$sys_videoio_h"
|
|
|
|
|
|
echocheck "termcap"
|
|
if test "$_termcap" = auto ; then
|
|
_termcap=no
|
|
for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
|
|
statement_check term.h 'tgetent(0, 0)' $_ld_tmp &&
|
|
libs_mplayer="$libs_mplayer $_ld_tmp" && _termcap=yes && break
|
|
done
|
|
fi
|
|
if test "$_termcap" = yes ; then
|
|
def_termcap='#define HAVE_TERMCAP 1'
|
|
test $_ld_tmp && res_comment="using $_ld_tmp"
|
|
else
|
|
def_termcap='#undef HAVE_TERMCAP'
|
|
fi
|
|
echores "$_termcap"
|
|
|
|
|
|
echocheck "termios"
|
|
def_termios='#undef HAVE_TERMIOS'
|
|
def_termios_h='#undef HAVE_TERMIOS_H'
|
|
def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
|
|
if test "$_termios" = auto ; then
|
|
_termios=no
|
|
for _termios_header in "termios.h" "sys/termios.h"; do
|
|
header_check $_termios_header && _termios=yes &&
|
|
res_comment="using $_termios_header" && break
|
|
done
|
|
fi
|
|
|
|
if test "$_termios" = yes ; then
|
|
def_termios='#define HAVE_TERMIOS 1'
|
|
if test "$_termios_header" = "termios.h" ; then
|
|
def_termios_h='#define HAVE_TERMIOS_H 1'
|
|
else
|
|
def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
|
|
fi
|
|
fi
|
|
echores "$_termios"
|
|
|
|
|
|
echocheck "shm"
|
|
if test "$_shm" = auto ; then
|
|
_shm=no
|
|
statement_check sys/shm.h 'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)' && _shm=yes
|
|
fi
|
|
if test "$_shm" = yes ; then
|
|
def_shm='#define HAVE_SHM 1'
|
|
else
|
|
def_shm='#undef HAVE_SHM'
|
|
fi
|
|
echores "$_shm"
|
|
|
|
|
|
echocheck "POSIX select()"
|
|
cat > $TMPC << EOF
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
#include <string.h>
|
|
#include <sys/time.h>
|
|
#include <unistd.h>
|
|
int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds, &readfds, NULL, NULL, &timeout); return 0; }
|
|
EOF
|
|
_posix_select=no
|
|
def_posix_select='#undef HAVE_POSIX_SELECT'
|
|
cc_check && _posix_select=yes &&
|
|
def_posix_select='#define HAVE_POSIX_SELECT 1'
|
|
echores "$_posix_select"
|
|
|
|
|
|
echocheck "audio select()"
|
|
if test "$_select" = no ; then
|
|
def_select='#undef HAVE_AUDIO_SELECT'
|
|
elif test "$_select" = yes ; then
|
|
def_select='#define HAVE_AUDIO_SELECT 1'
|
|
fi
|
|
echores "$_select"
|
|
|
|
|
|
echocheck "glob()"
|
|
_glob=no
|
|
statement_check glob.h 'glob("filename", 0, 0, 0)' && _glob=yes
|
|
need_glob=no
|
|
if test "$_glob" = yes ; then
|
|
def_glob='#define HAVE_GLOB 1'
|
|
else
|
|
def_glob='#undef HAVE_GLOB'
|
|
# HACK! need_glob currently enables compilation of a
|
|
# win32-specific glob()-replacement.
|
|
# Other OS neither need it nor can they use it (mf:// is disabled for them).
|
|
win32 && need_glob=yes
|
|
fi
|
|
echores "$_glob"
|
|
|
|
|
|
echocheck "setmode()"
|
|
_setmode=no
|
|
def_setmode='#define HAVE_SETMODE 0'
|
|
statement_check io.h 'setmode(0, 0)' && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
|
|
echores "$_setmode"
|
|
|
|
|
|
echocheck "sys/sysinfo.h"
|
|
_sys_sysinfo=no
|
|
statement_check sys/sysinfo.h 'struct sysinfo s_info; s_info.mem_unit=0; sysinfo(&s_info)' && _sys_sysinfo=yes
|
|
if test "$_sys_sysinfo" = yes ; then
|
|
def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
|
|
else
|
|
def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
|
|
fi
|
|
echores "$_sys_sysinfo"
|
|
|
|
|
|
if darwin; then
|
|
|
|
echocheck "Mac OS X Bundle file locations"
|
|
def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
|
|
test "$_macosx_bundle" = auto
|
|
if test "$_macosx_bundle" = yes ; then
|
|
extra_ldflags="$extra_ldflags -headerpad_max_install_names"
|
|
def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
|
|
fi
|
|
echores "$_macosx_bundle"
|
|
|
|
fi #if darwin
|
|
|
|
echocheck "pkg-config"
|
|
if $($_pkg_config --version > /dev/null 2>&1); then
|
|
if test "$_ld_static"; then
|
|
_pkg_config="$_pkg_config --static"
|
|
fi
|
|
echores "yes"
|
|
else
|
|
_pkg_config=false
|
|
echores "no"
|
|
fi
|
|
|
|
|
|
echocheck "libguess support"
|
|
if test "$_libguess" = auto ; then
|
|
_libguess=no
|
|
if pkg_config_add 'libguess >= 1.0' ; then
|
|
_libguess=yes
|
|
fi
|
|
fi
|
|
if test "$_libguess" = yes; then
|
|
def_libguess="#define CONFIG_LIBGUESS 1"
|
|
else
|
|
def_libguess="#undef CONFIG_LIBGUESS"
|
|
fi
|
|
echores "$_libguess"
|
|
|
|
|
|
echocheck "Samba support (libsmbclient)"
|
|
if test "$_smb" = yes; then
|
|
libs_mplayer="$libs_mplayer -lsmbclient"
|
|
fi
|
|
if test "$_smb" = auto; then
|
|
_smb=no
|
|
for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
|
|
statement_check libsmbclient.h 'smbc_opendir("smb://")' $_ld_tmp &&
|
|
libs_mplayer="$libs_mplayer $_ld_tmp" && _smb=yes && break
|
|
done
|
|
fi
|
|
|
|
if test "$_smb" = yes; then
|
|
def_smb="#define CONFIG_LIBSMBCLIENT 1"
|
|
inputmodules="smb $inputmodules"
|
|
else
|
|
def_smb="#undef CONFIG_LIBSMBCLIENT"
|
|
noinputmodules="smb $noinputmodules"
|
|
fi
|
|
echores "$_smb"
|
|
|
|
|
|
echocheck "libquvi 0.4.x support"
|
|
if test "$_libquvi4" = auto ; then
|
|
_libquvi4=no
|
|
if pkg_config_add 'libquvi >= 0.4.1' ; then
|
|
_libquvi4=yes
|
|
fi
|
|
fi
|
|
if test "$_libquvi4" = yes; then
|
|
def_libquvi4="#define CONFIG_LIBQUVI 1"
|
|
else
|
|
def_libquvi4="#undef CONFIG_LIBQUVI"
|
|
fi
|
|
echores "$_libquvi4"
|
|
|
|
echocheck "libquvi 0.9.x support"
|
|
if test "$_libquvi4" = yes ; then
|
|
_libquvi9=no
|
|
res_comment="using libquvi 0.4.x"
|
|
fi
|
|
if test "$_libquvi9" = auto ; then
|
|
_libquvi9=no
|
|
if pkg_config_add 'libquvi-0.9 >= 0.9.0' ; then
|
|
_libquvi9=yes
|
|
fi
|
|
fi
|
|
if test "$_libquvi9" = yes; then
|
|
def_libquvi9="#define CONFIG_LIBQUVI9 1"
|
|
else
|
|
def_libquvi9="#undef CONFIG_LIBQUVI9"
|
|
fi
|
|
echores "$_libquvi9"
|
|
|
|
#########
|
|
# VIDEO #
|
|
#########
|
|
|
|
|
|
if darwin; then
|
|
|
|
echocheck "Cocoa"
|
|
if test "$_cocoa" = auto ; then
|
|
cat > $TMPC <<EOF
|
|
#include <CoreServices/CoreServices.h>
|
|
#include <OpenGL/OpenGL.h>
|
|
int main(void) {
|
|
NSApplicationLoad();
|
|
}
|
|
EOF
|
|
_cocoa=no
|
|
cc_check -framework IOKit -framework Cocoa -framework OpenGL && _cocoa=yes
|
|
fi
|
|
if test "$_cocoa" = yes ; then
|
|
libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa -framework OpenGL"
|
|
extra_ldflags="$extra_ldflags -fobjc-arc" # needed for OS X 10.7
|
|
def_cocoa='#define CONFIG_COCOA 1'
|
|
else
|
|
def_cocoa='#undef CONFIG_COCOA'
|
|
fi
|
|
echores "$_cocoa"
|
|
|
|
echocheck "CoreVideo"
|
|
if test "$_cocoa" = yes && test "$_corevideo" = auto ; then
|
|
cat > $TMPC <<EOF
|
|
#include <QuartzCore/CoreVideo.h>
|
|
int main(void) { return 0; }
|
|
EOF
|
|
_corevideo=no
|
|
cc_check -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
|
|
fi
|
|
if test "$_corevideo" = yes ; then
|
|
vomodules="corevideo $vomodules"
|
|
libs_mplayer="$libs_mplayer -framework QuartzCore"
|
|
def_corevideo='#define CONFIG_COREVIDEO 1'
|
|
else
|
|
novomodules="corevideo $novomodules"
|
|
def_corevideo='#undef CONFIG_COREVIDEO'
|
|
fi
|
|
echores "$_corevideo"
|
|
|
|
depends_on_application_services(){
|
|
test "$_corevideo" = yes
|
|
}
|
|
|
|
fi #if darwin
|
|
|
|
echocheck "Wayland"
|
|
if test "$_wayland" != no; then
|
|
_wayland="no"
|
|
pkg_config_add "wayland-client >= 1.0.0 wayland-egl >= 9.0.0 wayland-cursor >= 1.0.0 xkbcommon >= 0.3.0" \
|
|
&& _wayland="yes"
|
|
res_comment=""
|
|
else
|
|
_wayland="no"
|
|
res_comment=""
|
|
fi
|
|
echores "$_wayland"
|
|
|
|
echocheck "X11 headers presence"
|
|
_x11_headers="no"
|
|
res_comment="check if the dev(el) packages are installed"
|
|
for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
|
|
if test -f "$I/X11/Xlib.h" ; then
|
|
_x11_headers="yes"
|
|
res_comment=""
|
|
break
|
|
fi
|
|
done
|
|
if test $_cross_compile = no; then
|
|
for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
|
|
/usr/include/X11R6 /usr/openwin/include ; do
|
|
if test -f "$I/X11/Xlib.h" ; then
|
|
extra_cflags="$extra_cflags -I$I"
|
|
_x11_headers="yes"
|
|
res_comment="using $I"
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
echores "$_x11_headers"
|
|
|
|
|
|
echocheck "X11"
|
|
if test "$_x11" = auto && test "$_x11_headers" = yes ; then
|
|
for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
|
|
-L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
|
|
-L/usr/lib ; do
|
|
if netbsd; then
|
|
_ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
|
|
else
|
|
_ld_tmp="$I -lXext -lX11 $_ld_pthread"
|
|
fi
|
|
statement_check_broken X11/Xutil.h X11/XKBlib.h 'XCreateWindow(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)' $_ld_tmp &&
|
|
_x11=yes
|
|
# Check that there aren't conflicting headers between ApplicationServices
|
|
# and X11. On versions of Mac OSX prior to 10.7 the deprecated QuickDraw API
|
|
# is included by -framework ApplicationServices and clashes with the X11
|
|
# definition of the "Cursor" type.
|
|
if darwin && depends_on_application_services && test "$_x11" = yes ; then
|
|
_x11=no
|
|
header_check_broken ApplicationServices/ApplicationServices.h \
|
|
X11/Xutil.h $_ld_tmp && _x11=yes
|
|
fi
|
|
if test "$_x11" = yes ; then
|
|
libs_mplayer="$libs_mplayer $_ld_tmp"
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
if test "$_x11" = yes ; then
|
|
def_x11='#define CONFIG_X11 1'
|
|
vomodules="x11 $vomodules"
|
|
else
|
|
_x11=no
|
|
def_x11='#undef CONFIG_X11'
|
|
novomodules="x11 $novomodules"
|
|
res_comment="check if the dev(el) packages are installed"
|
|
fi
|
|
echores "$_x11"
|
|
|
|
echocheck "Xss screensaver extensions"
|
|
if test "$_xss" = auto ; then
|
|
_xss=no
|
|
statement_check "X11/extensions/scrnsaver.h" 'XScreenSaverSuspend(NULL, True)' -lXss && _xss=yes
|
|
fi
|
|
if test "$_xss" = yes ; then
|
|
def_xss='#define CONFIG_XSS 1'
|
|
libs_mplayer="$libs_mplayer -lXss"
|
|
else
|
|
def_xss='#undef CONFIG_XSS'
|
|
fi
|
|
echores "$_xss"
|
|
|
|
echocheck "DPMS"
|
|
_xdpms3=no
|
|
_xdpms4=no
|
|
if test "$_x11" = yes ; then
|
|
cat > $TMPC <<EOF
|
|
#include <X11/Xmd.h>
|
|
#include <X11/Xlib.h>
|
|
#include <X11/Xutil.h>
|
|
#include <X11/Xatom.h>
|
|
#include <X11/extensions/dpms.h>
|
|
int main(void) { DPMSQueryExtension(0, 0, 0); return 0; }
|
|
EOF
|
|
cc_check -lXdpms && _xdpms3=yes
|
|
statement_check_broken X11/Xlib.h X11/extensions/dpms.h 'DPMSQueryExtension(0, 0, 0)' -lXext && _xdpms4=yes
|
|
fi
|
|
if test "$_xdpms4" = yes ; then
|
|
def_xdpms='#define CONFIG_XDPMS 1'
|
|
res_comment="using Xdpms 4"
|
|
echores "yes"
|
|
elif test "$_xdpms3" = yes ; then
|
|
def_xdpms='#define CONFIG_XDPMS 1'
|
|
libs_mplayer="$libs_mplayer -lXdpms"
|
|
res_comment="using Xdpms 3"
|
|
echores "yes"
|
|
else
|
|
def_xdpms='#undef CONFIG_XDPMS'
|
|
echores "no"
|
|
fi
|
|
|
|
|
|
echocheck "Xv"
|
|
if test "$_xv" = auto && test "$_x11" = yes ; then
|
|
_xv=no
|
|
statement_check_broken X11/Xlib.h X11/extensions/Xvlib.h 'XvGetPortAttribute(0, 0, 0, 0)' -lXv && _xv=yes
|
|
fi
|
|
|
|
if test "$_xv" = yes ; then
|
|
def_xv='#define CONFIG_XV 1'
|
|
libs_mplayer="$libs_mplayer -lXv"
|
|
vomodules="xv $vomodules"
|
|
else
|
|
def_xv='#undef CONFIG_XV'
|
|
novomodules="xv $novomodules"
|
|
fi
|
|
echores "$_xv"
|
|
|
|
|
|
echocheck "VDPAU"
|
|
if test "$_vdpau" = auto && test "$_x11" = yes ; then
|
|
_vdpau=no
|
|
if test "$_dl" = yes ; then
|
|
pkg_config_add 'vdpau >= 0.2' && _vdpau=yes
|
|
fi
|
|
fi
|
|
if test "$_vdpau" = yes ; then
|
|
def_vdpau='#define CONFIG_VDPAU 1'
|
|
vomodules="vdpau $vomodules"
|
|
else
|
|
def_vdpau='#define CONFIG_VDPAU 0'
|
|
novomodules="vdpau $novomodules"
|
|
fi
|
|
echores "$_vdpau"
|
|
|
|
|
|
echocheck "Xinerama"
|
|
if test "$_xinerama" = auto && test "$_x11" = yes ; then
|
|
_xinerama=no
|
|
statement_check X11/extensions/Xinerama.h 'XineramaIsActive(0)' -lXinerama && _xinerama=yes
|
|
fi
|
|
|
|
if test "$_xinerama" = yes ; then
|
|
def_xinerama='#define CONFIG_XINERAMA 1'
|
|
libs_mplayer="$libs_mplayer -lXinerama"
|
|
else
|
|
def_xinerama='#undef CONFIG_XINERAMA'
|
|
fi
|
|
echores "$_xinerama"
|
|
|
|
|
|
# Note: the -lXxf86vm library is the VideoMode extension and though it's not
|
|
# needed for DGA, AFAIK every distribution packages together with DGA stuffs
|
|
# named 'X extensions' or something similar.
|
|
# This check may be useful for future mplayer versions (to change resolution)
|
|
# If you run into problems, remove '-lXxf86vm'.
|
|
echocheck "Xxf86vm"
|
|
if test "$_vm" = auto && test "$_x11" = yes ; then
|
|
_vm=no
|
|
statement_check_broken X11/Xlib.h X11/extensions/xf86vmode.h 'XF86VidModeQueryExtension(0, 0, 0)' -lXxf86vm && _vm=yes
|
|
fi
|
|
if test "$_vm" = yes ; then
|
|
def_vm='#define CONFIG_XF86VM 1'
|
|
libs_mplayer="$libs_mplayer -lXxf86vm"
|
|
else
|
|
def_vm='#undef CONFIG_XF86VM'
|
|
fi
|
|
echores "$_vm"
|
|
|
|
# Check for the presence of special keycodes, like audio control buttons
|
|
# that XFree86 might have. Used to be bundled with the xf86vm check, but
|
|
# has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
|
|
# have these new keycodes.
|
|
echocheck "XF86keysym"
|
|
if test "$_xf86keysym" = auto && test "$_x11" = yes ; then
|
|
_xf86keysym=no
|
|
return_check X11/XF86keysym.h XF86XK_AudioPause && _xf86keysym=yes
|
|
fi
|
|
if test "$_xf86keysym" = yes ; then
|
|
def_xf86keysym='#define CONFIG_XF86XK 1'
|
|
else
|
|
def_xf86keysym='#undef CONFIG_XF86XK'
|
|
fi
|
|
echores "$_xf86keysym"
|
|
|
|
|
|
echocheck "CACA"
|
|
if test "$_caca" = auto ; then
|
|
_caca=no
|
|
pkg_config_add 'caca >= 0.99.beta18' && _caca=yes
|
|
fi
|
|
if test "$_caca" = yes ; then
|
|
def_caca='#define CONFIG_CACA 1'
|
|
vomodules="caca $vomodules"
|
|
else
|
|
def_caca='#undef CONFIG_CACA'
|
|
novomodules="caca $novomodules"
|
|
fi
|
|
echores "$_caca"
|
|
|
|
|
|
echocheck "DVB"
|
|
if test "$_dvb" = auto ; then
|
|
_dvb=no
|
|
cat >$TMPC << EOF
|
|
#include <poll.h>
|
|
#include <sys/ioctl.h>
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
#include <linux/dvb/dmx.h>
|
|
#include <linux/dvb/frontend.h>
|
|
#include <linux/dvb/video.h>
|
|
#include <linux/dvb/audio.h>
|
|
int main(void) {return 0;}
|
|
EOF
|
|
for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
|
|
cc_check $_inc_tmp && _dvb=yes &&
|
|
extra_cflags="$extra_cflags $_inc_tmp" && break
|
|
done
|
|
fi
|
|
echores "$_dvb"
|
|
if test "$_dvb" = yes ; then
|
|
_dvbin=yes
|
|
inputmodules="dvb $inputmodules"
|
|
def_dvb='#define CONFIG_DVB 1'
|
|
def_dvbin='#define CONFIG_DVBIN 1'
|
|
else
|
|
_dvbin=no
|
|
noinputmodules="dvb $noinputmodules"
|
|
def_dvb='#undef CONFIG_DVB'
|
|
def_dvbin='#undef CONFIG_DVBIN '
|
|
fi
|
|
|
|
|
|
echocheck "MNG support"
|
|
if test "$_mng" = auto ; then
|
|
_mng=no
|
|
return_statement_check libmng.h 'const char * p_ver = mng_version_text()' '!p_ver || p_ver[0] == 0' -lmng -lz $_ld_lm && _mng=yes
|
|
fi
|
|
echores "$_mng"
|
|
if test "$_mng" = yes ; then
|
|
def_mng='#define CONFIG_MNG 1'
|
|
libs_mplayer="$libs_mplayer -lmng -lz"
|
|
else
|
|
def_mng='#undef CONFIG_MNG'
|
|
fi
|
|
|
|
echocheck "JPEG support"
|
|
if test "$_jpeg" = auto ; then
|
|
_jpeg=no
|
|
header_check_broken stdio.h jpeglib.h -ljpeg $_ld_lm && _jpeg=yes
|
|
fi
|
|
echores "$_jpeg"
|
|
|
|
if test "$_jpeg" = yes ; then
|
|
def_jpeg='#define CONFIG_JPEG 1'
|
|
libs_mplayer="$libs_mplayer -ljpeg"
|
|
else
|
|
def_jpeg='#undef CONFIG_JPEG'
|
|
fi
|
|
|
|
|
|
#################
|
|
# VIDEO + AUDIO #
|
|
#################
|
|
|
|
|
|
# make sure this stays below CoreVideo to avoid issues due to namespace
|
|
# conflicts between -lGL and -framework OpenGL
|
|
echocheck "OpenGL"
|
|
#Note: this test is run even with --enable-gl since we autodetect linker flags
|
|
if (test "$_x11" = yes || test "$_wayland" = yes || test "$_cocoa" = yes || win32) && test "$_gl" != no ; then
|
|
cat > $TMPC << EOF
|
|
#ifdef GL_WIN32
|
|
#include <windows.h>
|
|
#elif defined(GL_WAYLAND)
|
|
#include <EGL/egl.h>
|
|
#else
|
|
#include <X11/Xlib.h>
|
|
#include <GL/glx.h>
|
|
#endif
|
|
#include <GL/gl.h>
|
|
int main(int argc, char *argv[]) {
|
|
#ifdef GL_WIN32
|
|
HDC dc;
|
|
wglCreateContext(dc);
|
|
#elif defined(GL_WAYLAND)
|
|
eglCreateContext(NULL, NULL, EGL_NO_CONTEXT, NULL);
|
|
#else
|
|
glXCreateContext(NULL, NULL, NULL, True);
|
|
#endif
|
|
glFinish();
|
|
return 0;
|
|
}
|
|
EOF
|
|
_gl=no
|
|
if test "$_x11" = yes ; then
|
|
for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
|
|
if cc_check $_ld_tmp $_ld_lm ; then
|
|
_gl=yes
|
|
_gl_x11=yes
|
|
libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
if test "$_wayland" = yes && cc_check -DGL_WAYLAND -lGL -lEGL ; then
|
|
_gl=yes
|
|
_gl_wayland=yes
|
|
libs_mplayer="$libs_mplayer -lGL -lEGL"
|
|
fi
|
|
if win32 && cc_check -DGL_WIN32 -lopengl32 ; then
|
|
_gl=yes
|
|
_gl_win32=yes
|
|
libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
|
|
fi
|
|
if test "$_cocoa" = yes ; then
|
|
_gl=yes
|
|
_gl_cocoa=yes
|
|
fi
|
|
|
|
cat > $TMPC << EOF
|
|
#ifdef __APPLE__
|
|
#include <OpenGL/gl.h>
|
|
#include <OpenGL/glext.h>
|
|
#else
|
|
#include <GL/gl.h>
|
|
#include <GL/glext.h>
|
|
#endif
|
|
int main(int argc, char *argv[]) {
|
|
return !GL_INVALID_FRAMEBUFFER_OPERATION;
|
|
}
|
|
EOF
|
|
if ! cc_check; then
|
|
_gl=no
|
|
_gl_x11=no
|
|
_gl_wayland=no
|
|
_gl_win32=no
|
|
_gl_cocoa=no
|
|
res_comment="missing glext.h, get from http://www.opengl.org/registry/api/glext.h"
|
|
fi
|
|
else
|
|
_gl=no
|
|
fi
|
|
if test "$_gl" = yes ; then
|
|
def_gl='#define CONFIG_GL 1'
|
|
res_comment="backends:"
|
|
if test "$_gl_cocoa" = yes ; then
|
|
def_gl_cocoa='#define CONFIG_GL_COCOA 1'
|
|
res_comment="$res_comment cocoa"
|
|
fi
|
|
if test "$_gl_win32" = yes ; then
|
|
def_gl_win32='#define CONFIG_GL_WIN32 1'
|
|
res_comment="$res_comment win32"
|
|
fi
|
|
if test "$_gl_x11" = yes ; then
|
|
def_gl_x11='#define CONFIG_GL_X11 1'
|
|
res_comment="$res_comment x11"
|
|
fi
|
|
if test "$_gl_wayland" = yes ; then
|
|
def_gl_wayland='#define CONFIG_GL_WAYLAND'
|
|
res_comment="$res_comment wayland"
|
|
fi
|
|
vomodules="opengl $vomodules"
|
|
else
|
|
def_gl='#undef CONFIG_GL'
|
|
def_gl_cocoa='#undef CONFIG_GL_COCOA'
|
|
def_gl_win32='#undef CONFIG_GL_WIN32'
|
|
def_gl_x11='#undef CONFIG_GL_X11'
|
|
def_gl_wayland='#undef CONFIG_GL_WAYLAND'
|
|
novomodules="opengl $novomodules"
|
|
fi
|
|
echores "$_gl"
|
|
|
|
|
|
if win32; then
|
|
|
|
|
|
echocheck "Direct3D"
|
|
if test "$_direct3d" = auto ; then
|
|
_direct3d=no
|
|
header_check d3d9.h && _direct3d=yes
|
|
fi
|
|
if test "$_direct3d" = yes ; then
|
|
def_direct3d='#define CONFIG_DIRECT3D 1'
|
|
vomodules="direct3d $vomodules"
|
|
else
|
|
def_direct3d='#undef CONFIG_DIRECT3D'
|
|
novomodules="direct3d $novomodules"
|
|
fi
|
|
echores "$_direct3d"
|
|
|
|
|
|
echocheck "DirectSound"
|
|
if test "$_dsound" = auto ; then
|
|
_dsound=no
|
|
header_check dsound.h && _dsound=yes
|
|
fi
|
|
if test "$_dsound" = yes ; then
|
|
def_dsound='#define CONFIG_DSOUND 1'
|
|
aomodules="dsound $aomodules"
|
|
else
|
|
def_dsound='#undef CONFIG_DSOUND'
|
|
noaomodules="dsound $noaomodules"
|
|
fi
|
|
echores "$_dsound"
|
|
|
|
echocheck "WASAPI"
|
|
if test "$_wasapi0" = auto ; then
|
|
_wasapi0=no
|
|
|
|
cat > $TMPC << EOF
|
|
#define COBJMACROS 1
|
|
#define _WIN32_WINNT 0x600
|
|
#include <malloc.h>
|
|
#include <stdlib.h>
|
|
#include <process.h>
|
|
#include <initguid.h>
|
|
#include <audioclient.h>
|
|
#include <endpointvolume.h>
|
|
#include <mmdeviceapi.h>
|
|
#include <avrt.h>
|
|
const GUID *check1[] = {
|
|
&IID_IAudioClient,
|
|
&IID_IAudioRenderClient,
|
|
&IID_IAudioClient,
|
|
&IID_IAudioEndpointVolume,
|
|
};
|
|
int main(void) {
|
|
return 0;
|
|
}
|
|
EOF
|
|
|
|
if cc_check "-lole32"; then
|
|
_wasapi0="yes"
|
|
fi
|
|
|
|
fi
|
|
if test "$_wasapi0" = yes ; then
|
|
def_wasapi0='#define CONFIG_WASAPI0 1'
|
|
aomodules="wasapi0 $aomodules"
|
|
libs_mplayer="$libs_mplayer -lole32"
|
|
else
|
|
def_wasapi0='#undef CONFIG_WASAPI0'
|
|
noaomodules="wasapi0 $noaomodules"
|
|
fi
|
|
echores "$_wasapi0"
|
|
|
|
fi #if win32; then
|
|
|
|
|
|
echocheck "SDL 2.0"
|
|
if test "$_sdl2" = yes ; then
|
|
pkg_config_add 'sdl2' && _sdl2=yes
|
|
fi
|
|
if test "$_sdl2" = yes ; then
|
|
_sdl=yes # sdl2 implies sdl
|
|
def_sdl='#define CONFIG_SDL 1'
|
|
def_sdl2='#define CONFIG_SDL2 1'
|
|
vomodules="sdl $vomodules"
|
|
aomodules="sdl $aomodules"
|
|
echores "$_sdl2"
|
|
else
|
|
def_sdl2='#undef CONFIG_SDL2'
|
|
echores "$_sdl2"
|
|
echocheck "SDL"
|
|
if test "$_sdl" = yes ; then
|
|
pkg_config_add 'sdl' && _sdl=yes
|
|
fi
|
|
if test "$_sdl" = yes ; then
|
|
def_sdl='#define CONFIG_SDL 1'
|
|
novomodules="sdl $novomodules"
|
|
aomodules="sdl $aomodules"
|
|
else
|
|
def_sdl='#undef CONFIG_SDL'
|
|
novomodules="sdl $novomodules"
|
|
noaomodules="sdl $noaomodules"
|
|
fi
|
|
echores "$_sdl"
|
|
fi
|
|
|
|
|
|
|
|
|
|
#########
|
|
# AUDIO #
|
|
#########
|
|
|
|
|
|
echocheck "OSS Audio"
|
|
if test "$_ossaudio" = auto ; then
|
|
_ossaudio=no
|
|
return_check $_soundcard_header SNDCTL_DSP_SETFRAGMENT && _ossaudio=yes
|
|
fi
|
|
if test "$_ossaudio" = yes ; then
|
|
def_ossaudio='#define CONFIG_OSS_AUDIO 1'
|
|
aomodules="oss $aomodules"
|
|
cat > $TMPC << EOF
|
|
#include <$_soundcard_header>
|
|
#ifdef OPEN_SOUND_SYSTEM
|
|
int main(void) { return 0; }
|
|
#else
|
|
#error Not the real thing
|
|
#endif
|
|
EOF
|
|
_real_ossaudio=no
|
|
cc_check && _real_ossaudio=yes
|
|
if test "$_real_ossaudio" = yes; then
|
|
def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
|
|
# Check for OSS4 headers (override default headers)
|
|
# Does not apply to systems where OSS4 is native (e.g. FreeBSD)
|
|
if test -f /etc/oss.conf; then
|
|
. /etc/oss.conf
|
|
_ossinc="$OSSLIBDIR/include"
|
|
if test -f "$_ossinc/sys/soundcard.h"; then
|
|
extra_cflags="-I$_ossinc $extra_cflags"
|
|
fi
|
|
fi
|
|
elif netbsd || openbsd ; then
|
|
def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
|
|
libs_mplayer="$libs_mplayer -lossaudio"
|
|
else
|
|
def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
|
|
fi
|
|
def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
|
|
else
|
|
def_ossaudio='#undef CONFIG_OSS_AUDIO'
|
|
def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
|
|
def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
|
|
noaomodules="oss $noaomodules"
|
|
fi
|
|
echores "$_ossaudio"
|
|
|
|
|
|
echocheck "RSound"
|
|
if test "$_rsound" = auto ; then
|
|
_rsound=no
|
|
statement_check rsound.h 'rsd_init(NULL);' -lrsound && _rsound=yes
|
|
fi
|
|
echores "$_rsound"
|
|
|
|
if test "$_rsound" = yes ; then
|
|
def_rsound='#define CONFIG_RSOUND 1'
|
|
aomodules="rsound $aomodules"
|
|
libs_mplayer="$libs_mplayer -lrsound"
|
|
else
|
|
def_rsound='#undef CONFIG_RSOUND'
|
|
noaomodules="rsound $noaomodules"
|
|
fi
|
|
|
|
|
|
echocheck "pulse"
|
|
if test "$_pulse" = auto ; then
|
|
_pulse=no
|
|
if pkg_config_add 'libpulse >= 0.9' ; then
|
|
_pulse=yes
|
|
fi
|
|
fi
|
|
echores "$_pulse"
|
|
|
|
if test "$_pulse" = yes ; then
|
|
def_pulse='#define CONFIG_PULSE 1'
|
|
aomodules="pulse $aomodules"
|
|
else
|
|
def_pulse='#undef CONFIG_PULSE'
|
|
noaomodules="pulse $noaomodules"
|
|
fi
|
|
|
|
|
|
echocheck "PortAudio"
|
|
if test "$_portaudio" = auto && test "$_pthreads" != yes ; then
|
|
_portaudio=no
|
|
res_comment="pthreads not enabled"
|
|
fi
|
|
if test "$_portaudio" = auto ; then
|
|
_portaudio=no
|
|
if pkg_config_add 'portaudio-2.0 >= 19' ; then
|
|
_portaudio=yes
|
|
fi
|
|
fi
|
|
echores "$_portaudio"
|
|
|
|
if test "$_portaudio" = yes ; then
|
|
def_portaudio='#define CONFIG_PORTAUDIO 1'
|
|
aomodules="portaudio $aomodules"
|
|
else
|
|
def_portaudio='#undef CONFIG_PORTAUDIO'
|
|
noaomodules="portaudio $noaomodules"
|
|
fi
|
|
|
|
|
|
echocheck "JACK"
|
|
if test "$_jack" = auto ; then
|
|
_jack=no
|
|
if pkg_config_add jack ; then
|
|
_jack=yes
|
|
fi
|
|
fi
|
|
|
|
if test "$_jack" = yes ; then
|
|
def_jack='#define CONFIG_JACK 1'
|
|
aomodules="jack $aomodules"
|
|
else
|
|
noaomodules="jack $noaomodules"
|
|
fi
|
|
echores "$_jack"
|
|
|
|
|
|
echocheck "OpenAL"
|
|
if test "$_openal" = auto ; then
|
|
_openal=no
|
|
if pkg_config_add 'openal >= 1.13' ; then
|
|
_openal=yes
|
|
fi
|
|
fi
|
|
echores "$_openal"
|
|
|
|
if test "$_openal" = yes ; then
|
|
def_openal='#define CONFIG_OPENAL 1'
|
|
aomodules="openal $aomodules"
|
|
else
|
|
def_openal='#undef CONFIG_OPENAL'
|
|
noaomodules="openal $noaomodules"
|
|
fi
|
|
|
|
|
|
echocheck "ALSA audio"
|
|
if test "$_alsa" = auto ; then
|
|
_alsa=no
|
|
if pkg_config_add "alsa >= 1.0.9" ; then
|
|
_alsa=yes
|
|
fi
|
|
fi
|
|
def_alsa='#undef CONFIG_ALSA'
|
|
if test "$_alsa" = yes ; then
|
|
aomodules="alsa $aomodules"
|
|
def_alsa='#define CONFIG_ALSA 1'
|
|
else
|
|
noaomodules="alsa $noaomodules"
|
|
fi
|
|
echores "$_alsa"
|
|
|
|
|
|
if darwin; then
|
|
echocheck "CoreAudio"
|
|
if test "$_coreaudio" = auto ; then
|
|
cat > $TMPC <<EOF
|
|
#include <CoreAudio/CoreAudio.h>
|
|
#include <AudioToolbox/AudioToolbox.h>
|
|
#include <AudioUnit/AudioUnit.h>
|
|
int main(void) { return 0; }
|
|
EOF
|
|
_coreaudio=no
|
|
cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
|
|
fi
|
|
if test "$_coreaudio" = yes ; then
|
|
libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
|
|
def_coreaudio='#define CONFIG_COREAUDIO 1'
|
|
aomodules="coreaudio $aomodules"
|
|
else
|
|
def_coreaudio='#undef CONFIG_COREAUDIO'
|
|
noaomodules="coreaudio $noaomodules"
|
|
fi
|
|
echores $_coreaudio
|
|
fi #if darwin
|
|
|
|
|
|
# set default CD/DVD devices
|
|
if win32 ; then
|
|
default_cdrom_device="D:"
|
|
elif darwin ; then
|
|
default_cdrom_device="/dev/disk1"
|
|
elif dragonfly ; then
|
|
default_cdrom_device="/dev/cd0"
|
|
elif freebsd ; then
|
|
default_cdrom_device="/dev/cd0"
|
|
elif openbsd ; then
|
|
default_cdrom_device="/dev/rcd0c"
|
|
else
|
|
default_cdrom_device="/dev/cdrom"
|
|
fi
|
|
|
|
if win32 || dragonfly || freebsd || openbsd ; then
|
|
default_dvd_device=$default_cdrom_device
|
|
elif darwin ; then
|
|
default_dvd_device="/dev/rdiskN"
|
|
else
|
|
default_dvd_device="/dev/dvd"
|
|
fi
|
|
|
|
|
|
echocheck "VCD support"
|
|
if test "$_vcd" = auto; then
|
|
_vcd=no
|
|
if linux || freebsd || netbsd || openbsd || dragonfly || darwin ; then
|
|
_vcd=yes
|
|
elif mingw32; then
|
|
header_check_broken windows.h ntddcdrm.h && _vcd=yes
|
|
fi
|
|
fi
|
|
if test "$_vcd" = yes; then
|
|
inputmodules="vcd $inputmodules"
|
|
def_vcd='#define CONFIG_VCD 1'
|
|
else
|
|
def_vcd='#undef CONFIG_VCD'
|
|
noinputmodules="vcd $noinputmodules"
|
|
res_comment="not supported on this OS"
|
|
fi
|
|
echores "$_vcd"
|
|
|
|
|
|
|
|
echocheck "Blu-ray support"
|
|
if test "$_bluray" = auto ; then
|
|
_bluray=no
|
|
pkg_config_add 'libbluray >= 0.2.1' && _bluray=yes
|
|
fi
|
|
if test "$_bluray" = yes ; then
|
|
def_bluray='#define CONFIG_LIBBLURAY 1'
|
|
inputmodules="bluray $inputmodules"
|
|
else
|
|
def_bluray='#undef CONFIG_LIBBLURAY'
|
|
noinputmodules="bluray $noinputmodules"
|
|
fi
|
|
echores "$_bluray"
|
|
|
|
|
|
echocheck "dvdread"
|
|
if test "$_dvdread" = auto ; then
|
|
_dvdread=no
|
|
pkg_config_add 'dvdread >= 4.2.0' && _dvdread=yes
|
|
fi
|
|
if test "$_dvdread" = yes ; then
|
|
def_dvdread='#define CONFIG_DVDREAD 1'
|
|
inputmodules="dvdread $inputmodules"
|
|
else
|
|
def_dvdread='#undef CONFIG_DVDREAD'
|
|
noinputmodules="dvdread $noinputmodules"
|
|
fi
|
|
echores "$_dvdread"
|
|
|
|
|
|
echocheck "libcdio"
|
|
if test "$_libcdio" = auto ; then
|
|
_libcdio=no
|
|
if pkg_config_add 'libcdio_paranoia' ; then
|
|
_libcdio=yes
|
|
fi
|
|
fi
|
|
if test "$_libcdio" = yes ; then
|
|
_cdda='yes'
|
|
def_cdda='#define CONFIG_CDDA 1'
|
|
inputmodules="cdda $inputmodules"
|
|
else
|
|
_libcdio=no
|
|
_cdda='no'
|
|
def_cdda='#undef CONFIG_CDDA'
|
|
noinputmodules="cdda $noinputmodules"
|
|
fi
|
|
echores "$_libcdio"
|
|
|
|
|
|
echocheck "SSA/ASS support"
|
|
if test "$_ass" = auto ; then
|
|
if pkg_config_add libass ; then
|
|
_ass=yes
|
|
def_ass='#define CONFIG_ASS 1'
|
|
else
|
|
die "Unable to find development files for libass. Aborting. If you really mean to compile without libass support use --disable-libass."
|
|
fi
|
|
else
|
|
def_ass='#undef CONFIG_ASS'
|
|
fi
|
|
echores "$_ass"
|
|
|
|
|
|
echocheck "libass OSD support"
|
|
_dummy_osd=yes
|
|
if test "$_libass_osd" = auto ; then
|
|
_libass_osd=no
|
|
if test "$_ass" = yes ; then
|
|
_libass_osd=yes
|
|
_dummy_osd=no
|
|
fi
|
|
fi
|
|
echores "$_libass_osd"
|
|
|
|
|
|
echocheck "ENCA"
|
|
if test "$_enca" = auto ; then
|
|
_enca=no
|
|
statement_check enca.h 'enca_get_languages(NULL)' -lenca $_ld_lm && _enca=yes
|
|
fi
|
|
if test "$_enca" = yes ; then
|
|
def_enca='#define CONFIG_ENCA 1'
|
|
libs_mplayer="$libs_mplayer -lenca"
|
|
else
|
|
def_enca='#undef CONFIG_ENCA'
|
|
fi
|
|
echores "$_enca"
|
|
|
|
|
|
echocheck "zlib"
|
|
_zlib=no
|
|
statement_check zlib.h 'inflate(0, Z_NO_FLUSH)' -lz && _zlib=yes
|
|
if test "$_zlib" = yes ; then
|
|
def_zlib='#define CONFIG_ZLIB 1'
|
|
libs_mplayer="$libs_mplayer -lz"
|
|
else
|
|
die "Unable to find development files for zlib."
|
|
fi
|
|
echores "$_zlib"
|
|
|
|
|
|
# Any version of libmpg123 that knows MPG123_RESYNC_LIMIT shall be fine.
|
|
# That is, 1.2.0 onwards. Recommened is 1.14 onwards, though.
|
|
echocheck "mpg123 support"
|
|
def_mpg123='#undef CONFIG_MPG123'
|
|
if test "$_mpg123" = auto; then
|
|
_mpg123=no
|
|
pkg_config_add 'libmpg123 >= 1.2.0' && _mpg123=yes
|
|
fi
|
|
if test "$_mpg123" = yes ; then
|
|
def_mpg123='#define CONFIG_MPG123 1'
|
|
codecmodules="mpg123 $codecmodules"
|
|
else
|
|
nocodecmodules="mpg123 $nocodecmodules"
|
|
fi
|
|
echores "$_mpg123"
|
|
|
|
|
|
echocheck "LADSPA plugin support"
|
|
if test "$_ladspa" = auto ; then
|
|
_ladspa=no
|
|
if test "$_dl" = yes ; then
|
|
statement_check ladspa.h 'LADSPA_Descriptor ld = {0}' && _ladspa=yes
|
|
fi
|
|
fi
|
|
if test "$_ladspa" = yes; then
|
|
def_ladspa="#define CONFIG_LADSPA 1"
|
|
else
|
|
def_ladspa="#undef CONFIG_LADSPA"
|
|
fi
|
|
echores "$_ladspa"
|
|
|
|
|
|
echocheck "libbs2b audio filter support"
|
|
if test "$_libbs2b" = auto ; then
|
|
_libbs2b=no
|
|
if pkg_config_add libbs2b ; then
|
|
_libbs2b=yes
|
|
fi
|
|
fi
|
|
def_libbs2b="#undef CONFIG_LIBBS2B"
|
|
test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
|
|
echores "$_libbs2b"
|
|
|
|
|
|
echocheck "LCMS2 support"
|
|
if test "$_lcms2" = auto ; then
|
|
_lcms2=no
|
|
if pkg_config_add lcms2 ; then
|
|
_lcms2=yes
|
|
fi
|
|
fi
|
|
if test "$_lcms2" = yes; then
|
|
def_lcms2="#define CONFIG_LCMS2 1"
|
|
else
|
|
def_lcms2="#undef CONFIG_LCMS2"
|
|
fi
|
|
echores "$_lcms2"
|
|
|
|
|
|
all_libav_libs="libavutil > 51.73.0:libavcodec > 54.34.0:libavformat > 54.19.0:libswscale >= 2.0.0"
|
|
echocheck "Libav ($all_libav_libs)"
|
|
if test "$ffmpeg" = auto ; then
|
|
IFS=":" # shell should not be used for programming
|
|
if ! pkg_config_add $all_libav_libs ; then
|
|
die "Unable to find development files for some of the required Libav libraries above. Aborting."
|
|
fi
|
|
fi
|
|
echores "yes"
|
|
|
|
|
|
_resampler=no
|
|
_avresample=no
|
|
_avresample_has_set_channel_mapping=no
|
|
|
|
echocheck "libavresample >= 1.0.0"
|
|
if test "$_disable_avresample" = no ; then
|
|
if pkg_config_add "libavresample >= 1.0.0" ; then
|
|
_resampler=yes
|
|
_avresample=yes
|
|
def_resampler='#define CONFIG_LIBAVRESAMPLE'
|
|
fi
|
|
fi
|
|
echores "$_resampler"
|
|
|
|
if test "$_avresample" = yes ; then
|
|
echocheck "libavresample avresample_set_channel_mapping() API"
|
|
statement_check libavresample/avresample.h 'avresample_set_channel_mapping(NULL, NULL)' && _avresample_has_set_channel_mapping=yes
|
|
echores "$_avresample_has_set_channel_mapping"
|
|
fi
|
|
|
|
|
|
if test "$_resampler" = no ; then
|
|
echocheck "libswresample >= 0.17.102"
|
|
if pkg_config_add "libswresample >= 0.17.102" ; then
|
|
_resampler=yes
|
|
def_resampler='#define CONFIG_LIBSWRESAMPLE'
|
|
fi
|
|
echores "$_resampler"
|
|
fi
|
|
|
|
|
|
if test "$_resampler" = no ; then
|
|
die "No resampler found. Install libavresample or libswresample (FFmpeg)."
|
|
fi
|
|
|
|
if test "$_avresample_has_set_channel_mapping" = yes ; then
|
|
def_avresample_has_set_channel_mapping='#define HAVE_AVRESAMPLE_SET_CHANNEL_MAPPING 1'
|
|
else
|
|
def_avresample_has_set_channel_mapping='#define HAVE_AVRESAMPLE_SET_CHANNEL_MAPPING 0'
|
|
fi
|
|
|
|
|
|
echocheck "libavcodec AV_CODEC_PROP_TEXT_SUB API"
|
|
_avcodec_has_text_flag_api=no
|
|
statement_check libavcodec/avcodec.h 'int x = AV_CODEC_PROP_TEXT_SUB' && _avcodec_has_text_flag_api=yes
|
|
if test "$_avcodec_has_text_flag_api" = yes ; then
|
|
def_avcodec_has_text_flag_api='#define HAVE_AV_CODEC_PROP_TEXT_SUB 1'
|
|
else
|
|
def_avcodec_has_text_flag_api='#define HAVE_AV_CODEC_PROP_TEXT_SUB 0'
|
|
fi
|
|
echores "$_avcodec_has_text_flag_api"
|
|
|
|
|
|
echocheck "libavutil QP API"
|
|
_avutil_has_qp_api=no
|
|
statement_check libavutil/frame.h 'av_frame_get_qp_table(NULL, NULL, NULL)' && _avutil_has_qp_api=yes
|
|
if test "$_avutil_has_qp_api" = yes ; then
|
|
def_avutil_has_qp_api='#define HAVE_AVUTIL_QP_API 1'
|
|
else
|
|
def_avutil_has_qp_api='#define HAVE_AVUTIL_QP_API 0'
|
|
fi
|
|
echores "$_avutil_has_qp_api"
|
|
|
|
|
|
echocheck "libavutil ref-counting API"
|
|
_avutil_has_refcounting=no
|
|
statement_check libavutil/frame.h 'av_frame_unref(NULL)' && _avutil_has_refcounting=yes
|
|
if test "$_avutil_has_refcounting" = yes ; then
|
|
def_avutil_has_refcounting='#define HAVE_AVUTIL_REFCOUNTING 1'
|
|
else
|
|
def_avutil_has_refcounting='#define HAVE_AVUTIL_REFCOUNTING 0'
|
|
fi
|
|
echores "$_avutil_has_refcounting"
|
|
|
|
|
|
# libavfilter as it can be used by vf_lavfi is 3.45.101 in FFmpeg, and
|
|
# 3.5.0 in Libav. Completely useless version numbers.
|
|
echocheck "libavfilter"
|
|
if test "$libavfilter" = auto ; then
|
|
libavfilter=no
|
|
|
|
cat > $TMPC <<EOF
|
|
#include <libavfilter/avfilter.h>
|
|
void vf_next_query_format() {}
|
|
int main(void) {
|
|
avfilter_register_all();
|
|
vf_next_query_format();
|
|
return 0;
|
|
}
|
|
EOF
|
|
if cc_check `$_pkg_config libavfilter --cflags --libs` && pkg_config_add "libavfilter" ; then
|
|
libavfilter=yes
|
|
else
|
|
res_comment="not found or broken"
|
|
fi
|
|
fi
|
|
if test "$libavfilter" = yes ; then
|
|
def_libavfilter='#define CONFIG_LIBAVFILTER 1'
|
|
else
|
|
def_libavfilter='#undef CONFIG_LIBAVFILTER'
|
|
fi
|
|
echores "$libavfilter"
|
|
|
|
|
|
echocheck "using libavfilter through vf_lavfi"
|
|
if test "$vf_lavfi" = auto ; then
|
|
vf_lavfi=no
|
|
if test "$libavfilter" = yes ; then
|
|
if test "$_avutil_has_refcounting" = no ; then
|
|
res_comment="libavutil too old"
|
|
else
|
|
vf_lavfi=yes
|
|
fi
|
|
fi
|
|
fi
|
|
if test "$vf_lavfi" = yes ; then
|
|
def_vf_lavfi='#define CONFIG_VF_LAVFI 1'
|
|
else
|
|
def_vf_lavfi='#undef CONFIG_VF_LAVFI'
|
|
fi
|
|
echores "$vf_lavfi"
|
|
|
|
|
|
echocheck "libavutil av_opt_set_int_list() API"
|
|
_avutil_has_opt_set_int_list=no
|
|
statement_check libavutil/opt.h 'av_opt_set_int_list(0,0,(int*)0,0,0)' && _avutil_has_opt_set_int_list=yes
|
|
echores "$_avutil_has_opt_set_int_list"
|
|
|
|
|
|
echocheck "using libavfilter through af_lavfi"
|
|
if test "$af_lavfi" = auto ; then
|
|
af_lavfi=no
|
|
if test "$libavfilter" = yes ; then
|
|
if test "$_avutil_has_opt_set_int_list" = no ; then
|
|
res_comment="libavutil too old"
|
|
else
|
|
af_lavfi=yes
|
|
fi
|
|
fi
|
|
fi
|
|
if test "$af_lavfi" = yes ; then
|
|
def_af_lavfi='#define CONFIG_AF_LAVFI 1'
|
|
else
|
|
def_af_lavfi='#undef CONFIG_AF_LAVFI'
|
|
fi
|
|
echores "$af_lavfi"
|
|
|
|
|
|
echocheck "libavdevice >= 54.0.0"
|
|
if test "$libavdevice" = auto ; then
|
|
libavdevice=no
|
|
# Usually, libavdevice depends on libavfilter
|
|
if test "$libavfilter" = yes && pkg_config_add "libavdevice >= 54.0.0" ; then
|
|
libavdevice=yes
|
|
fi
|
|
fi
|
|
if test "$libavdevice" = yes ; then
|
|
def_libavdevice='#define CONFIG_LIBAVDEVICE 1'
|
|
else
|
|
def_libavdevice='#undef CONFIG_LIBAVDEVICE'
|
|
fi
|
|
echores "$libavdevice"
|
|
|
|
|
|
echocheck "libpostproc >= 52.0.0"
|
|
if test "$libpostproc" = auto ; then
|
|
libpostproc=no
|
|
if pkg_config_add "libpostproc >= 52.0.0" ; then
|
|
libpostproc=yes
|
|
fi
|
|
fi
|
|
if test "$libpostproc" = yes ; then
|
|
def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
|
|
else
|
|
def_libpostproc='#undef CONFIG_LIBPOSTPROC'
|
|
fi
|
|
echores "$libpostproc"
|
|
|
|
|
|
echocheck "TV interface"
|
|
if test "$_tv" = yes ; then
|
|
def_tv='#define CONFIG_TV 1'
|
|
inputmodules="tv $inputmodules"
|
|
else
|
|
noinputmodules="tv $noinputmodules"
|
|
def_tv='#undef CONFIG_TV'
|
|
fi
|
|
echores "$_tv"
|
|
|
|
|
|
echocheck "Video 4 Linux 2 TV interface"
|
|
if test "$_tv_v4l2" = auto ; then
|
|
_tv_v4l2=no
|
|
if test "$_tv" = yes && linux ; then
|
|
header_check_broken sys/time.h linux/videodev2.h && _tv_v4l2=yes
|
|
elif test "$_tv" = yes && test "$sys_videoio_h" = "yes" ; then
|
|
_tv_v4l2=yes
|
|
fi
|
|
fi
|
|
if test "$_tv_v4l2" = yes ; then
|
|
_audio_input=yes
|
|
def_tv_v4l2='#define CONFIG_TV_V4L2 1'
|
|
inputmodules="tv-v4l2 $inputmodules"
|
|
else
|
|
noinputmodules="tv-v4l2 $noinputmodules"
|
|
def_tv_v4l2='#undef CONFIG_TV_V4L2'
|
|
fi
|
|
echores "$_tv_v4l2"
|
|
|
|
|
|
echocheck "Radio interface"
|
|
if test "$_radio" = yes ; then
|
|
def_radio='#define CONFIG_RADIO 1'
|
|
inputmodules="radio $inputmodules"
|
|
if test "$_alsa" != yes -a "$_ossaudio" != yes ; then
|
|
_radio_capture=no
|
|
fi
|
|
if test "$_radio_capture" = yes ; then
|
|
_audio_input=yes
|
|
def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
|
|
else
|
|
def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
|
|
fi
|
|
else
|
|
noinputmodules="radio $noinputmodules"
|
|
def_radio='#undef CONFIG_RADIO'
|
|
def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
|
|
_radio_capture=no
|
|
fi
|
|
echores "$_radio"
|
|
echocheck "Capture for Radio interface"
|
|
echores "$_radio_capture"
|
|
|
|
echocheck "Video 4 Linux 2 Radio interface"
|
|
if test "$_radio_v4l2" = auto ; then
|
|
_radio_v4l2=no
|
|
if test "$_radio" = yes && linux ; then
|
|
header_check linux/videodev2.h && _radio_v4l2=yes
|
|
fi
|
|
fi
|
|
if test "$_radio_v4l2" = yes ; then
|
|
def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
|
|
else
|
|
def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
|
|
fi
|
|
echores "$_radio_v4l2"
|
|
|
|
|
|
if test "$_radio_v4l2" = no && test "$_radio" = yes ; then
|
|
die "Radio driver requires V4L2!"
|
|
fi
|
|
|
|
echocheck "Video 4 Linux 2 MPEG PVR interface"
|
|
if test "$_pvr" = auto ; then
|
|
_pvr=no
|
|
if test "$_tv_v4l2" = yes && linux ; then
|
|
cat > $TMPC <<EOF
|
|
#include <sys/time.h>
|
|
#include <linux/videodev2.h>
|
|
int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
|
|
EOF
|
|
cc_check && _pvr=yes
|
|
fi
|
|
fi
|
|
if test "$_pvr" = yes ; then
|
|
def_pvr='#define CONFIG_PVR 1'
|
|
inputmodules="pvr $inputmodules"
|
|
else
|
|
noinputmodules="pvr $noinputmodules"
|
|
def_pvr='#undef CONFIG_PVR'
|
|
fi
|
|
echores "$_pvr"
|
|
|
|
|
|
echocheck "encoding"
|
|
if test "$_encoding" = yes ; then
|
|
def_encoding="#define CONFIG_ENCODING 1"
|
|
else
|
|
def_encoding="#undef CONFIG_ENCODING"
|
|
fi
|
|
echores "$_encoding"
|
|
|
|
|
|
# needs dlopen on unix, uses winapi on windows
|
|
_dlopen="$_dl"
|
|
if win32 ; then
|
|
_dlopen=yes
|
|
fi
|
|
|
|
if test "$_dlopen" = yes ; then
|
|
def_dlopen='#define CONFIG_DLOPEN 1'
|
|
else
|
|
def_dlopen='#undef CONFIG_DLOPEN'
|
|
fi
|
|
|
|
#############################################################################
|
|
|
|
echocheck "compiler support for noexecstack"
|
|
if cflag_check -Wl,-z,noexecstack ; then
|
|
extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
|
|
echores "yes"
|
|
else
|
|
echores "no"
|
|
fi
|
|
|
|
echocheck "linker support for --nxcompat --no-seh --dynamicbase"
|
|
if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
|
|
extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
|
|
echores "yes"
|
|
else
|
|
echores "no"
|
|
fi
|
|
|
|
|
|
extra_ldflags="$extra_ldflags $_ld_pthread"
|
|
libs_mplayer="$libs_mplayer $_ld_dl"
|
|
(netbsd || openbsd) && x86_32 && libs_mplayer="$libs_mplayer -li386"
|
|
|
|
|
|
echocheck "joystick"
|
|
def_joystick='#undef CONFIG_JOYSTICK'
|
|
if test "$_joystick" = yes ; then
|
|
if linux || freebsd ; then
|
|
# TODO add some check
|
|
def_joystick='#define CONFIG_JOYSTICK 1'
|
|
else
|
|
_joystick="no"
|
|
res_comment="unsupported under $system_name"
|
|
fi
|
|
fi
|
|
echores "$_joystick"
|
|
|
|
echocheck "lirc"
|
|
if test "$_lirc" = auto ; then
|
|
_lirc=no
|
|
header_check lirc/lirc_client.h -llirc_client && _lirc=yes
|
|
fi
|
|
if test "$_lirc" = yes ; then
|
|
def_lirc='#define CONFIG_LIRC 1'
|
|
libs_mplayer="$libs_mplayer -llirc_client"
|
|
else
|
|
def_lirc='#undef CONFIG_LIRC'
|
|
fi
|
|
echores "$_lirc"
|
|
|
|
echocheck "lircc"
|
|
if test "$_lircc" = auto ; then
|
|
_lircc=no
|
|
header_check lirc/lircc.h -llircc && _lircc=yes
|
|
fi
|
|
if test "$_lircc" = yes ; then
|
|
def_lircc='#define CONFIG_LIRCC 1'
|
|
libs_mplayer="$libs_mplayer -llircc"
|
|
else
|
|
def_lircc='#undef CONFIG_LIRCC'
|
|
fi
|
|
echores "$_lircc"
|
|
|
|
#############################################################################
|
|
|
|
if mingw32 ; then
|
|
# add this last, so that --libs from pkg-config can't override it
|
|
end_ldflags="$end_ldflags -mconsole"
|
|
fi
|
|
|
|
CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE"
|
|
|
|
CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS"
|
|
|
|
# DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
|
|
|
|
|
|
#############################################################################
|
|
echo "Creating config.mak"
|
|
cat > config.mak << EOF
|
|
# -------- Generated by configure -----------
|
|
|
|
# Ensure that locale settings do not interfere with shell commands.
|
|
export LC_ALL = C
|
|
|
|
CONFIGURATION = $configuration
|
|
|
|
prefix = \$(DESTDIR)$_prefix
|
|
BINDIR = \$(DESTDIR)$_bindir
|
|
MANDIR = \$(DESTDIR)$_mandir
|
|
CONFDIR = \$(DESTDIR)$_confdir
|
|
LOCALEDIR = \$(DESTDIR)$_localedir
|
|
|
|
CC = $_cc
|
|
CXX = $_cc
|
|
INSTALL = $_install
|
|
WINDRES = $_windres
|
|
|
|
CFLAGS = $WARNFLAGS $ERRORFLAGS $WARN_CFLAGS $CFLAGS $extra_cflags
|
|
CXXFLAGS = $WARNFLAGS $ERRORFLAGS $CXXFLAGS $extra_cflags $extra_cxxflags
|
|
DEPFLAGS = $DEPFLAGS
|
|
|
|
EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs $libs_mplayer $end_ldflags
|
|
|
|
GETCH = $_getch
|
|
TIMER = $_timer
|
|
RST2MAN = $_rst2man
|
|
BUILD_MAN = $_build_man
|
|
|
|
EXESUF = $_exesuf
|
|
EXESUFS_ALL = .exe
|
|
|
|
NEED_GLOB = $need_glob
|
|
|
|
# features
|
|
ALSA = $_alsa
|
|
AUDIO_INPUT = $_audio_input
|
|
CACA = $_caca
|
|
CDDA = $_cdda
|
|
COCOA = $_cocoa
|
|
COREAUDIO = $_coreaudio
|
|
COREVIDEO = $_corevideo
|
|
DIRECT3D = $_direct3d
|
|
DL = $_dl
|
|
DLOPEN = $_dlopen
|
|
SDL = $_sdl
|
|
SDL2 = $_sdl2
|
|
DSOUND = $_dsound
|
|
WASAPI0 = $_wasapi0
|
|
DVBIN = $_dvbin
|
|
DVDREAD = $_dvdread
|
|
GL = $_gl
|
|
GL_COCOA = $_gl_cocoa
|
|
GL_WIN32 = $_gl_win32
|
|
GL_X11 = $_gl_x11
|
|
GL_WAYLAND = $_gl_wayland
|
|
HAVE_POSIX_SELECT = $_posix_select
|
|
HAVE_SYS_MMAN_H = $_mman
|
|
HAVE_AVUTIL_REFCOUNTING = $_avutil_has_refcounting
|
|
JACK = $_jack
|
|
JOYSTICK = $_joystick
|
|
JPEG = $_jpeg
|
|
LADSPA = $_ladspa
|
|
LIBASS = $_ass
|
|
LIBASS_OSD = $_libass_osd
|
|
DUMMY_OSD = $_dummy_osd
|
|
LIBBLURAY = $_bluray
|
|
LIBBS2B = $_libbs2b
|
|
LCMS2 = $_lcms2
|
|
LIBPOSTPROC = $libpostproc
|
|
LIBAVDEVICE = $libavdevice
|
|
LIBAVFILTER = $libavfilter
|
|
VF_LAVFI = $vf_lavfi
|
|
AF_LAVFI = $af_lavfi
|
|
LIBSMBCLIENT = $_smb
|
|
LIBQUVI = $_libquvi4
|
|
LIBQUVI9 = $_libquvi9
|
|
LIBGUESS = $_libguess
|
|
LIRC = $_lirc
|
|
MACOSX_BUNDLE = $_macosx_bundle
|
|
MNG = $_mng
|
|
MPG123 = $_mpg123
|
|
OPENAL = $_openal
|
|
OSS = $_ossaudio
|
|
PE_EXECUTABLE = $_pe_executable
|
|
PRIORITY = $_priority
|
|
PULSE = $_pulse
|
|
PORTAUDIO = $_portaudio
|
|
PVR = $_pvr
|
|
RADIO=$_radio
|
|
RADIO_CAPTURE=$_radio_capture
|
|
RSOUND = $_rsound
|
|
STREAM_CACHE = $_stream_cache
|
|
TV = $_tv
|
|
TV_V4L2 = $_tv_v4l2
|
|
VCD = $_vcd
|
|
VDPAU = $_vdpau
|
|
WIN32 = $_win32
|
|
X11 = $_x11
|
|
WAYLAND = $_wayland
|
|
XV = $_xv
|
|
|
|
# FFmpeg
|
|
ENCODING = $_encoding
|
|
|
|
CONFIG_VDPAU = $_vdpau
|
|
CONFIG_ZLIB = $_zlib
|
|
|
|
HAVE_PTHREADS = $_pthreads
|
|
HAVE_SHM = $_shm
|
|
|
|
EOF
|
|
|
|
#############################################################################
|
|
|
|
echo "Creating config.h"
|
|
cat > $TMPH << EOF
|
|
/*----------------------------------------------------------------------------
|
|
** This file has been automatically generated by configure any changes in it
|
|
** will be lost when you run configure again.
|
|
** Instead of modifying definitions here, use the --enable/--disable options
|
|
** of the configure script! See ./configure --help for details.
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef MPLAYER_CONFIG_H
|
|
#define MPLAYER_CONFIG_H
|
|
|
|
#define CONFIGURATION "$configuration"
|
|
|
|
#define MPLAYER_CONFDIR "$_confdir"
|
|
#define MPLAYER_LOCALEDIR "$_localedir"
|
|
|
|
$def_gettext
|
|
|
|
|
|
/* system headers */
|
|
$def_mman_h
|
|
$def_mman_has_map_failed
|
|
$def_soundcard_h
|
|
$def_sys_soundcard_h
|
|
$def_sys_sysinfo_h
|
|
$def_sys_videoio_h
|
|
$def_termios_h
|
|
$def_termios_sys_h
|
|
$def_winsock2_h
|
|
|
|
|
|
/* system functions */
|
|
$def_glob
|
|
$def_nanosleep
|
|
$def_posix_select
|
|
$def_select
|
|
$def_setmode
|
|
$def_shm
|
|
$def_termcap
|
|
$def_termios
|
|
|
|
|
|
/* system-specific features */
|
|
$def_dl
|
|
$def_dos_paths
|
|
$def_iconv
|
|
$def_macosx_bundle
|
|
$def_priority
|
|
|
|
|
|
/* configurable options */
|
|
$def_stream_cache
|
|
|
|
|
|
/* CPU stuff */
|
|
$def_ebx_available
|
|
|
|
$def_arch_x86
|
|
$def_arch_x86_32
|
|
$def_arch_x86_64
|
|
|
|
#define HAVE_MMX ARCH_X86
|
|
#define HAVE_MMX2 ARCH_X86
|
|
#define HAVE_SSE ARCH_X86
|
|
#define HAVE_SSE2 ARCH_X86
|
|
#define HAVE_SSSE3 ARCH_X86
|
|
|
|
/* Blu-ray/DVD/VCD/CD */
|
|
#define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
|
|
#define DEFAULT_DVD_DEVICE "$default_dvd_device"
|
|
$def_bluray
|
|
$def_cdda
|
|
$def_dvdread
|
|
$def_vcd
|
|
|
|
|
|
/* codec libraries */
|
|
$def_mpg123
|
|
$def_zlib
|
|
|
|
$def_avutil_has_refcounting
|
|
$def_avutil_has_qp_api
|
|
$def_avcodec_has_text_flag_api
|
|
$def_libpostproc
|
|
$def_libavdevice
|
|
$def_libavfilter
|
|
$def_vf_lavfi
|
|
$def_af_lavfi
|
|
|
|
$def_dlopen
|
|
|
|
/* Audio output drivers */
|
|
$def_alsa
|
|
$def_coreaudio
|
|
$def_jack
|
|
$def_openal
|
|
$def_openal_h
|
|
$def_ossaudio
|
|
$def_ossaudio_devdsp
|
|
$def_ossaudio_devmixer
|
|
$def_pulse
|
|
$def_portaudio
|
|
$def_rsound
|
|
|
|
$def_ladspa
|
|
$def_libbs2b
|
|
|
|
|
|
/* input */
|
|
$def_joystick
|
|
$def_lirc
|
|
$def_lircc
|
|
$def_pvr
|
|
$def_radio
|
|
$def_radio_capture
|
|
$def_radio_v4l2
|
|
$def_tv
|
|
$def_tv_v4l2
|
|
|
|
|
|
/* font stuff */
|
|
$def_ass
|
|
$def_enca
|
|
|
|
/* networking */
|
|
$def_smb
|
|
$def_libquvi4
|
|
$def_libquvi9
|
|
$def_libguess
|
|
|
|
$def_lcms2
|
|
|
|
|
|
/* libvo options */
|
|
$def_caca
|
|
$def_corevideo
|
|
$def_cocoa
|
|
$def_direct3d
|
|
$def_sdl
|
|
$def_sdl2
|
|
$def_dsound
|
|
$def_wasapi0
|
|
$def_dvb
|
|
$def_dvbin
|
|
$def_gl
|
|
$def_gl_cocoa
|
|
$def_gl_win32
|
|
$def_gl_x11
|
|
$def_gl_wayland
|
|
$def_jpeg
|
|
$def_mng
|
|
$def_v4l2
|
|
$def_vdpau
|
|
$def_vm
|
|
$def_x11
|
|
$def_wayland
|
|
$def_xdpms
|
|
$def_xf86keysym
|
|
$def_xinerama
|
|
$def_xss
|
|
$def_xv
|
|
|
|
|
|
/* FFmpeg */
|
|
$def_encoding
|
|
$def_resampler
|
|
$def_avresample_has_set_channel_mapping
|
|
|
|
$def_fast_64bit
|
|
$def_pthreads
|
|
|
|
#define HAVE_INLINE_ASM 1
|
|
|
|
/* Use these registers in x86 inline asm. No proper detection yet. */
|
|
#define HAVE_EBP_AVAILABLE 1
|
|
|
|
#endif /* MPLAYER_CONFIG_H */
|
|
EOF
|
|
|
|
# Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
|
|
cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
|
|
|
|
#############################################################################
|
|
|
|
cat << EOF
|
|
|
|
Config files successfully generated by ./configure $configuration !
|
|
|
|
Install prefix: $_prefix
|
|
Config direct.: $_confdir
|
|
|
|
Enabled optional drivers:
|
|
Input: $inputmodules
|
|
Codecs: libavcodecs $codecmodules
|
|
Audio output: $aomodules
|
|
Video output: $vomodules
|
|
|
|
Disabled optional drivers:
|
|
Input: $noinputmodules
|
|
Codecs: $nocodecmodules
|
|
Audio output: $noaomodules
|
|
Video output: $novomodules
|
|
|
|
'config.h' and 'config.mak' contain your configuration options.
|
|
Note: If you alter theses files (for instance CFLAGS) mpv may no longer
|
|
compile *** DO NOT REPORT BUGS if you tweak these files ***
|
|
|
|
'make' will now compile mpv and 'make install' will install it.
|
|
Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
|
|
|
|
EOF
|
|
|
|
|
|
cat <<EOF
|
|
Check $TMPLOG if you wonder why an autodetection failed (make sure
|
|
development headers/packages are installed).
|
|
|
|
NOTE: The --enable-* parameters unconditionally force options on, completely
|
|
skipping autodetection. This behavior is unlike what you may be used to from
|
|
autoconf-based configure scripts that can decide to override you. This greater
|
|
level of control comes at a price. You may have to provide the correct compiler
|
|
and linker flags yourself.
|
|
If you used one of these options and experience a compilation or
|
|
linking failure, make sure you have passed the necessary compiler/linker flags
|
|
to configure.
|
|
|
|
EOF
|
|
|
|
if test "$warn_cflags" = yes; then
|
|
cat <<EOF
|
|
|
|
mpv compilation will use the CPPFLAGS/CFLAGS/LDFLAGS set by you, but:
|
|
|
|
*** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
|
|
|
|
It is strongly recommended to let mpv choose the correct CFLAGS!
|
|
To do so, execute 'CFLAGS= ./configure <options>'
|
|
|
|
EOF
|
|
fi
|
|
|
|
# Last move:
|
|
rm -rf "$mplayer_tmpdir"
|