Changeset 1391 for branches/GNU/src/gcc/libjava/acinclude.m4
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (21 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 dir.info 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/acinclude.m4
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 69 69 70 70 # This works around an automake problem. 71 mkinstalldirs="`cd $ac_aux_dir && pwd`/mkinstalldirs"71 mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs" 72 72 AC_SUBST(mkinstalldirs) 73 73 … … 145 145 AM_MAINTAINER_MODE 146 146 147 # We need AC_EXEEXT to keep automake happy in cygnus mode. However, 148 # at least currently, we never actually build a program, so we never 149 # need to use $(EXEEXT). Moreover, the test for EXEEXT normally 150 # fails, because we are probably configuring with a cross compiler 151 # which cant create executables. So we include AC_EXEEXT to keep 152 # automake happy, but we don't execute it, since we don't care about 153 # the result. 154 if false; then 155 # autoconf 2.50 runs AC_EXEEXT by default, and the macro expands 156 # to nothing, so nothing would remain between `then' and `fi' if it 157 # were not for the `:' below. 158 : 159 AC_EXEEXT 160 fi 147 AC_EXEEXT 161 148 162 149 # configure.host sets the following important variables … … 287 274 fi 288 275 fi]) 276 277 AC_DEFUN([CHECK_FOR_BROKEN_MINGW_LD], 278 [ 279 AC_MSG_CHECKING(whether 'ld' is at least 2.13) 280 LD_PROG=`$CC --print-prog-name=ld` 281 LD_VERSION=`$LD_PROG --version` 282 LD_VERSION_MAJOR=`echo "$LD_VERSION" | head -1 | cut -d '.' -f 1 | cut -d ' ' -f 4` 283 LD_VERSION_MINOR=`echo "$LD_VERSION" | head -1 | cut -d '.' -f 2` 284 if expr "$LD_VERSION_MAJOR" \> 2 > /dev/null; then 285 LD_OK="ok" 286 else 287 if expr "$LD_VERSION_MAJOR" = 2 && expr "$LD_VERSION_MINOR" \>= 13 > /dev/null; then 288 LD_OK="ok" 289 fi 290 fi 291 if test "x$LD_OK" != x; then 292 AC_MSG_RESULT([yes; major=$LD_VERSION_MAJOR, minor=$LD_VERSION_MINOR]) 293 else 294 AC_MSG_RESULT([no; major=$LD_VERSION_MAJOR, minor=$LD_VERSION_MINOR]) 295 AC_MSG_WARN([ld <2.13 detected; enabling JV_LINKER_CANNOT_8BYTE_ALIGN_STATICS hack...]) 296 AC_DEFINE(JV_LINKER_CANNOT_8BYTE_ALIGN_STATICS, 1, 297 [Indicate that linker is not able to 8-byte align static data]) 298 fi[]dnl 299 ])# CHECK_FOR_BROKEN_MINGW_LD -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.