aboutsummaryrefslogtreecommitdiff
path: root/binutils/configure.in
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1995-09-06 00:52:07 +0000
committerIan Lance Taylor <ian@airs.com>1995-09-06 00:52:07 +0000
commit5ab6ca68fd4501b867135f74d890dca2b30c130c (patch)
tree94eb3954c1bb0c717d4042b3d791af7f30c3253f /binutils/configure.in
parentdcf62f7359fe45da9198df2c582b078f1800fe66 (diff)
downloadgdb-5ab6ca68fd4501b867135f74d890dca2b30c130c.zip
gdb-5ab6ca68fd4501b867135f74d890dca2b30c130c.tar.gz
gdb-5ab6ca68fd4501b867135f74d890dca2b30c130c.tar.bz2
* configure.in: Rewrite to use autoconf.
* aclocal.m4: New file. * configure: New file, built by autoconf. * acconfig.h: New file. * config.h.in: New file, built by autoheader. * Makefile.in: Various changes for new configure script. Also: (PROGS): Remove $(SYSINFO_PROG). (ALL_CFLAGS): Remove $(TDEFINES). (version.o): Use $(ALL_CFLAGS). (cplus-dem.o, dlltool.o, nlmconv.o): Likewise. (sysdump.o): Depend upon bucomm.h and config.h. (srconv.o, arsup.o, strings.o): Depend upon config.h. (filemode.o): Don't depend upon ../bfd/sysdep.h. (bucomm.o): Depend upon config.h, not ../bfd/sysdep.h. (size.o, objdump.o, nm.o, ar.o, objcopy.o): Likewise. (nlmheader.o, nlmconv.o): Likewise. (distclean): Don't remove sysdep.h. * bucomm.h: Include "ansidecl.h", <stdio.h>, and "config.h". Include "fopen-same.h" or "fopen-bin.h", based on USE_BINARY_FOPEN. Include <errno.h>, and declare errno if it is not a macro. Include <unistd.h>, <string.h>, <strings.h>, <stdlib.h>, and <fcntl.h> if they are present. Declare strchr, strrchr, and strstr if no string header file exists. Include <sys/file.h> if it exists and <fcntl.h> does not. Define O_RDONLY and O_RDWR if necessary. * ar.c: Don't include "sysdep.h". Do include <sys/types.h> and <sys/stat.h>. Use HAVE_GOOD_UTIME_H rather than POSIX_UTIME. Use HAVE_UTIMES rather than !USE_UTIME. Don't include <errno.h>, and don't declare errno. * arsup.c: Don't include <sysdep.h>. * bucomm.c: Don't include "sysdep.h". Include <stdio.h>, <sys/types.h>, and <sys/stat.h>. Include <time.h> if it defines time_t. Define time_t if necessary. * coffdump.c: Don't include "sysdep.h". * coffgrok.c, filemode.c, nlmconv.c, size.c: Likewise. * srconv.c, strings.c: Likewise. * nm.c: Don't include "sysdep.h". Don't try to define HAVE_SBRK. * objcopy.c: Don't include "sysdep.h". Include <sys/types.h> and <sys/stat.h>. (simple_copy): Use creat rather than assuming that O_CREAT is defined. * objdump.c: Don't include "sysdep.h". Use NEED_DECLARATION_PRINTF rather than !FPRINTF_ALREADY_DECLARED. * sysdump.c: Include "bfd.h" and "bucomm.h". Don't include "sysdep.h" or <stdlib.h>. (dump_symbol_info): Rename from symbol_info. Change all callers.
Diffstat (limited to 'binutils/configure.in')
-rw-r--r--binutils/configure.in204
1 files changed, 135 insertions, 69 deletions
diff --git a/binutils/configure.in b/binutils/configure.in
index 878aa28..2113844 100644
--- a/binutils/configure.in
+++ b/binutils/configure.in
@@ -1,23 +1,107 @@
-# This file is a shell script that supplies the information necessary
-# to tailor a template configure script into the configure script
-# appropriate for this directory. For more information, check any
-# existing configure script.
+dnl Process this file with autoconf to produce a configure script.
+dnl
+AC_PREREQ(2.0)
+AC_INIT(ar.c)
+
+AC_ARG_ENABLE(targets,
+[ --enable-targets alternative target configurations],
+[case "${enableval}" in
+ yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
+ ;;
+ no) enable_targets= ;;
+ *) enable_targets=$enableval ;;
+esac])dnl
+
+AC_CONFIG_HEADER(config.h)
+
+AC_CONFIG_AUX_DIR(`cd $srcdir/..; pwd`)
+AC_CANONICAL_SYSTEM
+if test -z "$target" ; then
+ AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
+fi
+if test -z "$host" ; then
+ AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
+fi
+AC_ARG_PROGRAM
-srctrigger=ar.c
-srcname="Binutils"
+# host-specific stuff:
-# per-host:
+HDEFINES=
+LDFLAGS=
. ${srcdir}/../bfd/configure.host
-# per-target:
+AC_PROG_CC
+AC_SUBST(CFLAGS)
+AC_SUBST(HDEFINES)
+AC_SUBST(LDFLAGS)
+AR=${AR-ar}
+AC_SUBST(AR)
+AC_PROG_RANLIB
+AC_PROG_INSTALL
+
+AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h)
+AC_CHECK_FUNCS(sbrk utimes)
+
+AC_MSG_CHECKING(for time_t in time.h)
+AC_CACHE_VAL(bu_cv_decl_time_t_time_h,
+[AC_TRY_COMPILE([#include <time.h>], [time_t i;],
+bu_cv_decl_time_t_time_h=yes, bu_cv_decl_time_t_time_h=no)])
+AC_MSG_RESULT($bu_cv_decl_time_t_time_h)
+if test $bu_cv_decl_time_t_time_h = yes; then
+ AC_DEFINE([HAVE_TIME_T_IN_TIME_H])
+fi
+
+AC_MSG_CHECKING(for time_t in sys/types.h)
+AC_CACHE_VAL(bu_cv_decl_time_t_types_h,
+[AC_TRY_COMPILE([#include <sys/types.h>], [time_t i;],
+bu_cv_decl_time_t_types_h=yes, bu_cv_decl_time_t_types_h=no)])
+AC_MSG_RESULT($bu_cv_decl_time_t_types_h)
+if test $bu_cv_decl_time_t_types_h = yes; then
+ AC_DEFINE([HAVE_TIME_T_IN_TYPES_H])
+fi
+
+# Under Next 3.2 <utime.h> apparently does not define struct utimbuf
+# by default.
+AC_MSG_CHECKING([for utime.h])
+AC_CACHE_VAL(bu_cv_header_utime_h,
+[AC_TRY_COMPILE([#include <sys/types.h>
+#ifdef HAVE_TIME_H
+#include <time.h>
+#endif
+#include <utime.h>],
+[struct utimbuf s;],
+bu_cv_header_utime_h=yes, bu_cv_header_utime_h=no)])
+AC_MSG_RESULT($bu_cv_header_utime_h)
+if test $bu_cv_header_utime_h = yes; then
+ AC_DEFINE(HAVE_GOOD_UTIME_H)
+fi
+
+AC_MSG_CHECKING([whether fprintf must be declared])
+AC_CACHE_VAL(bu_cv_decl_needed_fprintf,
+[AC_TRY_COMPILE([#include <stdio.h>],
+[int (*pfn) = (int (*)) fprintf],
+bu_cv_decl_needed_fprintf=no, bu_cv_decl_needed_fprintf=yes)])
+AC_MSG_RESULT($bu_cv_decl_needed_fprintf)
+if test $bu_cv_decl_needed_fprintf = yes; then
+ AC_DEFINE(NEED_DECLARATION_FPRINTF)
+fi
+
+dnl FIXME: We should check this in some central place somehow
+case "${host}" in
+i[345]86-*-msdos* | i[345]86-*-go32* | i[345]86-*-win32)
+ AC_DEFINE(USE_BINARY_FOPEN) ;;
+esac
+
+# target-specific stuff:
# Canonicalize the secondary target names.
-if [ -n "$enable_targets" ]; then
+target_makefile_fragment=/dev/null
+if test -n "$enable_targets"; then
for targ in `echo $enable_targets | sed 's/,/ /g'`
do
- result=`$configsub $targ 2>/dev/null`
- if [ -n "$result" ]; then
+ result=`$ac_config_sub $targ 2>/dev/null`
+ if test -n "$result"; then
canon_targets="$canon_targets $result"
else
# Allow targets that config.sub doesn't recognize, like "all".
@@ -25,98 +109,80 @@ if [ -n "$enable_targets" ]; then
fi
done
else
-# If our target is rs6000 _and nothing else_ then we build only nm!
+ # If our target is rs6000 _and nothing else_ then we build only nm!
case $target in
- rs6000-*-lynx*) target_makefile_frag=config/rslynx ;;
+ rs6000-*-lynx*) target_makefile_fragment=${srcdir}/config/rslynx ;;
esac
fi
+AC_SUBST_FILE(target_makefile_fragment)
all_targets=false
-build_nlmconv=false
-nlmconv_defs=
-build_srconv=false
-build_dlltool=false
-dlltool_defs=
+BUILD_NLMCONV=
+NLMCONV_DEFS=
+BUILD_SRCONV=
+BUILD_DLLTOOL=
+DLLTOOL_DEFS=
for targ in $target $canon_targets
do
- if [ "x$targ" = "xall" ]; then
+ if test "x$targ" = "xall"; then
all_targets=true
- build_nlmconv=true
- build_srconv=true
- nlmconv_defs="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC"
+ BUILD_NLMCONV='$(NLMCONV_PROG)'
+ BUILD_SRCONV='$(SRCONV_PROG)'
+ NLMCONV_DEFS="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC"
else
case $targ in
+changequote(,)dnl
i[345]86*-*-netware*)
- build_nlmconv=true
- nlmconv_defs="$nlmconv_defs -DNLMCONV_I386"
+changequote([,])dnl
+ BUILD_NLMCONV='$(NLMCONV_PROG)'
+ NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_I386"
;;
alpha*-*-netware*)
- build_nlmconv=true
- nlmconv_defs="$nlmconv_defs -DNLMCONV_ALPHA"
+ BUILD_NLMCONV='$(NLMCONV_PROG)'
+ NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_ALPHA"
;;
powerpc*-*-netware*)
- build_nlmconv=true
- nlmconv_defs="$nlmconv_defs -DNLMCONV_POWERPC"
+ BUILD_NLMCONV='$(NLMCONV_PROG)'
+ NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_POWERPC"
;;
sparc*-*-netware*)
- build_nlmconv=true
- nlmconv_defs="$nlmconv_defs -DNLMCONV_SPARC"
+ BUILD_NLMCONV='$(NLMCONV_PROG)'
+ NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_SPARC"
;;
esac
case $targ in
- *-*-hms*) build_srconv=true ;;
+ *-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)' ;;
esac
case $targ in
arm-*pe*)
- build_dlltool=true;
- dlltool_defs="$dlltool_defs -DDLLTOOL_ARM"
+ BUILD_DLLTOOL='$(DLLTOOL_PROG)'
+ DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
;;
+changequote(,)dnl
i[3-6]86-*pe* | i[3-6]86-*-win32)
- build_dlltool=true;
- dlltool_defs="$dlltool_defs -DDLLTOOL_I386"
+changequote([,])dnl
+ BUILD_DLLTOOL='$(DLLTOOL_PROG)'
+ DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
;;
esac
fi
done
-# We don't do any links based on the target system, just makefile config.
-
-# post-target:
-
-rm -f Makefile.tmp Makefile.2
-mv Makefile Makefile.tmp
-
-if [ "x${build_nlmconv}" = "xtrue" ]; then
- echo 'BUILD_NLMCONV = $(NLMCONV_PROG)' >> Makefile.2
- echo "NLMCONV_DEFS = ${nlmconv_defs}" >> Makefile.2
-fi
-
-if [ "x${build_srconv}" = "xtrue" ]; then
- echo 'BUILD_SRCONV = $(SRCONV_PROG)' >> Makefile.2
-fi
-
-if [ "x${build_dlltool}" = "xtrue" ]; then
- echo 'BUILD_DLLTOOL = $(DLLTOOL_PROG)' >> Makefile.2
- echo "DLLTOOL_DEFS = ${dlltool_defs}" >> Makefile.2
-fi
+AC_SUBST(NLMCONV_DEFS)
+AC_SUBST(BUILD_NLMCONV)
+AC_SUBST(BUILD_SRCONV)
+AC_SUBST(BUILD_DLLTOOL)
+AC_SUBST(DLLTOOL_DEFS)
targ=$target
. $srcdir/../bfd/config.bfd
if test "x$targ_underscore" = "xyes"; then
- underscore=1
+ UNDERSCORE=1
else
- underscore=0
+ UNDERSCORE=0
fi
-echo "UNDERSCORE = ${underscore}" >> Makefile.2
-
-test -z "$CC" && CC=`egrep '^CC *=' ../Makefile | tail -1 | sed 's/^CC *= *//'`
-test -z "$CC" && CC=cc
-test -z "$CFLAGS" && CFLAGS=-g
-sed -e "s%@CC@%${CC}%" \
- -e "s%@CFLAGS@%${CFLAGS}%" \
- -e "s%@HDEFINES@%${HDEFINES}%" \
- -e "s%@LDFLAGS@%${LDFLAGS}%" < Makefile.tmp >> Makefile.2
-
-rm -f Makefile.tmp
-mv Makefile.2 Makefile
+AC_SUBST(UNDERSCORE)
+
+AC_OUTPUT(Makefile,
+[case x$CONFIG_HEADERS in xconfig.h) echo > stamp-h ;; esac])