Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Opusfile
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
Opusfile
Commits
13488656
Commit
13488656
authored
11 years ago
by
Ron
Browse files
Options
Downloads
Patches
Plain Diff
Always build libopusurl
If --disable-http is used it will just only have file URL support.
parent
4e06a90e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile.am
+9
-16
9 additions, 16 deletions
Makefile.am
configure.ac
+2
-0
2 additions, 0 deletions
configure.ac
opusurl-uninstalled.pc.in
+2
-2
2 additions, 2 deletions
opusurl-uninstalled.pc.in
opusurl.pc.in
+2
-2
2 additions, 2 deletions
opusurl.pc.in
with
15 additions
and
20 deletions
Makefile.am
+
9
−
16
View file @
13488656
...
...
@@ -7,7 +7,7 @@ dist_doc_DATA = COPYING AUTHORS README.txt
opusincludedir
=
${
includedir
}
/opus
opusinclude_HEADERS
=
include/opusfile.h
lib_LTLIBRARIES
=
libopusfile.la
lib_LTLIBRARIES
=
libopusfile.la
libopusurl.la
libopusfile_la_SOURCES
=
\
src/info.c
\
src/internal.c src/internal.h
\
...
...
@@ -16,33 +16,26 @@ libopusfile_la_LIBADD = $(DEPS_LIBS)
libopusfile_la_LDFLAGS
=
-no-undefined
\
-version-info
@OP_LT_CURRENT@:@OP_LT_REVISION@:@OP_LT_AGE@
pkgconfigdir
=
$(
libdir
)
/pkgconfig
pkgconfig_DATA
=
opusfile.pc
if
OP_ENABLE_HTTP
lib_LTLIBRARIES
+=
libopusurl.la
libopusurl_la_SOURCES
=
src/http.c
libopusurl_la_SOURCES
=
src/http.c src/internal.c src/internal.h
libopusurl_la_LIBADD
=
libopusfile.la
$(
URL_DEPS_LIBS
)
libopusurl_la_LDFLAGS
=
-no-undefined
\
-version-info
@OP_LT_CURRENT@:@OP_LT_REVISION@:@OP_LT_AGE@
pkgconfig_DATA
+=
opusurl.pc
examples_opusfile_example_LDADD
=
libopusurl.la libopusfile.la
examples_seeking_example_LDADD
=
libopusurl.la libopusfile.la
if
OP_ENABLE_HTTP
if
OP_WIN32
libopusurl_la_SOURCES
+=
src/wincerts.c
libopusurl_la_LIBADD
+=
-lws2_32
-lcrypt32
endif
else
examples_opusfile_example_LDADD
=
libopusfile.la
examples_seeking_example_LDADD
=
libopusfile.la
endif
noinst_PROGRAMS
=
examples/opusfile_example examples/seeking_example
examples_opusfile_example_LDADD
=
libopusurl.la libopusfile.la
examples_seeking_example_LDADD
=
libopusurl.la libopusfile.la
pkgconfigdir
=
$(
libdir
)
/pkgconfig
pkgconfig_DATA
=
opusfile.pc opusurl.pc
debug
:
$(
MAKE
)
CFLAGS
=
"
${
CFLAGS
}
-O0 -ggdb -DOP_ENABLE_ASSERTIONS"
all
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
2
−
0
View file @
13488656
...
...
@@ -76,10 +76,12 @@ AM_COND_IF(OP_WIN32,
)
AS_IF([test "x$enable_http" != "xno"], [
openssl="openssl"
AC_DEFINE([OP_ENABLE_HTTP], [1], [Enable HTTP support])
PKG_CHECK_MODULES([URL_DEPS], [openssl])
])
AM_CONDITIONAL(OP_ENABLE_HTTP, [test "x$enable_http" != "xno"])
AC_SUBST([openssl])
PKG_CHECK_MODULES([DEPS], [ogg >= 1.3 opus >= 1.0.1])
...
...
This diff is collapsed.
Click to expand it.
opusurl-uninstalled.pc.in
+
2
−
2
View file @
13488656
...
...
@@ -6,9 +6,9 @@ libdir=${pcfiledir}/.libs
includedir=${pcfiledir}/@top_srcdir@/include
Name: opusfile uninstalled
Description: High-level Opus decoding library,
HTTP
support (not installed)
Description: High-level Opus decoding library,
URL
support (not installed)
Version: @VERSION@
Requires: opusfile
Requires.private: @openssl@
Conflicts:
Libs: ${libdir}/libopusurl.la
Cflags: -I${includedir}
This diff is collapsed.
Click to expand it.
opusurl.pc.in
+
2
−
2
View file @
13488656
...
...
@@ -6,9 +6,9 @@ libdir=@libdir@
includedir=@includedir@
Name: opusurl
Description: High-level Opus decoding library,
HTTP
support
Description: High-level Opus decoding library,
URL
support
Version: @VERSION@
Requires: opusfile
Requires.private: openssl
Requires.private:
@
openssl
@
Conflicts:
Libs: -L${libdir} -lopusurl
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment