Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 568500
Collapse All | Expand All

(-)gcc-5.3.0/libgfortran/configure.ac (-1 / +1 lines)
Lines 267-273 AC_CHECK_TYPES([ptrdiff_t]) Link Here
267
# check header files (we assume C89 is available, so don't check for that)
267
# check header files (we assume C89 is available, so don't check for that)
268
AC_CHECK_HEADERS_ONCE(unistd.h sys/time.h sys/times.h sys/resource.h \
268
AC_CHECK_HEADERS_ONCE(unistd.h sys/time.h sys/times.h sys/resource.h \
269
sys/types.h sys/stat.h sys/wait.h floatingpoint.h ieeefp.h fenv.h fptrap.h \
269
sys/types.h sys/stat.h sys/wait.h floatingpoint.h ieeefp.h fenv.h fptrap.h \
270
fpxcp.h pwd.h complex.h xlocale.h)
270
fpxcp.h pwd.h complex.h xlocale.h io.h)
271
271
272
GCC_HEADER_STDINT(gstdint.h)
272
GCC_HEADER_STDINT(gstdint.h)
273
273
(-)gcc-5.3.0/libgfortran/intrinsics/chmod.c (+4 lines)
Lines 31-36 see the files COPYING3 and COPYING.RUNTI Link Here
31
#include <stdlib.h>	/* For free.  */
31
#include <stdlib.h>	/* For free.  */
32
#include <sys/stat.h>	/* For stat, chmod and umask.  */
32
#include <sys/stat.h>	/* For stat, chmod and umask.  */
33
33
34
#ifdef HAVE_IO_H
35
#include <io.h>         /* For umask on Windows. */
36
#endif
37
34
38
35
/* INTEGER FUNCTION CHMOD (NAME, MODE)
39
/* INTEGER FUNCTION CHMOD (NAME, MODE)
36
   CHARACTER(len=*), INTENT(IN) :: NAME, MODE
40
   CHARACTER(len=*), INTENT(IN) :: NAME, MODE
(-)gcc-5.3.0/libgfortran/intrinsics/umask.c (+4 lines)
Lines 35-40 see the files COPYING3 and COPYING.RUNTI Link Here
35
#include <unistd.h>
35
#include <unistd.h>
36
#endif
36
#endif
37
37
38
#ifdef HAVE_IO_H
39
#include <io.h>
40
#endif
41
38
42
39
/* SUBROUTINE UMASK(MASK, OLD)
43
/* SUBROUTINE UMASK(MASK, OLD)
40
   INTEGER, INTENT(IN) :: MASK
44
   INTEGER, INTENT(IN) :: MASK
(-)gcc-5.3.0/libgfortran/configure (+1 lines)
Lines 2552-2557 as_fn_append ac_header_list " fpxcp.h" Link Here
2552
as_fn_append ac_header_list " pwd.h"
2552
as_fn_append ac_header_list " pwd.h"
2553
as_fn_append ac_header_list " complex.h"
2553
as_fn_append ac_header_list " complex.h"
2554
as_fn_append ac_header_list " xlocale.h"
2554
as_fn_append ac_header_list " xlocale.h"
2555
as_fn_append ac_header_list " io.h"
2555
as_fn_append ac_func_list " getrusage"
2556
as_fn_append ac_func_list " getrusage"
2556
as_fn_append ac_func_list " times"
2557
as_fn_append ac_func_list " times"
2557
as_fn_append ac_func_list " mkstemp"
2558
as_fn_append ac_func_list " mkstemp"
(-)gcc-5.3.0/libgfortran/config.h.in (+3 lines)
Lines 513-518 Link Here
513
/* Define to 1 if you have the <inttypes.h> header file. */
513
/* Define to 1 if you have the <inttypes.h> header file. */
514
#undef HAVE_INTTYPES_H
514
#undef HAVE_INTTYPES_H
515
515
516
/* Define to 1 if you have the <io.h> header file. */
517
#undef HAVE_IO_H
518
516
/* Define to 1 if you have the `j0' function. */
519
/* Define to 1 if you have the `j0' function. */
517
#undef HAVE_J0
520
#undef HAVE_J0
518
521

Return to bug 568500