diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2014-07-22 16:24:25 +0200 |
---|---|---|
committer | Patrick Ohly <patrick.ohly@intel.com> | 2014-07-22 16:24:25 +0200 |
commit | 3e3f6ac3362b902fee80b1c76a0c78f9f5cddfa2 (patch) | |
tree | 6f00842191fde7c6d1eeacf7d6af7a58bedd8a50 | |
parent | a9d907d78ca0eba61f6796093770bdf049edb498 (diff) |
autotools: modernize AM_INIT_AUTOMAKE/AC_INITlibsynthesis_3.4.0.47+syncevolution-1-4-99-3
Package name and version should be passed to AC_INIT according to
current Automake documentation.
In addition, we need to pass subdir-objects as option to
AM_INIT_AUTOMAKE to avoid warnings about the location of our object
files (first seen with automake 1.14.1).
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 3f92bb3..b2ffb08 100644 --- a/configure.in +++ b/configure.in @@ -1,10 +1,10 @@ dnl Invoke autogen.sh to produce a configure script. -AC_INIT(src/sysync/engineinterface.cpp) -AC_CONFIG_MACRO_DIR([m4]) # four digit upstream version, one additional digit for # Linux/SyncEvolution specific extensions: -AM_INIT_AUTOMAKE(synthesis, 3.4.0.47.3) +AC_INIT([synthesis], [3.4.0.47.3]) +AM_INIT_AUTOMAKE(subdir-objects) +AC_CONFIG_MACRO_DIR([m4]) AM_CONFIG_HEADER(config.h) AC_LIBTOOL_DLOPEN |