summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-07-12 18:33:39 +0200
committerwm4 <wm4@nowhere>2013-07-12 18:33:39 +0200
commitdc95504a52fc09be96a92b6cf2d9643ad4363db6 (patch)
treea7220deb3eb7cbe198d359c8cf24be25e3f007e5 /configure
parentd176f9571f22bc3b007f97544732698cec85a36e (diff)
downloadmpv-dc95504a52fc09be96a92b6cf2d9643ad4363db6.tar.bz2
mpv-dc95504a52fc09be96a92b6cf2d9643ad4363db6.tar.xz
build: change vf_dlopen test
Didn't work on Windows. Apparently, WIN32 is not set in the Makefile.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure14
1 files changed, 14 insertions, 0 deletions
diff --git a/configure b/configure
index 9f4439dfae..49c9625294 100755
--- a/configure
+++ b/configure
@@ -2842,6 +2842,18 @@ 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"
@@ -2966,6 +2978,7 @@ COREAUDIO = $_coreaudio
COREVIDEO = $_corevideo
DIRECT3D = $_direct3d
DL = $_dl
+DLOPEN = $_dlopen
SDL = $_sdl
SDL2 = $_sdl2
DSOUND = $_dsound
@@ -3126,6 +3139,7 @@ $def_libavfilter
$def_vf_lavfi
$def_af_lavfi
+$def_dlopen
/* Audio output drivers */
$def_alsa