diff options
author | Linus Nordberg <linus@nordberg.se> | 2011-02-15 14:49:47 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2011-02-15 14:49:47 +0100 |
commit | a4e5bd026c4d3b7cf4d84506e5322f62e26c73c7 (patch) | |
tree | 0679a391a900cfd78af45edec296bb5c6c6de733 /lib/configure.ac | |
parent | c82ad411651a82cdf284c57d144335391f684e6c (diff) |
Make autogen.sh actually work -- were missing ltmain.sh.
Add Automake/Libtool files to biuld-aux and set AC_CONFIG_AUX_DIR.
Use LT_INIT rather than deprecated AC_PROG_LIBTOOL.
Diffstat (limited to 'lib/configure.ac')
-rw-r--r-- | lib/configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/configure.ac b/lib/configure.ac index b3a8145..886fba7 100644 --- a/lib/configure.ac +++ b/lib/configure.ac @@ -3,10 +3,11 @@ AC_PREREQ([2.65]) AC_INIT([libradsec], [0.0.1-dev], [linus+libradsec@nordu.net]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([radsec.c]) +AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADERS([config.h]) -AC_PROG_LIBTOOL +AM_INIT_AUTOMAKE +LT_INIT # Checks for programs. AC_PROG_CC |