Skip to content

Commit a698257

Browse files
committed
autotools: add cmake files to EXTRA_DIST
also reduce minimum ogg version from 1.3 to 1.1 Signed-off-by: Ozkan Sezer <[email protected]>
1 parent cc04a82 commit a698257

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

Makefile.am

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,12 @@ EXTRA_DIST = \
5454
doc/Doxyfile.in \
5555
doc/opus_logo.svg \
5656
doc/Makefile \
57-
unix/Makefile
57+
unix/Makefile \
58+
cmake/FindOgg.cmake \
59+
cmake/FindOpus.cmake \
60+
cmake/OpusFileConfig.cmake.in \
61+
cmake/OpusFilePackageVersion.cmake \
62+
CMakeLists.txt
5863

5964
# Targets to build and install just the library without the docs
6065
opusfile install-opusfile: NO_DOXYGEN = 1

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ AS_IF([test "$enable_http" != "no"], [
122122
AM_CONDITIONAL(OP_ENABLE_HTTP, [test "$enable_http" != "no"])
123123
AC_SUBST([openssl])
124124

125-
PKG_CHECK_MODULES([DEPS], [ogg >= 1.3 opus >= 1.0.1])
125+
PKG_CHECK_MODULES([DEPS], [ogg >= 1.1 opus >= 1.0.1])
126126

127127
AC_ARG_ENABLE([fixed-point],
128128
AS_HELP_STRING([--enable-fixed-point], [Enable fixed-point calculation]),,

opusfile-uninstalled.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ includedir=${pcfiledir}/@top_srcdir@/include
88
Name: opusfile uninstalled
99
Description: High-level Opus decoding library (not installed)
1010
Version: @PACKAGE_VERSION@
11-
Requires.private: ogg >= 1.3 opus >= 1.0.1
11+
Requires.private: ogg >= 1.1 opus >= 1.0.1
1212
Conflicts:
1313
Libs: ${libdir}/libopusfile.la @lrintf_lib@
1414
Cflags: -I${includedir}

opusfile.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ includedir=@includedir@
88
Name: opusfile
99
Description: High-level Opus decoding library
1010
Version: @PACKAGE_VERSION@
11-
Requires.private: ogg >= 1.3 opus >= 1.0.1
11+
Requires.private: ogg >= 1.1 opus >= 1.0.1
1212
Conflicts:
1313
Libs: -L${libdir} -lopusfile
1414
Libs.private: @lrintf_lib@

0 commit comments

Comments
 (0)