1 /* sysdep.h -- handle host dependencies for binutils
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2005, 2006, 2007, 2008, 2009, 2012
4 Free Software Foundation, Inc.
6 This file is part of GNU Binutils.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
25 #include "alloca-conf.h"
28 #include <sys/types.h>
34 #ifdef USE_BINARY_FOPEN
35 #include "fopen-bin.h"
37 #include "fopen-same.h"
49 #ifdef STRING_WITH_STRINGS
59 extern char *strchr ();
60 extern char *strrchr ();
72 #ifdef HAVE_SYS_FILE_H
77 #ifdef HAVE_SYS_STAT_H
81 #include "binary-io.h"
84 extern char *stpcpy (char *, const char *);
88 extern char *strstr ();
98 extern char *getenv ();
101 #if !HAVE_DECL_ENVIRON
102 extern char **environ;
105 #if !HAVE_DECL_FPRINTF
106 extern int fprintf (FILE *, const char *, ...);
109 #if !HAVE_DECL_SNPRINTF
110 extern int snprintf(char *, size_t, const char *, ...);
113 #if !HAVE_DECL_VSNPRINTF
114 extern int vsnprintf(char *, size_t, const char *, va_list);
137 /* The Solaris version of locale.h always includes libintl.h. If we have
138 been configured with --disable-nls then ENABLE_NLS will not be defined
139 and the dummy definitions of bindtextdomain (et al) below will conflict
140 with the defintions in libintl.h. So we define these values to prevent
141 the bogus inclusion of libintl.h. */
143 # define _LIBGETTEXT_H
149 # include <libintl.h>
150 # define _(String) gettext (String)
152 # define N_(String) gettext_noop (String)
154 # define N_(String) (String)
157 # define gettext(Msgid) (Msgid)
158 # define dgettext(Domainname, Msgid) (Msgid)
159 # define dcgettext(Domainname, Msgid, Category) (Msgid)
160 # define textdomain(Domainname) while (0) /* nothing */
161 # define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
162 # define _(String) (String)
163 # define N_(String) (String)
166 /* Used by ar.c and objcopy.c. */
175 /* For MAXPATHLEN. */
176 # ifdef HAVE_SYS_PARAM_H
177 # include <sys/param.h>
181 # define PATH_MAX MAXPATHLEN
183 # define PATH_MAX 1024
188 #endif /* _BIN_SYSDEP_H */