X-Git-Url: http://drtracing.org/?a=blobdiff_plain;ds=sidebyside;f=ld%2Fsysdep.h;h=aca60eb7638e8c7f11ceb0781a09fcdade49707d;hb=c092a4d9154f09e6c67648efb723878d7a74f44f;hp=b7d5b88a857bf3053127053c5a3dc0898fcf452d;hpb=3917d5d5ca1bed255ee9bd0a0b38360505ce5b4c;p=deliverable%2Fbinutils-gdb.git diff --git a/ld/sysdep.h b/ld/sysdep.h index b7d5b88a85..aca60eb763 100644 --- a/ld/sysdep.h +++ b/ld/sysdep.h @@ -1,6 +1,5 @@ /* sysdep.h -- handle host dependencies for the GNU linker - Copyright 1995, 1996, 1997, 1999, 2002, 2003, 2005, 2007 - Free Software Foundation, Inc. + Copyright (C) 1995-2016 Free Software Foundation, Inc. This file is part of the GNU Binutils. @@ -22,6 +21,10 @@ #ifndef LD_SYSDEP_H #define LD_SYSDEP_H +#ifdef PACKAGE +#error sysdep.h must be included in lieu of config.h +#endif + #include "config.h" #include @@ -29,6 +32,10 @@ #include #include +#ifdef STRING_WITH_STRINGS +#include +#include +#else #ifdef HAVE_STRING_H #include #else @@ -39,6 +46,7 @@ extern char *strchr (); extern char *strrchr (); #endif #endif +#endif #ifdef HAVE_STDLIB_H #include @@ -48,34 +56,12 @@ extern char *strrchr (); #include #endif -/* for PATH_MAX */ -#ifdef HAVE_LIMITS_H -#include -#endif -/* for MAXPATHLEN */ -#ifdef HAVE_SYS_PARAM_H -#include -#endif -#ifdef PATH_MAX -# define LD_PATHMAX PATH_MAX -#else -# ifdef MAXPATHLEN -# define LD_PATHMAX MAXPATHLEN -# else -# define LD_PATHMAX 1024 -# endif -#endif - #ifdef HAVE_REALPATH # define REALPATH(a,b) realpath (a, b) #else # define REALPATH(a,b) NULL #endif -#ifdef HAVE_UNISTD_H -#include -#endif - #ifdef USE_BINARY_FOPEN #include "fopen-bin.h" #else