Differences From Artifact [41d8651685]:
- File configure.ac — part of check-in [a28e8368b3] at 2013-07-01 12:56:28 on branch trunk — Remove BUILDSYS_INIT and BUILDSYS_TOUCH_DEPS. (user: js, size: 1726) [annotate] [blame] [check-ins using]
To Artifact [e1de09361e]:
- File
configure.ac
— part of check-in
[5e8c4f49fc]
at
2014-02-24 02:55:15
on branch trunk
— Do not automatically call AC_CONFIG_COMMANDS_*
This causes problems with some versions of autoconf / m4. Moving it to a
function called BUILDSYS_INIT and calling that fixes it. (user: js, size: 1740) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | + | dnl dnl This is an example configure.ac that demonstrates how to use the buildsys. dnl You should not just copy it, but edit it to fit your needs! dnl dnl To generate the configure script, call: dnl aclocal -I m4 dnl autoconf dnl dnl Specify name, version and contact e-mail of the package. AC_INIT(name, version, e-mail) BUILDSYS_INIT dnl Specifies where your sources are. AC_CONFIG_SRCDIR(src) dnl If your package uses C, you want a C compiler and a C preprocessor AC_PROG_CC AC_PROG_CPP |
︙ |