configure.in: Check for <sys/types.h>.

2001-08-16  Marc Espie <espie@openbsd.org>
	* configure.in:  Check for <sys/types.h>.
	* configure:  Rebuild.
	* config.h.in:  Rebuild.
	* libmath/mathconf.h:  Include <sys/types.h> prior to
	<machine/endian.h> if available.

From-SVN: r44935
This commit is contained in:
Marc Espie 2001-08-16 12:49:19 +00:00 committed by Marc Espie
parent 0d3c08b640
commit c8f9b30251
4 changed files with 15 additions and 5 deletions

View file

@ -1,3 +1,10 @@
2001-08-16 Marc Espie <espie@openbsd.org>
* configure.in: Check for <sys/types.h>.
* configure: Rebuild.
* config.h.in: Rebuild.
* libmath/mathconf.h: Include <sys/types.h> prior to
<machine/endian.h> if available.
2001-08-15 Andreas Schwab <schwab@suse.de> 2001-08-15 Andreas Schwab <schwab@suse.de>
* configure.target (cpu_include_dir): Set to `config/cpu/m68k' for * configure.target (cpu_include_dir): Set to `config/cpu/m68k' for

View file

@ -2619,7 +2619,7 @@ if eval "test \"`echo '$''{'_cv_gnu_make_command'+set}'`\" = set"; then
else else
_cv_gnu_make_command='' ; _cv_gnu_make_command='' ;
for a in "${MAKE-make}" make gmake gnumake ; do for a in "${MAKE-make}" make gmake gnumake ; do
if ( $a --version 2> /dev/null | grep -c GNU > /dev/null ) if ($a --version 2> /dev/null | grep -c GNU > /dev/null )
then then
_cv_gnu_make_command=$a ; _cv_gnu_make_command=$a ;
break; break;
@ -3836,8 +3836,8 @@ if test -n "$with_cross_host" || test x"$build" != x"$host"; then
# Construct linux crosses by hand, eliminating bits that need ld... # Construct linux crosses by hand, eliminating bits that need ld...
# Check for available headers. # Check for available headers.
for ac_hdr in nan.h ieeefp.h endian.h sys/isa_defs.h \ for ac_hdr in nan.h ieeefp.h endian.h sys/isa_defs.h \
machine/endian.h machine/param.h sys/machine.h fp.h locale.h \ machine/endian.h machine/param.h sys/machine.h sys/types.h \
float.h inttypes.h fp.h locale.h float.h inttypes.h
do do
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6

View file

@ -72,8 +72,8 @@ if test -n "$with_cross_host" || test x"$build" != x"$host"; then
# Construct linux crosses by hand, eliminating bits that need ld... # Construct linux crosses by hand, eliminating bits that need ld...
# Check for available headers. # Check for available headers.
AC_CHECK_HEADERS([nan.h ieeefp.h endian.h sys/isa_defs.h \ AC_CHECK_HEADERS([nan.h ieeefp.h endian.h sys/isa_defs.h \
machine/endian.h machine/param.h sys/machine.h fp.h locale.h \ machine/endian.h machine/param.h sys/machine.h sys/types.h \
float.h inttypes.h]) fp.h locale.h float.h inttypes.h])
# GLIBCPP_CHECK_COMPILER_FEATURES # GLIBCPP_CHECK_COMPILER_FEATURES
SECTION_FLAGS='-ffunction-sections -fdata-sections' SECTION_FLAGS='-ffunction-sections -fdata-sections'

View file

@ -34,6 +34,9 @@
# include <endian.h> # include <endian.h>
#else #else
# ifdef HAVE_MACHINE_ENDIAN_H # ifdef HAVE_MACHINE_ENDIAN_H
# ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
# endif
# include <machine/endian.h> # include <machine/endian.h>
# else # else
# ifdef HAVE_SYS_MACHINE_H # ifdef HAVE_SYS_MACHINE_H