configure.ac
1 | # -*- Autoconf -*- |
2 | # Process this file with autoconf to produce a configure script. |
3 | |
4 | AC_PREREQ([2.69]) |
5 | AC_INIT([guile-netlink], [1.2], [julien@lepiller.eu]) |
6 | AM_INIT_AUTOMAKE([-Wall -Werror foreign]) |
7 | |
8 | # Checks for programs. |
9 | GUILE_PKG([3.0 2.2]) |
10 | GUILE_PROGS |
11 | GUILE_SITE_DIR |
12 | |
13 | if test "$cross_compiling" != no; then |
14 | GUILE_TARGET="--target=$host_alias" |
15 | AC_SUBST([GUILE_TARGET]) |
16 | fi |
17 | |
18 | AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env]) |
19 | AC_CONFIG_FILES(Makefile) |
20 | AC_PROG_AWK |
21 | |
22 | AC_OUTPUT |
23 |