Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (21 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28dir.info
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/aclocal.m4

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    8181
    8282# This works around an automake problem.
    83 mkinstalldirs="`cd $ac_aux_dir && pwd`/mkinstalldirs"
     83mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs"
    8484AC_SUBST(mkinstalldirs)
    8585
     
    157157AM_MAINTAINER_MODE
    158158
    159 # We need AC_EXEEXT to keep automake happy in cygnus mode.  However,
    160 # at least currently, we never actually build a program, so we never
    161 # need to use $(EXEEXT).  Moreover, the test for EXEEXT normally
    162 # fails, because we are probably configuring with a cross compiler
    163 # which cant create executables.  So we include AC_EXEEXT to keep
    164 # automake happy, but we don't execute it, since we don't care about
    165 # the result.
    166 if false; then
    167   # autoconf 2.50 runs AC_EXEEXT by default, and the macro expands
    168   # to nothing, so nothing would remain between `then' and `fi' if it
    169   # were not for the `:' below.
    170   :
    171   AC_EXEEXT
    172 fi
     159AC_EXEEXT
    173160
    174161# configure.host sets the following important variables
     
    300287  fi])
    301288
     289AC_DEFUN([CHECK_FOR_BROKEN_MINGW_LD],
     290[
     291AC_MSG_CHECKING(whether 'ld' is at least 2.13)
     292LD_PROG=`$CC --print-prog-name=ld`
     293LD_VERSION=`$LD_PROG --version`
     294LD_VERSION_MAJOR=`echo "$LD_VERSION" | head -1 | cut -d '.' -f 1 | cut -d ' ' -f 4`
     295LD_VERSION_MINOR=`echo "$LD_VERSION" | head -1 | cut -d '.' -f 2`
     296if expr "$LD_VERSION_MAJOR" \> 2 > /dev/null; then
     297  LD_OK="ok"
     298else
     299  if expr "$LD_VERSION_MAJOR" = 2 && expr "$LD_VERSION_MINOR" \>= 13 > /dev/null; then
     300    LD_OK="ok"
     301  fi
     302fi
     303if test "x$LD_OK" != x; then
     304  AC_MSG_RESULT([yes; major=$LD_VERSION_MAJOR, minor=$LD_VERSION_MINOR])
     305else
     306  AC_MSG_RESULT([no; major=$LD_VERSION_MAJOR, minor=$LD_VERSION_MINOR])
     307  AC_MSG_WARN([ld <2.13 detected; enabling JV_LINKER_CANNOT_8BYTE_ALIGN_STATICS hack...])
     308  AC_DEFINE(JV_LINKER_CANNOT_8BYTE_ALIGN_STATICS, 1,
     309            [Indicate that linker is not able to 8-byte align static data])
     310fi[]dnl
     311])# CHECK_FOR_BROKEN_MINGW_LD
     312
    302313# Do all the work for Automake.  This macro actually does too much --
    303314# some checks are only needed if your package does certain things.
Note: See TracChangeset for help on using the changeset viewer.