Convert symbol tables to vector interface.
[ksplice.git] / configure.ac
blob084c988c392a1361a34ed8a8dfaacd60782d8d78
1 AC_INIT(Ksplice, 0.8.7, ksplice@mit.edu)
3 dnl The author of Ksplice learned how to configure libbfd by looking at
4 dnl elf2flt, which is available under the GNU General Public License.
6 AC_ARG_WITH(libbfd,
7   [  --with-libbfd=FILE      path to libbfd.a ],
8   [ ac_libbfd=$withval ],
9   [ ac_libbfd=NONE ]
12 AC_ARG_WITH(libiberty,
13   [  --with-libiberty=FILE   path to libiberty.a ],
14   [ ac_libiberty=$withval ],
15   [ ac_libiberty=NONE ]
18 AC_ARG_WITH(bfd-include-dir,
19   [  --with-bfd-include-dir=DIR
20                           path to directory containing bfd.h ],
21   [ ac_bfd_include_dir=$withval ],
22   [ ac_bfd_include_dir=NONE ]
25 AC_PROG_CC
26 AC_CHECK_HEADERS(bfd.h,, BFD_H="no")
28 if test "$ac_libiberty" = "NONE"; then
29   AC_CHECK_LIB(iberty, objalloc_create)
30   ac_libiberty=auto
31 else
32   LIBS="$ac_libiberty $LIBS"
34 if test "$ac_libbfd" = "NONE"; then
35   AC_CHECK_LIB(bfd, bfd_openr)
36   ac_libbfd=auto
37 else
38   LIBS="$ac_libbfd $LIBS"
41 if test "$ac_bfd_include_dir" != "NONE"; then
42   CPPFLAGS="$CPPFLAGS -I$ac_bfd_include_dir"
45 if ! test -e "objdiff-static" || ! test -e "objmanip-static"; then
46   if test "$ac_libbfd" = "NONE" || test "$ac_libiberty" = "NONE"; then
47     echo
48     echo "Ksplice could not locate libbfd.a and/or libiberty.a on your system."
49     echo "You can obtain these libraries from the GNU binutils collection."
50     echo "These libraries are available on many Linux distributions as a"
51     echo "package called 'binutils-dev' or 'binutils-devel'."
52     echo "If your distribution does not provide GNU binutils, you can install"
53     echo "GNU binutils from source -- see http://www.gnu.org/software/binutils/."
54     echo
55     echo "If these libraries are already installed on your system, then you need"
56     echo "to tell Ksplice where to find them by running configure again:"
57     echo
58     echo "  ./configure --with-libbfd=<libbfd.a> --with-libiberty=<libiberty.a>"
59     echo
60     exit 1
61   fi
63   if test "$BFD_H" = "no"; then
64     echo
65     echo "Ksplice could not locate bfd.h on your system."
66     echo "If this header file is already installed on your system, then you need"
67     echo "to tell Ksplice where to find it by running configure again:"
68     echo
69     echo "  ./configure --with-bfd-include-dir=<directory-containing-bfd.h>"
70     echo
71     exit 1
72   fi
75 AC_PATH_PROG(PATCH, patch)
76 AC_PATH_PROG(POD2MAN, pod2man)
77 if test "$PATCH" = ""; then
78   echo
79   echo "Ksplice could not locate patch on your system."
80   echo
81   exit 1
83 if test "$POD2MAN" = ""; then
84   echo
85   echo "Ksplice could not locate pod2man on your system."
86   echo
87   exit 1
90 AC_PROG_PERL_MODULES(Cwd,,AC_MSG_ERROR(Required perl module Cwd not found))
91 AC_PROG_PERL_MODULES(Pod::Usage,,AC_MSG_ERROR(Required perl module Pod::Usage not found))
92 AC_PROG_PERL_MODULES(File::Temp,,AC_MSG_ERROR(Required perl module File::Temp not found))
94 AC_CONFIG_FILES([Makefile])
95 AC_OUTPUT