summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTim Rühsen <tim.ruehsen@gmx.de>2018-06-15 19:39:22 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2018-06-16 20:21:17 +0000
commit535ba543e78338192ce40b501e1283130550a704 (patch)
tree27c139b204a1fb4b2d58906781412db76e643342 /configure.ac
parent8a2ee790126f2ef4bb6ba9987e05d70d2f07ed1e (diff)
downloadgnutls-535ba543e78338192ce40b501e1283130550a704.tar.gz
Fix usage of 'autoreconf'
'autoreconf' created a different configure script than ./bootstrap. The result was a broken wchar.h that failed to compile. The work-around was 'autoreconf -I gl/m4' which is not what a developer expects. This patch moves gl/m4/* to m4/ which is the default include dir for autoreconf. Signed-off-by: Tim Rühsen <tim.ruehsen@gmx.de>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 8acce4d167..5d78f3f7e2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT([GnuTLS], [3.6.2], [bugs@gnutls.org])
AC_CONFIG_AUX_DIR([build-aux])
-AC_CONFIG_MACRO_DIR([m4])
+AC_CONFIG_MACRO_DIRS([m4 src/gl/m4 src/libopts/m4 lib/unistring/m4])
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE([1.12.2 foreign subdir-objects no-dist-gzip dist-xz -Wall -Wno-override])