search for: deps_cflag

Displaying 6 results from an estimated 6 matches for "deps_cflag".

Did you mean: deps_cflags
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"
...roid.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"); is called. Questions ========== Does anyone know if...
2012 Sep 25
2
[libopusfile PATCH] build: implement autotools build system for libopusfile.
...gure +depcomp +examples/opusfile_example +examples/seeking_example +install-sh +libopusfile-*.tar.* +libtool +ltmain.sh +missing diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..098a63d --- /dev/null +++ b/Makefile.am @@ -0,0 +1,22 @@ +AM_CFLAGS = -I$(top_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 =...
2012 Sep 25
0
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v3)
...ltmain.sh +m4/libtool.m4 +m4/ltoptions.m4 +m4/ltsugar.m4 +m4/ltversion.m4 +m4/lt~obsolete.m4 +missing diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..6c05491 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,24 @@ +ACLOCAL_AMFLAGS = -I m4 + +AM_CFLAGS = -I$(top_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 =...
2012 Sep 25
3
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v2)
...ltmain.sh +m4/libtool.m4 +m4/ltoptions.m4 +m4/ltsugar.m4 +m4/ltversion.m4 +m4/lt~obsolete.m4 +missing diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..6c05491 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,24 @@ +ACLOCAL_AMFLAGS = -I m4 + +AM_CFLAGS = -I$(top_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 =...
2012 Sep 29
2
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)
...ltmain.sh +m4/libtool.m4 +m4/ltoptions.m4 +m4/ltsugar.m4 +m4/ltversion.m4 +m4/lt~obsolete.m4 +missing diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..d9f491e --- /dev/null +++ b/Makefile.am @@ -0,0 +1,51 @@ +ACLOCAL_AMFLAGS = -I m4 + +AM_CFLAGS = -I$(top_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_LDF...