diff options
author | Jerry DeLisle <jvdelisle@verizon.net> | 2005-06-24 23:07:13 +0000 |
---|---|---|
committer | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2005-06-24 23:07:13 +0000 |
commit | f02d008e26acc1915ff7bf12e833979704751c43 (patch) | |
tree | d1fa28d74fc84b12689da081582a879f4ce50df9 /libgfortran/aclocal.m4 | |
parent | 42c5169549014e6f1b8be662d04b6530a4298c95 (diff) | |
download | gcc-f02d008e26acc1915ff7bf12e833979704751c43.zip gcc-f02d008e26acc1915ff7bf12e833979704751c43.tar.gz gcc-f02d008e26acc1915ff7bf12e833979704751c43.tar.bz2 |
re PR fortran/21915 ([4.0 only] Would like atanh etc. as intrinsics)
2005-06-24 Jerry DeLisle <jvdelisle@verizon.net>
PR libfortran/21915
* Makefile.am: include intrinsics/hyper.c
* c99_protos.h: add prototypes for single precision versions of
acosh, asinh, and atanh for platforms that do not have these
* config.h.in: add #undef for wrappers
* configure.ac: add checks for single precision versions
* aclocal.m4: generated
* Makefile.in: generated
* configure: generated
From-SVN: r101302
Diffstat (limited to 'libgfortran/aclocal.m4')
-rw-r--r-- | libgfortran/aclocal.m4 | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/libgfortran/aclocal.m4 b/libgfortran/aclocal.m4 index 0bf3204..b1f4012 100644 --- a/libgfortran/aclocal.m4 +++ b/libgfortran/aclocal.m4 @@ -244,27 +244,6 @@ AC_DEFUN([AM_PROG_INSTALL_SH], install_sh=${install_sh-"$am_aux_dir/install-sh"} AC_SUBST(install_sh)]) -# Copyright (C) 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 2 - -# Check whether the underlying file-system supports filenames -# with a leading dot. For instance MS-DOS doesn't. -AC_DEFUN([AM_SET_LEADING_DOT], -[rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null -AC_SUBST([am__leading_dot])]) - # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering @@ -659,4 +638,6 @@ AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR +m4_include([../config/lead-dot.m4]) +m4_include([../config/no-executables.m4]) m4_include([acinclude.m4]) |