diff options
author | Ondrej Filip <feela@majklik.network.cz> | 2009-06-02 00:28:08 +0200 |
---|---|---|
committer | Ondrej Filip <feela@majklik.network.cz> | 2009-06-02 00:28:08 +0200 |
commit | dc16584ac2be1c097acbf8a0b2f6d412214f2a01 (patch) | |
tree | 9cbd9c8c763dad1a35cacdf0b7021cd354918e2c /configure.in | |
parent | 9be1086d2970633fb5af2a1faaae16d5a1cf48ea (diff) |
Small change to make BIRD's IPv6 packaging easier
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index d1b503b0..8d519fdd 100644 --- a/configure.in +++ b/configure.in @@ -42,11 +42,13 @@ AC_SUBST(srcdir_rel_mf) if test "$enable_ipv6" = yes ; then ip=ipv6 + SUFFIX6=6 if test "$with_protocols" = all ; then with_protocols=bgp,pipe,rip,static fi else ip=ipv4 + SUFFIX6="" if test "$with_protocols" = all ; then with_protocols=bgp,ospf,pipe,rip,static fi @@ -208,6 +210,7 @@ if test "$enable_client" = yes ; then fi AC_SUBST(CLIENT) AC_SUBST(CLIENT_LIBS) +AC_SUBST(SUFFIX6) mkdir -p $objdir/sysdep AC_CONFIG_HEADERS([$objdir/sysdep/autoconf.h:sysdep/autoconf.h.in]) |