diff options
author | Linus Nordberg <linus@nordu.net> | 2010-10-16 11:29:14 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2010-10-16 11:29:14 +0200 |
commit | d726d4a61e0516b18df5903088e58d015c7cd1b8 (patch) | |
tree | f4544c4e0923c24a42c4c34857a9509aedc406d0 | |
parent | b14d1ac1f04fc0d74556f5c36db34d4f135033ae (diff) |
Require Autoconf 2.68 since 2.65 doesn't work on OSX.
With 2.65 on OSX, libradsec isn't linked correctly with
libfreeradius-radius and libevent-core. The effect is that a program
linking with -lradsec need to add the other two libraries on the link
line as well.
Whether 2.66 or 2.67 works on OSX is unknown.
-rw-r--r-- | lib/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/configure.ac b/lib/configure.ac index 5ae729f..5567ebf 100644 --- a/lib/configure.ac +++ b/lib/configure.ac @@ -1,6 +1,6 @@ # -*- Autoconf -*- script for libradsec. -AC_PREREQ([2.65]) +AC_PREREQ([2.68]) dnl Fwiw, 2.65 is ok on Ubuntu. AC_INIT([libradsec], [0.0.1-dev], [linus+libradsec@nordu.net]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE |