Displaying 6 results from an estimated 6 matches for "deps_libs".
2018 May 25
2
compiling Opus at home (dangerous)
help compiling Opus!
i'm stuck at opusfile.
configure says i don't have openssl package installed but Debian 9.4 thinks
i do.
this Debian only have Opus 1.2-alpha2 package, so i need to compile Opus by
myself.
seems even Debian developers having trouble compiling latest versions of
Opus,
what chances do i have to succeed?
-------------- next part --------------
An HTML attachment was
2019 May 07
0
dlopen failed: cannot locate symbol "opus_projection_encoder_ctl" referenced by "libopusenc.so"
...pus, libopusenc following the wiki: https://developer.android.com/ndk/guides/other_build_systems, I built libopus.so and libopusenc.so for all mentioned target ABIs in the wiki.
2. When building libopusenc.so, this is command I run, the host option varies depending on the target ABI: ./configure DEPS_LIBS="-L/path/to/opus-1.3.1/.libs -lopus" DEPS_CFLAGS="-I/path/to/opus-1.3.1/include" --host x86_64-linux-android
3. For my native JNI library, attached the Android.mk file at the end of the email.
4. The failure is seen as soon as System.loadLibrary("mynative_jni"...
2012 Sep 25
2
[libopusfile PATCH] build: implement autotools build system for libopusfile.
...p_srcdir)/include $(DEPS_CFLAGS)
+
+dist_doc_DATA = COPYING AUTHORS README.txt
+
+include_HEADERS = include/opusfile.h
+
+lib_LTLIBRARIES = libopusfile.la
+libopusfile_la_SOURCES = \
+ src/http.c src/info.c \
+ src/internal.c src/internal.h \
+ src/opusfile.c src/stream.c
+libopusfile_la_LIBADD = $(DEPS_LIBS)
+
+EXTRA_PROGRAMS = examples/opusfile_example examples/seeking_example
+
+examples_opusfile_example_LDADD = libopusfile.la
+examples_seeking_example_LDADD = libopusfile.la
+
+example: $(EXTRA_PROGRAMS)
+
+debug:
+ $(MAKE) CFLAGS="$(CFLAGS) -ggdb -O0" all example
diff --git a/configure.ac...
2012 Sep 25
0
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v3)
...p_srcdir)/include $(DEPS_CFLAGS)
+
+dist_doc_DATA = COPYING AUTHORS README.txt
+
+include_HEADERS = include/opusfile.h
+
+lib_LTLIBRARIES = libopusfile.la
+libopusfile_la_SOURCES = \
+ src/http.c src/info.c \
+ src/internal.c src/internal.h \
+ src/opusfile.c src/stream.c
+libopusfile_la_LIBADD = $(DEPS_LIBS)
+
+EXTRA_PROGRAMS = examples/opusfile_example examples/seeking_example
+
+examples_opusfile_example_LDADD = libopusfile.la
+examples_seeking_example_LDADD = libopusfile.la
+
+example: $(EXTRA_PROGRAMS)
+
+debug:
+ $(MAKE) CFLAGS="${CFLAGS} -O0 -ggdb -DOP_ENABLE_ASSERTIONS" all example
di...
2012 Sep 25
3
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v2)
...p_srcdir)/include $(DEPS_CFLAGS)
+
+dist_doc_DATA = COPYING AUTHORS README.txt
+
+include_HEADERS = include/opusfile.h
+
+lib_LTLIBRARIES = libopusfile.la
+libopusfile_la_SOURCES = \
+ src/http.c src/info.c \
+ src/internal.c src/internal.h \
+ src/opusfile.c src/stream.c
+libopusfile_la_LIBADD = $(DEPS_LIBS)
+
+EXTRA_PROGRAMS = examples/opusfile_example examples/seeking_example
+
+examples_opusfile_example_LDADD = libopusfile.la
+examples_seeking_example_LDADD = libopusfile.la
+
+example: $(EXTRA_PROGRAMS)
+
+debug:
+ $(MAKE) CFLAGS="${CFLAGS} -O0 -ggdb -DOP_ENABLE_ASSERTIONS" all example
di...
2012 Sep 29
2
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)
...p_srcdir)/include $(DEPS_CFLAGS)
+
+dist_doc_DATA = COPYING AUTHORS README.txt
+
+include_HEADERS = include/opusfile.h
+
+lib_LTLIBRARIES = libopusfile.la
+libopusfile_la_SOURCES = \
+ src/http.c src/info.c \
+ src/internal.c src/internal.h \
+ src/opusfile.c src/stream.c
+libopusfile_la_LIBADD = $(DEPS_LIBS)
+libopusfile_la_LDFLAGS = -no-undefined \
+ -version-info @OP_LT_CURRENT@:@OP_LT_REVISION@:@OP_LT_AGE@
+
+noinst_PROGRAMS = examples/opusfile_example examples/seeking_example
+
+examples_opusfile_example_LDADD = libopusfile.la
+examples_seeking_example_LDADD = libopusfile.la
+
+debug:
+ $(MAKE) CF...