Changeset 1391 for branches/GNU/src/gcc/libjava/aclocal.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/aclocal.m4
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 81 81 82 82 # This works around an automake problem. 83 mkinstalldirs="`cd $ac_aux_dir && pwd`/mkinstalldirs"83 mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs" 84 84 AC_SUBST(mkinstalldirs) 85 85 … … 157 157 AM_MAINTAINER_MODE 158 158 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 159 AC_EXEEXT 173 160 174 161 # configure.host sets the following important variables … … 300 287 fi]) 301 288 289 AC_DEFUN([CHECK_FOR_BROKEN_MINGW_LD], 290 [ 291 AC_MSG_CHECKING(whether 'ld' is at least 2.13) 292 LD_PROG=`$CC --print-prog-name=ld` 293 LD_VERSION=`$LD_PROG --version` 294 LD_VERSION_MAJOR=`echo "$LD_VERSION" | head -1 | cut -d '.' -f 1 | cut -d ' ' -f 4` 295 LD_VERSION_MINOR=`echo "$LD_VERSION" | head -1 | cut -d '.' -f 2` 296 if expr "$LD_VERSION_MAJOR" \> 2 > /dev/null; then 297 LD_OK="ok" 298 else 299 if expr "$LD_VERSION_MAJOR" = 2 && expr "$LD_VERSION_MINOR" \>= 13 > /dev/null; then 300 LD_OK="ok" 301 fi 302 fi 303 if test "x$LD_OK" != x; then 304 AC_MSG_RESULT([yes; major=$LD_VERSION_MAJOR, minor=$LD_VERSION_MINOR]) 305 else 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]) 310 fi[]dnl 311 ])# CHECK_FOR_BROKEN_MINGW_LD 312 302 313 # Do all the work for Automake. This macro actually does too much -- 303 314 # some checks are only needed if your package does certain things. -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.