[xiph-commits] r18757 - trunk/ogg
tterribe at svn.xiph.org
tterribe at svn.xiph.org
Tue Jan 8 07:56:32 PST 2013
Author: tterribe
Date: 2013-01-08 07:56:32 -0800 (Tue, 08 Jan 2013)
New Revision: 18757
Modified:
trunk/ogg/configure.in
Log:
Bring libogg's configure.in into the 21st century.
Patch by Ron Lee.
Modified: trunk/ogg/configure.in
===================================================================
--- trunk/ogg/configure.in 2013-01-02 14:44:43 UTC (rev 18756)
+++ trunk/ogg/configure.in 2013-01-08 15:56:32 UTC (rev 18757)
@@ -1,10 +1,12 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(src/framing.c)
+AC_INIT([libogg],[1.3.0],[ogg-dev at xiph.org])
-AM_INIT_AUTOMAKE(libogg,1.3.0)
-AM_MAINTAINER_MODE
+AC_CONFIG_SRCDIR(src/framing.c)
+AM_INIT_AUTOMAKE
+AM_MAINTAINER_MODE([enable])
+
dnl Library versioning
LIB_CURRENT=8
@@ -18,9 +20,6 @@
AM_PROG_LIBTOOL
AM_PROG_CC_C_O
-dnl config.h
-AM_CONFIG_HEADER(config.h)
-
dnl Set some options based on environment
cflags_save="$CFLAGS"
@@ -171,7 +170,8 @@
AC_SUBST(CFLAGS)
AC_SUBST(PROFILE)
-AC_OUTPUT([
+
+AC_CONFIG_FILES([
Makefile
src/Makefile
doc/Makefile doc/libogg/Makefile
@@ -180,3 +180,6 @@
ogg.pc
ogg-uninstalled.pc
])
+AC_CONFIG_HEADERS([config.h])
+
+AC_OUTPUT
More information about the commits
mailing list