From 2d2effe25f5635bec27e00f556fd8eec123cfc9a Mon Sep 17 00:00:00 2001 Message-Id: <2d2effe25f5635bec27e00f556fd8eec123cfc9a.1715457047.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 10 Oct 2007 20:16:23 +0100 Subject: [PATCH] more empeg fixes Organization: Straylight/Edgeware From: Richard Kettlewell --- clients/playrtp.c | 1 + configure.ac | 2 ++ 2 files changed, 3 insertions(+) diff --git a/clients/playrtp.c b/clients/playrtp.c index 2eca1c6..6e428aa 100644 --- a/clients/playrtp.c +++ b/clients/playrtp.c @@ -66,6 +66,7 @@ #include #include #include +#include #include "log.h" #include "mem.h" diff --git a/configure.ac b/configure.ac index ef43af1..482505d 100644 --- a/configure.ac +++ b/configure.ac @@ -49,6 +49,8 @@ case "$host" in # work around broken toolchain AC_CHECK_LIB([gpg-error], [gpg_strerror]) AC_CHECK_LIB([pthread], [pthread_create]) + # lib/queue.c really wants to be split into server and non-server bits + AC_CHECK_LIB([dl], [dlopen]) want_server=no ;; *linux* | *Linux* ) -- [mdw]