summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <waker@users.sourceforge.net>2014-02-04 21:53:01 +0100
committerGravatar Alexey Yakovenko <waker@users.sourceforge.net>2014-02-04 22:14:50 +0100
commit1be8124fc35a6b4ffd14bfc6008aee8a29a6e9f3 (patch)
tree51db677b3b1f706cc0e084a56878c19d1d9988a1 /configure.ac
parent605df291ca7391a6ee1c05ac3dd8d98498fdcd98 (diff)
vorbis: static build fix
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7695f889..a36f2a70 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT([deadbeef], [0.6.1])
+AC_INIT([deadbeef], [devel])
AC_CONFIG_HEADER(config.h)
@@ -322,7 +322,9 @@ AS_IF([test "${enable_vorbis}" != "no"], [
AS_IF([test "${enable_staticlink}" != "no"], [
HAVE_VORBISPLUGIN=yes
VORBIS_LIBS="../../$LIB/lib/libogg.a ../../$LIB/lib/libvorbis.a ../../$LIB/lib/libvorbisenc.a ../../$LIB/lib/libvorbisfile.a"
+ VORBIS_CFLAGS="-I../../$LIB/include"
AC_SUBST(VORBIS_LIBS)
+ AC_SUBST(VORBIS_CFLAGS)
], [
AC_CHECK_LIB([vorbis], [main], [HAVE_VORBIS=yes])
AC_CHECK_LIB([vorbisfile], [main], [HAVE_VORBISFILE=yes])