shithub: opusfile

Download patch

ref: 02b82ebb6061921c30b0bcc26844c57baa1c4094
parent: 8e6d4a76d616b39464f4e4a08915871f14cef1f8
author: Timothy B. Terriberry <tterribe@xiph.org>
date: Sun Sep 30 19:57:04 EDT 2012

Add pkg-config files.

--- a/Makefile.am
+++ b/Makefile.am
@@ -23,11 +23,21 @@
 debug:
 	$(MAKE) CFLAGS="${CFLAGS} -O0 -ggdb -DOP_ENABLE_ASSERTIONS" all
 
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = opusfile.pc
+
+EXTRA_DIST = \
+ opusfile.pc.in \
+ opusfile-uninstalled.pc.in
+
 #API Documentation
 
 if HAVE_DOXYGEN
 
-EXTRA_DIST = doc/Doxyfile.in doc/opus_logo.svg
+EXTRA_DIST += \
+ doc/Doxyfile.in \
+ doc/git-version.sh \
+ doc/opus_logo.svg
 
 all-local: doc/doxygen-build.stamp
 
--- a/configure.ac
+++ b/configure.ac
@@ -42,8 +42,9 @@
   [openssl="openssl"
    AC_DEFINE([OP_ENABLE_HTTP], [1], [Enable HTTP support])
 ])
+AC_SUBST(openssl)
 
-PKG_CHECK_MODULES([DEPS], [ogg opus ]${openssl})
+PKG_CHECK_MODULES([DEPS], [ogg >= 1.3 opus >= 1.0.1 ]${openssl})
 
 AC_ARG_ENABLE([fixed-point],
   AS_HELP_STRING([--enable-fixed-point], [Enable fixed-point calculation]),,
@@ -68,6 +69,7 @@
    ])
   ]
 )
+AC_SUBST(ac_cv_search_lrintf)
 
 CC_ATTRIBUTE_VISIBILITY([default], [
   CC_FLAG_VISIBILITY([CFLAGS="${CFLAGS} -fvisibility=hidden"])
@@ -93,6 +95,8 @@
 
 AC_OUTPUT([
   Makefile
+  opusfile.pc
+  opusfile-uninstalled.pc
   doc/Doxyfile
 ])
 
--- /dev/null
+++ b/opusfile-uninstalled.pc.in
@@ -1,0 +1,14 @@
+# opusfile uninstalled pkg-config file
+
+prefix=
+exec_prefix=
+libdir=${pcfiledir}/.libs
+includedir=${pcfiledir}/@top_srcdir@/include
+
+Name: opusfile uninstalled
+Description: Opus playback library (not installed)
+Version: @VERSION@
+Requires: ogg >= 1.3 opus >= 1.0.1 @openssl@
+Conflicts:
+Libs: ${libdir}/libopusfile.la @ac_cv_search_lrintf@
+Cflags: -I${includedir}
--- /dev/null
+++ b/opusfile.pc.in
@@ -1,0 +1,14 @@
+# opusfile installed pkg-config file
+
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: opusfile
+Description: Opus playback library
+Version: @VERSION@
+Requires: ogg >= 1.3 opus >= 1.0.1 @openssl@
+Conflicts:
+Libs: -L${libdir} -lopusfile
+Cflags: -I${includedir}