aboutsummaryrefslogtreecommitdiff
path: root/gprof/configure.in
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2008-08-24 03:13:05 +0000
committerAlan Modra <amodra@gmail.com>2008-08-24 03:13:05 +0000
commitda594c4a29ff199ff1b1986587cdd3babcaf1693 (patch)
tree024e56e9da96ff3d0186d33791ec8bafe647f168 /gprof/configure.in
parentf27f411ae75833a958518eada4cfaa33ff5c87f8 (diff)
downloadgdb-da594c4a29ff199ff1b1986587cdd3babcaf1693.zip
gdb-da594c4a29ff199ff1b1986587cdd3babcaf1693.tar.gz
gdb-da594c4a29ff199ff1b1986587cdd3babcaf1693.tar.bz2
Update a number of obsolete autoconf macros.
Diffstat (limited to 'gprof/configure.in')
-rw-r--r--gprof/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/gprof/configure.in b/gprof/configure.in
index 18475d7..904e051 100644
--- a/gprof/configure.in
+++ b/gprof/configure.in
@@ -22,7 +22,7 @@ AC_GNU_SOURCE
AC_USE_SYSTEM_EXTENSIONS
AC_PROG_INSTALL
-AM_PROG_LIBTOOL
+LT_INIT
AC_CHECK_FUNCS(setmode)
@@ -38,7 +38,7 @@ AC_CHECK_HEADERS(sys/gmon_out.h)
AC_MSG_CHECKING(for a known getopt prototype in unistd.h)
AC_CACHE_VAL(gprof_cv_decl_getopt_unistd_h,
-[AC_TRY_COMPILE([#include <unistd.h>], [extern int getopt (int, char *const*, const char *);],
+[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>], [extern int getopt (int, char *const*, const char *);])],
gprof_cv_decl_getopt_unistd_h=yes, gprof_cv_decl_getopt_unistd_h=no)])
AC_MSG_RESULT($gprof_cv_decl_getopt_unistd_h)
if test $gprof_cv_decl_getopt_unistd_h = yes; then