diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2012-04-13 13:36:37 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2012-04-13 14:02:03 +0200 |
commit | 465282079dad27da60b5f780472ecfbf92cda301 (patch) | |
tree | 7f30b2895111cd0ed21339ba92f9cea6dfb99223 /configure.ac | |
parent | c2cf71cf2d6408f235ee8156a70790f70d19f98d (diff) |
configure: Modernize autotools setup a bit
Also we now only create tar.bz2 and tar.xz tarballs.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac index 0e3573455..344803740 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_PREREQ(2.60) +AC_PREREQ(2.62) dnl initialize autoconf dnl when going to/from release please set the nano (fourth number) right ! @@ -9,7 +9,7 @@ AC_INIT(GStreamer, 0.11.90.1, AG_GST_INIT dnl initialize automake (we require GNU make) -AM_INIT_AUTOMAKE([-Wno-portability 1.10]) +AM_INIT_AUTOMAKE([-Wno-portability 1.11 no-dist-gzip dist-xz tar-ustar]) dnl define PACKAGE_VERSION_* variables AS_VERSION @@ -24,7 +24,7 @@ dnl define the output header for config AM_CONFIG_HEADER([config.h]) dnl AM_MAINTAINER_MODE only provides the option to configure to enable it -AM_MAINTAINER_MODE +AM_MAINTAINER_MODE([enable]) dnl sets host_* variables AC_CANONICAL_HOST @@ -64,14 +64,6 @@ dnl - interfaces removed -> AGE = 0 dnl sets GST_LT_LDFLAGS AS_LIBTOOL(GST, 0, 0, 0) -dnl FIXME: this macro doesn't actually work; -dnl the generated libtool script has no support for the listed tags. -dnl So this needs to be fixed first if we want to use this -dnl AS_LIBTOOL_TAGS - -AC_LIBTOOL_WIN32_DLL -AM_PROG_LIBTOOL - dnl *** autotools stuff **** dnl allow for different autotools @@ -269,7 +261,7 @@ AG_GST_PLUGIN_DOCS([1.3],[2.1]) dnl *** checks for libraries *** dnl check for libm, for sin() -AC_CHECK_LIBM +LT_LIB_M AC_SUBST(LIBM) dnl *** checks for header files *** |