summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMatt Messier <mmessier@grapetv.org>2007-05-13 20:57:00 -0400
committerMatt Messier <mmessier@grapetv.org>2007-05-13 20:57:00 -0400
commit54cb4d20e4efde08bf6f93f192f7d01c8cd51539 (patch)
tree484f82c3756b27c90be6c9941c076c9410181d1c /configure.ac
parent16252a6078a01d224ffd4014e9d8ebc580fa2b6d (diff)
downloadxine-lib-54cb4d20e4efde08bf6f93f192f7d01c8cd51539.tar.gz
xine-lib-54cb4d20e4efde08bf6f93f192f7d01c8cd51539.tar.bz2
Fixes to make Objective C tests actually work
with versions of autoconf that do not have AC_PROG_OBJC. Pull missing bits from autoconf 2.61, guard with m4_ifdef, and forcibly m4_include m4/objc.m4 into configure.ac, because aclocal won't pick it up with the m4_ifdef present.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 156b1c741..7acc64305 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,7 @@
AC_PREREQ(2.59)
+m4_include([m4/objc.m4])
+
dnl Note that autoconf/autoheader/automake cache using autom4te, so version.sh
dnl will only be run if configure.ac has changed. This must be done before
dnl AC_INIT so that XINE_VERSION_SPEC, which is an m4 macro, is available.