Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,12 @@ EXTRA_DIST = \
doc/Doxyfile.in \
doc/opus_logo.svg \
doc/Makefile \
unix/Makefile
unix/Makefile \
cmake/FindOgg.cmake \
cmake/FindOpus.cmake \
cmake/OpusFileConfig.cmake.in \
cmake/OpusFilePackageVersion.cmake \
CMakeLists.txt

# Targets to build and install just the library without the docs
opusfile install-opusfile: NO_DOXYGEN = 1
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ AS_IF([test "$enable_http" != "no"], [
AM_CONDITIONAL(OP_ENABLE_HTTP, [test "$enable_http" != "no"])
AC_SUBST([openssl])

PKG_CHECK_MODULES([DEPS], [ogg >= 1.3 opus >= 1.0.1])
PKG_CHECK_MODULES([DEPS], [ogg >= 1.1 opus >= 1.0.1])

AC_ARG_ENABLE([fixed-point],
AS_HELP_STRING([--enable-fixed-point], [Enable fixed-point calculation]),,
Expand Down
2 changes: 1 addition & 1 deletion opusfile-uninstalled.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ includedir=${pcfiledir}/@top_srcdir@/include
Name: opusfile uninstalled
Description: High-level Opus decoding library (not installed)
Version: @PACKAGE_VERSION@
Requires.private: ogg >= 1.3 opus >= 1.0.1
Requires.private: ogg >= 1.1 opus >= 1.0.1
Conflicts:
Libs: ${libdir}/libopusfile.la @lrintf_lib@
Cflags: -I${includedir}
2 changes: 1 addition & 1 deletion opusfile.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ includedir=@includedir@
Name: opusfile
Description: High-level Opus decoding library
Version: @PACKAGE_VERSION@
Requires.private: ogg >= 1.3 opus >= 1.0.1
Requires.private: ogg >= 1.1 opus >= 1.0.1
Conflicts:
Libs: -L${libdir} -lopusfile
Libs.private: @lrintf_lib@
Expand Down