summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-07-15 09:07:31 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-07-15 09:07:31 +0000
commitff641a64292d4a5b7090e68bfb315f92065e13fb (patch)
tree0a3e28591a280e35477d6f1245355f3c92e4ebc5 /configure
parent0c107a325ef1e16f9ce8ea21701d6dd5bae4090f (diff)
downloadmpv-ff641a64292d4a5b7090e68bfb315f92065e13fb.tar.bz2
mpv-ff641a64292d4a5b7090e68bfb315f92065e13fb.tar.xz
Add two more missing headers to configure checks.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27285 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index cec15b3d26..01774c5443 100755
--- a/configure
+++ b/configure
@@ -5687,6 +5687,7 @@ echores "$_fribidi"
echocheck "ENCA"
if test "$_enca" = auto ; then
cat > $TMPC << EOF
+#include <sys/types.h>
#include <enca.h>
int main(void) {
const char **langs;
@@ -6026,6 +6027,7 @@ echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
if test "$_musepack" = auto ; then
_musepack=no
cat > $TMPC << EOF
+#include <stddef.h>
#include <mpcdec/mpcdec.h>
int main(void) {
mpc_streaminfo info;