mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
Tue Dec 29 18:11:28 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* configure.in: added tests for cross-build for Cygwin.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Tue Dec 29 18:11:28 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
|
||||||
|
|
||||||
|
* configure.in: added tests for cross-build for Cygwin.
|
||||||
|
|
||||||
1998-12-24 Jason Molenda (jsm@bugshack.cygnus.com)
|
1998-12-24 Jason Molenda (jsm@bugshack.cygnus.com)
|
||||||
|
|
||||||
* Makefile.in: Add CYGNUS LOCAL comment.
|
* Makefile.in: Add CYGNUS LOCAL comment.
|
||||||
|
@ -1,55 +1,151 @@
|
|||||||
# This file is a shell script fragment that supplies the information
|
dnl
|
||||||
# necessary to tailor a template configure script into the configure
|
dnl Configure script for readline library
|
||||||
# script appropriate for this directory. For more information, check
|
dnl
|
||||||
# any existing configure script.
|
dnl report bugs to chet@po.cwru.edu
|
||||||
|
dnl
|
||||||
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
|
AC_REVISION([for Readline 2.2, version 2.07, from autoconf version] AC_ACVERSION)
|
||||||
|
LIBVERSION=2.2
|
||||||
|
|
||||||
configdirs=doc
|
AC_INIT(readline.h)
|
||||||
srctrigger=readline.c
|
AC_CONFIG_HEADER(config.h)
|
||||||
srcname="the readline library"
|
|
||||||
|
|
||||||
# per-host:
|
dnl make sure we are using a recent autoconf version
|
||||||
|
AC_PREREQ(2.10)
|
||||||
|
|
||||||
files=sysdep-norm.h
|
AC_CONFIG_AUX_DIR(./support)
|
||||||
links=sysdep.h
|
|
||||||
|
|
||||||
|
AC_CANONICAL_HOST
|
||||||
|
|
||||||
|
dnl configure defaults
|
||||||
|
opt_curses=no
|
||||||
|
opt_shared=no
|
||||||
|
|
||||||
|
dnl arguments to configure
|
||||||
|
AC_ARG_WITH(curses, --with-curses use the curses library instead of the termcap library,opt_curses=$withval)
|
||||||
|
|
||||||
|
if test "$opt_curses" = "yes"; then
|
||||||
|
prefer_curses=yes
|
||||||
|
fi
|
||||||
|
|
||||||
|
# We want these before the checks, so the checks can modify their values.
|
||||||
|
test -z "$CFLAGS" && CFLAGS=-g auto_cflags=1
|
||||||
|
|
||||||
|
AC_PROG_CC
|
||||||
|
AC_MINIX
|
||||||
|
|
||||||
|
|
||||||
|
dnl BEGIN changes for CYGNUS cross-building for Cygwin
|
||||||
|
|
||||||
|
dnl load up the cross-building cache file -- add more cases and cache
|
||||||
|
dnl files as necessary
|
||||||
|
if test "x$cross_compiling" = "xyes"; then
|
||||||
case "${host}" in
|
case "${host}" in
|
||||||
*-*-irix*) host_makefile_frag=config/mh-sysv; files=sysdep-irix.h;;
|
*-cygwin*)
|
||||||
i[345]86-ncr-sysv4*) host_makefile_frag=config/mh-ncr3000 ;;
|
cross_cache=${srcdir}/cross-build/cygwin.cache
|
||||||
# Using sysdep-norm.h is harmful because termio.h defines VWERASE even though
|
if test -r "${cross_cache}"; then
|
||||||
# c_cc is too small for it (VWERASE is for termios).
|
echo "loading cross-build cache file ${cross_cache}"
|
||||||
# The problem with _POSIX_SOURCE is said not to be a problem after all.
|
. ${cross_cache}
|
||||||
# m88k-*-sysv4*) host_makefile_frag=config/mh-sysv ;
|
fi
|
||||||
# defining POSIX_SOURCE causes stack_t to be undefined
|
unset cross_cache
|
||||||
# even though it's used in <setjmp.h>
|
;;
|
||||||
# files=sysdep-norm.h ;;
|
*) echo "configure: cross-compiling for a non-cygwin target is not supported" >&
|
||||||
m88*-harris-cxux7*) host_makefile_frag=config/mh-sysv4 ; files=sysdep-cxux7.h ;;
|
2
|
||||||
*-*-sysv4*) host_makefile_frag=config/mh-sysv4 ; files=sysdep-sysv4.h ;;
|
;;
|
||||||
*-*-solaris2*) host_makefile_frag=config/mh-sysv4 ;;
|
esac
|
||||||
i[345]86-*-sco3.2v[45]*) host_makefile_frag=config/mh-sco4; files=sysdep-sco.h ;;
|
fi
|
||||||
i[345]86-*-sco*) host_makefile_frag=config/mh-sco; files=sysdep-sco.h ;;
|
|
||||||
# Don't use this; ISC 4.0 only supports POSIX features if you link with
|
if test "x$cross_compiling" = "xyes"; then
|
||||||
# -lcposix. No thanks.
|
CROSS_COMPILING_FLAG=-DCROSS_COMPILING
|
||||||
# i[345]86-*-isc*) host_makefile_frag=config/mh-isc ;;
|
else
|
||||||
i[345]86-*-isc*) host_makefile_frag=config/mh-sysv ;;
|
CROSS_COMPILING_FLAG=
|
||||||
*-*-go32) host_makefile_frag=config/mh-go32 ;;
|
fi
|
||||||
m68k-apollo-sysv*) host_makefile_frag=config/mh-apollo68v ;;
|
AC_SUBST(CROSS_COMPILING_FLAG)
|
||||||
*-*-sysv*) host_makefile_frag=config/mh-sysv ;;
|
|
||||||
*-*-m88kbcs*) host_makefile_frag=config/mh-sysv ;;
|
if test -z "$CC_FOR_BUILD"; then
|
||||||
i[345]86-*-linux*) host_makefile_frag=config/mh-posix ;;
|
if test "x$cross_compiling" = "xno"; then
|
||||||
powerpc-ibm-aix*) host_makefile_frag=config/mh-sysv; files=sysdep-aix.h ;;
|
CC_FOR_BUILD='$(CC)'
|
||||||
rs6000-ibm-aix*) host_makefile_frag=config/mh-sysv; files=sysdep-aix.h ;;
|
else
|
||||||
rs6000-bull-bosx*) host_makefile_frag=config/mh-sysv; files=sysdep-aix.h ;;
|
CC_FOR_BUILD=gcc
|
||||||
*-ibm-aix*) host_makefile_frag=config/mh-sysv ;;
|
fi
|
||||||
m68k-sony-news*) files=sysdep-obsd.h ;;
|
fi
|
||||||
*-*-bsd*) files=sysdep-obsd.h ;;
|
AC_SUBST(CC_FOR_BUILD)
|
||||||
*-*-mach*) files=sysdep-obsd.h ;;
|
|
||||||
*-*-sunos3*) files=sysdep-obsd.h ;;
|
dnl END changes for CYGNUS cross-building for Cygwin
|
||||||
# Using termios on SunOS is necessary to save and restore cs7 versus cs8.
|
|
||||||
*-*-sunos4.1*) host_makefile_frag=config/mh-posix ;;
|
|
||||||
*-*-ultrix2*) files=sysdep-obsd.h ;;
|
|
||||||
*-*-riscos*) host_makefile_frag=config/mh-sysv ;;
|
# If we're using gcc and the user hasn't specified CFLAGS, add -O to CFLAGS.
|
||||||
|
test -n "$GCC" && test -n "$auto_cflags" && CFLAGS="$CFLAGS -O"
|
||||||
|
|
||||||
|
AC_PROG_GCC_TRADITIONAL
|
||||||
|
AC_PROG_INSTALL
|
||||||
|
AC_PROG_RANLIB
|
||||||
|
|
||||||
|
AC_RETSIGTYPE
|
||||||
|
|
||||||
|
AC_HEADER_STAT
|
||||||
|
AC_HEADER_DIRENT
|
||||||
|
|
||||||
|
AC_CHECK_FUNCS(strcasecmp select setenv putenv tcgetattr setlocale lstat)
|
||||||
|
|
||||||
|
AC_FUNC_STRCOLL
|
||||||
|
|
||||||
|
AC_CHECK_HEADERS(unistd.h stdlib.h varargs.h stdarg.h string.h \
|
||||||
|
sys/ptem.h sys/pte.h sys/stream.h sys/select.h \
|
||||||
|
termcap.h termios.h termio.h sys/file.h locale.h)
|
||||||
|
|
||||||
|
BASH_SIGNAL_CHECK
|
||||||
|
BASH_REINSTALL_SIGHANDLERS
|
||||||
|
|
||||||
|
BASH_FUNC_POSIX_SETJMP
|
||||||
|
BASH_FUNC_LSTAT
|
||||||
|
BASH_CHECK_GETPW_FUNCS
|
||||||
|
BASH_FUNC_STRCOLL
|
||||||
|
|
||||||
|
BASH_TYPE_SIGHANDLER
|
||||||
|
BASH_HAVE_TIOCGWINSZ
|
||||||
|
BASH_HAVE_TIOCSTAT
|
||||||
|
BASH_HAVE_FIONREAD
|
||||||
|
BASH_MISC_SPEED_T
|
||||||
|
BASH_STRUCT_WINSIZE
|
||||||
|
BASH_STRUCT_DIRENT_D_INO
|
||||||
|
BASH_STRUCT_DIRENT_D_FILENO
|
||||||
|
|
||||||
|
dnl yuck
|
||||||
|
case "$host_os" in
|
||||||
|
aix*) prefer_curses=yes ;;
|
||||||
|
esac
|
||||||
|
BASH_CHECK_LIB_TERMCAP
|
||||||
|
if test "$TERMCAP_LIB" = "./lib/termcap/libtermcap.a"; then
|
||||||
|
TERMCAP_LIB=-ltermcap #default
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$host_cpu" in
|
||||||
|
*cray*) LOCAL_CFLAGS=-DCRAY ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# per-target:
|
case "$host_os" in
|
||||||
|
isc*) LOCAL_CFLAGS=-Disc386 ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
BUILD_DIR=`pwd`
|
||||||
|
AC_SUBST(BUILD_DIR)
|
||||||
|
|
||||||
|
AC_SUBST(CFLAGS)
|
||||||
|
AC_SUBST(LOCAL_CFLAGS)
|
||||||
|
AC_SUBST(LOCAL_LDFLAGS)
|
||||||
|
AC_SUBST(LOCAL_DEFS)
|
||||||
|
|
||||||
|
AC_SUBST(host_cpu)
|
||||||
|
AC_SUBST(host_os)
|
||||||
|
|
||||||
|
AC_SUBST(LIBVERSION)
|
||||||
|
|
||||||
|
AC_SUBST(TERMCAP_LIB)
|
||||||
|
|
||||||
|
AC_OUTPUT([Makefile doc/Makefile examples/Makefile],
|
||||||
|
[
|
||||||
|
# Makefile uses this timestamp file to record whether config.h is up to date.
|
||||||
|
echo > stamp-h
|
||||||
|
])
|
||||||
|
Reference in New Issue
Block a user