]> git.draconx.ca Git - slotifier.git/blob - configure.ac
d5024213caf01f8bfb4959f53082ede33cda48b2
[slotifier.git] / configure.ac
1 dnl Copyright © 2018 Nick Bowler
2 dnl
3 dnl License WTFPL2: Do What The Fuck You Want To Public License, version 2.
4 dnl This is free software: you are free to do what the fuck you want to.
5 dnl There is NO WARRANTY, to the extent permitted by law.
6
7 AC_INIT([slotifier], [0], [nbowler@draconx.ca])
8 AC_CONFIG_HEADER([config.h])
9
10 AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects])
11 AM_SILENT_RULES([yes])
12
13 AC_PROG_CC
14 AM_PROG_CC_C_O
15 gl_EARLY
16
17 LT_INIT
18 gl_INIT
19
20 m4_include([lib/gnulib.mk])
21
22 dnl We provide our own makefile rules for gettext.  Disable tracing of
23 dnl AM_GNU_GETTEXT to prevent autoreconf from running autopoint, and to
24 dnl prevent automake from growing gratuitous error conditions.
25 m4_traceoff([AM_GNU_GETTEXT])
26 AM_GNU_GETTEXT([external])
27 DX_LINGUAS
28
29 DX_LIB_LIBGERBV
30 DX_LIB_CNEARTREE
31
32 AC_CONFIG_TESTDIR([.])
33 DX_PROG_AUTOTEST
34 AM_CONDITIONAL([HAVE_AUTOTEST], [test x"$dx_cv_autotest_works" = x"yes"])
35
36 AC_CONFIG_FILES([Makefile])
37 AC_OUTPUT