Displaying 2 results from an estimated 2 matches for "op_lt_ag".
Did you mean:
op_lt_age
2012 Sep 29
2
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)
...lude/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) CFLAGS="${CFLAGS} -O0 -ggdb -DOP_ENABLE_ASSERTIONS" all example
+
+#API Documentation
+
+if HA...
2013 May 08
1
[PATCH] opusfile configury fixes.
...RGEFILE
AM_INIT_AUTOMAKE([1.11 foreign])
AM_MAINTAINER_MODE([enable])
-LT_INIT
-
-m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
-
-AC_CONFIG_MACRO_DIR([m4])
dnl Library versioning for libtool.
dnl Please update these for releases.
@@ -29,6 +28,10 @@
AC_SUBST(OP_LT_REVISION)
AC_SUBST(OP_LT_AGE)
+AC_CANONICAL_HOST
+AM_PROG_LIBTOOL
+AM_PROG_CC_C_O
+
CC_CHECK_CFLAGS_APPEND(
[-std=c89 -pedantic -Wall -Wextra -Wno-parentheses -Wno-long-long])
@@ -62,15 +65,15 @@
AM_COND_IF(OP_WIN32,
AS_IF([test "x$enable_http" != "xno"],
- AC_CHECK_HEADER([winsock2.h],,
+...