diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-02-10 00:16:06 -0800 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-02-10 00:49:20 -0800 |
commit | 3d8045d3aa81ccce0693968f51e8bef347336eb4 (patch) | |
tree | 2c9334694adbcdb38784a4f7f53345a1b7220d23 /configure.ac | |
parent | 425bd945a540be8d9bb4cf4a8bd6114942a768cd (diff) | |
download | xrdp-proprietary-3d8045d3aa81ccce0693968f51e8bef347336eb4.tar.gz xrdp-proprietary-3d8045d3aa81ccce0693968f51e8bef347336eb4.zip |
Use AC_CONFIG_MACRO_DIR, not AC_CONFIG_MACRO_DIRS
AC_CONFIG_MACRO_DIRS requires a very recent Automake, much newer than the
declared version 1.6 (even 1.11 doesn't work). AC_CONFIG_MACRO_DIR is
defined by Autoconf starting with version 2.58, so it's within the
currently declared constraints.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 7535620d..efb307ac 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_PREREQ(2.59) AC_INIT([xrdp], [0.9.0], [xrdp-devel@googlegroups.com]) AC_CONFIG_HEADERS(config_ac.h:config_ac-h.in) AM_INIT_AUTOMAKE([1.6 foreign]) -AC_CONFIG_MACRO_DIRS([m4]) +AC_CONFIG_MACRO_DIR([m4]) AC_PROG_CC AC_C_CONST AC_PROG_LIBTOOL |