Allow CRFS and CRFD operands to accept CR register names
[deliverable/binutils-gdb.git] / gprof / configure.in
index 90c53a336b6acc8e517afeea63ef0d6a314b4c7f..3273b75f2f58259b46b56fb566e38c1ab64d98ea 100644 (file)
@@ -1,10 +1,14 @@
 dnl Process this file with autoconf to produce a configure script.
-AC_PREREQ(2.5)dnl
+AC_PREREQ(2.13)
 AC_INIT(gprof.c)
 
 AC_CANONICAL_SYSTEM
+AC_ISC_POSIX
 
-AM_INIT_AUTOMAKE(gprof, 2.9.4)
+changequote(,)dnl
+BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[        ]*\([^  ]*\)[   ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
+changequote([,])dnl
+AM_INIT_AUTOMAKE(gprof, ${BFD_VERSION})
 
 AM_PROG_LIBTOOL
 
@@ -15,26 +19,38 @@ dnl config.h, to avoid any possible confusion with the bfd config.h.
 AM_CONFIG_HEADER(gconfig.h:gconfig.in)
 
 AC_PROG_CC
-AM_PROG_INSTALL
+AC_PROG_INSTALL
 
-AC_ISC_POSIX
+AC_CHECK_FUNCS(setmode)
 
-ALL_LINGUAS=
+ALL_LINGUAS="fr tr sv es id"
 CY_GNU_GETTEXT
 
-dnl We need to set BSD44_FORMAT on a host which uses the additional
-dnl header fields.  This is an attempt to do that.  I can't think of a
-dnl good feature test for this.
-case "${target}" in
-*-*-bsd4.4* | *-*-netbsd* | *-*-freebsd* | *-*-openbsd* \
-| *-*-cygwin* | *-*-mingw32 | *-*-win32 )
-  AC_DEFINE(BSD44_FORMAT)
-  ;;
-esac
-
 AM_MAINTAINER_MODE
-AM_CYGWIN32
-AM_EXEEXT
+AC_EXEEXT
+
+AC_CHECK_HEADERS(sys/gmon_out.h)
+
+build_warnings="-W -Wall -Wstrict-prototypes -Wmissing-prototypes"
+AC_ARG_ENABLE(build-warnings,
+[  --enable-build-warnings Enable build-time compiler warnings if gcc is used],
+[case "${enableval}" in
+  yes) ;;
+  no)  build_warnings="-w";;
+  ,*)   t=`echo "${enableval}" | sed -e "s/,/ /g"`
+        build_warnings="${build_warnings} ${t}";;
+  *,)   t=`echo "${enableval}" | sed -e "s/,/ /g"`
+        build_warnings="${t} ${build_warnings}";;
+  *)    build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
+esac
+if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
+  echo "Setting warning flags = $build_warnings" 6>&1
+fi])dnl
+WARN_CFLAGS=""
+if test "x${build_warnings}" != x -a "x$GCC" = xyes ; then
+    WARN_CFLAGS="${build_warnings}"
+fi
+AC_SUBST(WARN_CFLAGS)
 
 AC_OUTPUT(Makefile po/Makefile.in:po/Make-in,
 [sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile])
This page took 0.027731 seconds and 4 git commands to generate.