Displaying 4 results from an estimated 4 matches for "dop_enable_assert".
2012 Sep 25
2
[libopusfile PATCH] build: implement autotools build system for libopusfile.
---
This includes the check target that Tim requested.
Signed-off-by: Diego Elio Petten? <flameeyes at flameeyes.eu>
---
.gitignore | 24 ++++++++++++++++++++++++
Makefile.am | 22 ++++++++++++++++++++++
configure.ac | 14 ++++++++++++++
3 file modificati, 60 inserzioni(+)
create mode 100644 .gitignore
create mode 100644 Makefile.am
create mode 100644 configure.ac
diff --git
2012 Sep 25
0
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v3)
...eam.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
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..e31a822
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+autoreconf -is
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..3f4e6f4
--- /dev/null
+++ b/configure.ac
@@...
2012 Sep 25
3
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v2)
...eam.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
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..3f4e6f4
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,66 @@
+AC_INIT([libopusfile], [0.0])
+
+AC_USE_SYSTEM_EXTENSIONS
+AC_SYS_LARGEFILE
+
+AM_INIT_AUTOMAKE([1.11 foreign dist-bzip2 no-dist-gzip])
+LT_I...
2012 Sep 29
2
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)
...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) CFLAGS="${CFLAGS} -O0 -ggdb -DOP_ENABLE_ASSERTIONS" all example
+
+#API Documentation
+
+if HAVE_DOXYGEN
+
+EXTRA_DIST = doc/Doxyfile.in
+
+all-local: doc/doxygen-build.stamp
+
+doc/doxygen-build.stamp: doc/Doxyfile $(top_srcdir)/include/*.h
+ cd doc && doxygen
+ touch "$@"
+
+install-data-local:
+ cd doc && for f...