Skip to content
Snippets Groups Projects
Commit 02b82ebb authored by Timothy B. Terriberry's avatar Timothy B. Terriberry
Browse files

Add pkg-config files.

parent 8e6d4a76
No related branches found
No related tags found
No related merge requests found
......@@ -23,11 +23,21 @@ examples_seeking_example_LDADD = libopusfile.la
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
......
......@@ -42,8 +42,9 @@ AS_IF([test "x$enable_http" != "xno"],
[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 @@ AS_IF([test "x$enable_fixed_point" = "xyes"],
])
]
)
AC_SUBST(ac_cv_search_lrintf)
CC_ATTRIBUTE_VISIBILITY([default], [
CC_FLAG_VISIBILITY([CFLAGS="${CFLAGS} -fvisibility=hidden"])
......@@ -93,6 +95,8 @@ AM_CONDITIONAL(HAVE_DOXYGEN,$HAVE_DOXYGEN)
AC_OUTPUT([
Makefile
opusfile.pc
opusfile-uninstalled.pc
doc/Doxyfile
])
......
# 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}
# 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}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment