Mon Nov 2 15:05:33 1998 Geoffrey Noer <noer@cygnus.com>

* configure.in: detect cygwin* instead of cygwin32*
        * configure: regenerate
This commit is contained in:
Geoffrey Noer 1998-11-02 23:08:52 +00:00
parent 1c18e77af7
commit 2ce3016679
6 changed files with 1451 additions and 448 deletions

View File

@ -1,3 +1,8 @@
Mon Nov 2 15:05:33 1998 Geoffrey Noer <noer@cygnus.com>
* configure.in: detect cygwin* instead of cygwin32*
* configure: regenerate
Wed Aug 12 14:59:06 1998 Ian Lance Taylor <ian@cygnus.com>
Avoid some overflow cases:

766
gprof/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -27,7 +27,7 @@ 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* \
| *-*-cygwin32 | *-*-mingw32 | *-*-win32 )
| *-*-cygwin* | *-*-mingw32 | *-*-win32 )
AC_DEFINE(BSD44_FORMAT)
;;
esac

View File

@ -1,3 +1,8 @@
Mon Nov 2 15:05:33 1998 Geoffrey Noer <noer@cygnus.com>
* configure.in: detect cygwin* instead of cygwin32*
* configure: regenerate
Tue Oct 27 08:58:37 1998 Gavin Romig-Koch <gavin@cygnus.com>
* mips-opc.c (IS_M): Added.

1080
opcodes/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -69,36 +69,39 @@ AM_PROG_INSTALL
AC_CHECK_HEADERS(string.h strings.h stdlib.h)
# start-sanitize-cygnus
use_cgen=no
cgen_maint=no
# Default is to use one in build tree.
cgen=../cgen/cgen
cgendir='$(srcdir)/../cgen'
# Having --enable-maintainer-mode take arguments is another way to go.
# ??? One can argue --with is more appropriate if one wants to specify
# a directory name, but what we're doing here is an enable/disable kind
# of thing and specifying both --enable and --with is klunky.
# If you reeely want this to be --with, go ahead and change it.
AC_ARG_ENABLE(cgen-maint,
[ --enable-cgen-maint build cgen generated files],
[ --enable-cgen-maint[=dir] build cgen generated files],
[case "${enableval}" in
yes) cgen_maint=yes ;;
no) cgen_maint=no ;;
*) AC_MSG_ERROR([bad value ${enableval} for opcodes cgen-maint option]) ;;
yes) cgen_maint=yes ;;
no) cgen_maint=no ;;
*)
# argument is cgen install directory (not implemented yet).
# Having a `share' directory might be more appropriate for the .scm,
# .cpu, etc. files.
cgen_maint=yes
cgendir=${cgen_maint}/lib/cgen
cgen=${cgendir}/bin/cgen
;;
esac])dnl
AM_CONDITIONAL(CGEN_MAINT, test x${cgen_maint} = xyes)
if test "x${cgen_maint}" = xyes ; then
for targ in $target $canon_targets
do
case $targ in
all) use_cgen=yes ;;
m32r-*-*) use_cgen=yes ;;
esac
done
fi
if test $use_cgen = yes ; then
AC_CHECK_PROG(SCHEME, guile, guile, guile)
fi
AC_SUBST(cgendir)
AC_SUBST(cgen)
# end-sanitize-cygnus
# Horrible hacks to build DLLs on Windows.
WIN32LDFLAGS=
WIN32LIBADD=
case "${host}" in
*-*-cygwin32*)
*-*-cygwin*)
if test "$enable_shared" = "yes"; then
WIN32LDFLAGS="-no-undefined"
WIN32LIBADD="-L`pwd`/../bfd -lbfd -L`pwd`/../libiberty -liberty -L`pwd`/../intl -lintl -lcygwin"
@ -159,9 +162,7 @@ if test x${all_targets} = xfalse ; then
bfd_arm_arch) ta="$ta arm-dis.lo" ;;
bfd_convex_arch) ;;
bfd_d10v_arch) ta="$ta d10v-dis.lo d10v-opc.lo" ;;
# start-sanitize-d30v
bfd_d30v_arch) ta="$ta d30v-dis.lo d30v-opc.lo" ;;
# end-sanitize-d30v
bfd_h8300_arch) ta="$ta h8300-dis.lo" ;;
bfd_h8500_arch) ta="$ta h8500-dis.lo" ;;
bfd_hppa_arch) ta="$ta hppa-dis.lo" ;;