summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-07-04 17:41:18 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-07-04 17:41:18 +0000
commit30d862600744c10b1cced854edc25be2b0d41bf2 (patch)
treee5cf99c924c678c7b85d06e4bea62f310d5a16d2
parent2d5b54d515aef7025fdd5568ce0af2e56c7fbdfa (diff)
Run autoheader to create config.h.in; add
Original commit message from CVS: * autogen.sh: * configure.ac: Run autoheader to create config.h.in; add AM_CONFIG_HEADER to configure.ac.
-rw-r--r--gst-app/ChangeLog7
-rwxr-xr-xgst-app/autogen.sh2
-rw-r--r--gst-app/configure.ac4
3 files changed, 10 insertions, 3 deletions
diff --git a/gst-app/ChangeLog b/gst-app/ChangeLog
index 468a2eb..d2a5245 100644
--- a/gst-app/ChangeLog
+++ b/gst-app/ChangeLog
@@ -1,3 +1,10 @@
+2006-07-04 Tim-Philipp Müller <tim at centricular dot net>
+
+ * autogen.sh:
+ * configure.ac:
+ Run autoheader to create config.h.in; add
+ AM_CONFIG_HEADER to configure.ac.
+
2006-07-03 Tim-Philipp Müller <tim at centricular dot net>
* Makefile.am:
diff --git a/gst-app/autogen.sh b/gst-app/autogen.sh
index 327e2d8..ad4bd47 100755
--- a/gst-app/autogen.sh
+++ b/gst-app/autogen.sh
@@ -53,7 +53,7 @@ fi
tool_run "$aclocal" "$ACLOCAL_FLAGS"
tool_run "$libtoolize" "--copy --force"
-###tool_run "$autoheader"
+tool_run "$autoheader"
tool_run "$autoconf"
tool_run "$automake" "-a -c"
diff --git a/gst-app/configure.ac b/gst-app/configure.ac
index 97844f7..00b1cca 100644
--- a/gst-app/configure.ac
+++ b/gst-app/configure.ac
@@ -7,13 +7,13 @@ VERSION=0.1.1
dnl these AC_DEFINE_UNQUOTED's are necessary for make dist to work
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
-AC_DEFINE_UNQUOTED(RELEASE, "$RELEASE")
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
-AC_SUBST(RELEASE)
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
+AM_CONFIG_HEADER(config.h)
+
AC_PROG_CC
AC_PROG_LIBTOOL