]> git.draconx.ca Git - rarpd-dx.git/blob - configure.ac
Add description of -H option to the manual.
[rarpd-dx.git] / configure.ac
1 dnl Copyright © 2023 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_PREREQ([2.68])
8 AC_INIT([rarpd], [1a], [nbowler@draconx.ca], [rarpd-dx])
9
10 AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects])
11 AM_SILENT_RULES([yes])
12
13 AC_PROG_CC
14
15 CHECK_XSLTPROC
16 AM_CONDITIONAL([HAVE_XSLTPROC], [test x"$dx_cv_xsltproc_works" = x"yes"])
17
18 AC_CONFIG_FILES([Makefile])
19 AC_OUTPUT