summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorjin-eld <jin at mediatomb dot cc>2013-08-30 13:35:48 +0300
committerjin-eld <jin at mediatomb dot cc>2013-09-01 20:39:02 +0300
commit7d29bd23b99304b8f504dcc7e086a9a3d58443e9 (patch)
tree8fceb471900f3958f5574b55ec110ff92d4c29e4 /configure.ac
parentc9116310c828e9a4a029007a55dcd5ae1feb56b2 (diff)
Forward compatibility with automake 1.14
This update makes sure that the build still works with automake prior to 1.12 and at the same time does not give any warnings or errors with automake 1.14
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index a16f6a4f..e82fe1f0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,7 +6,7 @@ AC_INIT([tox], [0.0.0], [http://tox.im])
6AC_CONFIG_AUX_DIR(configure_aux) 6AC_CONFIG_AUX_DIR(configure_aux)
7AC_CONFIG_SRCDIR([toxcore/net_crypto.c]) 7AC_CONFIG_SRCDIR([toxcore/net_crypto.c])
8AC_CONFIG_HEADERS([config.h]) 8AC_CONFIG_HEADERS([config.h])
9AM_INIT_AUTOMAKE([1.10 -Wall]) 9AM_INIT_AUTOMAKE([1.10 -Wall subdir-objects])
10m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) 10m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
11AC_CONFIG_MACRO_DIR([m4]) 11AC_CONFIG_MACRO_DIR([m4])
12 12
@@ -107,6 +107,7 @@ AC_ARG_WITH(libsodium-libs,
107# Checks for programs. 107# Checks for programs.
108AC_PROG_CC 108AC_PROG_CC
109AM_PROG_CC_C_O 109AM_PROG_CC_C_O
110m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
110AC_LIBTOOL_WIN32_DLL 111AC_LIBTOOL_WIN32_DLL
111AC_PROG_LIBTOOL 112AC_PROG_LIBTOOL
112 113