X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Frrd_getopt.c;h=46f7313473caf6bc8b57f952e3b4e05e7c6e3ed9;hb=HEAD;hp=57266302db8ac849b9826836e9b3bfdbc2dac511;hpb=91345775ebb70f3899781018f95d78076f1e6f23;p=pkg-rrdtool.git diff --git a/src/rrd_getopt.c b/src/rrd_getopt.c index 5726630..46f7313 100644 --- a/src/rrd_getopt.c +++ b/src/rrd_getopt.c @@ -30,9 +30,8 @@ #define _NO_PROTO #endif -#ifndef WIN32 -#if !defined (__STDC__) || !__STDC__ +#if !defined WIN32 && (!defined (__STDC__) || !__STDC__) /* This is a separate conditional since some stdc systems reject `defined (const)'. */ #ifndef const @@ -40,11 +39,11 @@ #endif #endif -#endif // WIN32 - +#ifndef WIN32 #ifdef HAVE_CONFIG_H #include "../rrd_config.h" #endif +#endif #include "rrd_i18n.h" @@ -114,6 +113,14 @@ Also, when `ordering' is RETURN_IN_ORDER, each non-option ARGV-element is returned here. */ +/* + * On some versions of Solaris, opterr and friends are defined in core libc + * rather than in a separate getopt module. Define these variables only + * if configure found they aren't there by default. (We assume that testing + * opterr is sufficient for all of these except optreset.) + */ +#ifndef HAVE_INT_OPTERR + char *optarg = NULL; /* Index in ARGV of the next element to be scanned. @@ -128,9 +135,28 @@ char *optarg = NULL; Otherwise, `optind' communicates from one call to the next how much of ARGV has been scanned so far. */ +/* Callers store zero here to inhibit the error message + for unrecognized options. */ + +int opterr = 1; + +/* Set to an option character which was unrecognized. + This must be initialized on some systems to avoid linking in the + system's own getopt implementation. */ + +int optopt = '?'; + /* 1003.2 says this must be 1 before any call. */ int optind = 1; +#else + extern int opterr; + extern int optind; + extern int optopt; + extern char *optarg; +#endif + + /* Formerly, initialization of getopt depended on optind==0, which causes problems with re-calling getopt as programs generally don't know that. */ @@ -146,16 +172,6 @@ int __getopt_initialized = 0; static char *nextchar; -/* Callers store zero here to inhibit the error message - for unrecognized options. */ - -int opterr = 1; - -/* Set to an option character which was unrecognized. - This must be initialized on some systems to avoid linking in the - system's own getopt implementation. */ - -int optopt = '?'; /* Describe how to deal with options that follow non-option ARGV-elements. @@ -210,15 +226,7 @@ static char *posixly_correct; char *getenv( ); -#ifdef WIN32 static char* my_index(const char* str, int chr) -#else // WIN32 -static char *my_index( - str, - chr) - const char *str; - int chr; -#endif // wIN32 { while (*str) { if (*str == chr) @@ -267,7 +275,8 @@ static char *const *original_argv; to getopt is that one passed to the process. */ static void store_args( int argc, - char *const *argv) __attribute__ ((unused)); + char *const *argv); + static void store_args( int argc, char *const *argv) @@ -295,13 +304,7 @@ static void exchange( char **); #endif -#ifdef WIN32 static void exchange(char** argv) -#else // WIN32 -static void exchange( - argv) - char **argv; -#endif // WIN32 { int bottom = first_nonopt; int middle = last_nonopt; @@ -357,20 +360,9 @@ static const char *_getopt_initialize( char *const *, const char *); #endif - -#ifdef WIN32 static const char* _getopt_initialize(int argc, - char** argv, + char* const* argv, const char* optstring) -#else // WIN32 -static const char *_getopt_initialize( - argc, - argv, - optstring) - int argc; - char *const *argv; - const char *optstring; -#endif // WIN32 { /* Start processing options with ARGV-element 1 (since ARGV-element 0 is the program name); the sequence of previously skipped @@ -473,28 +465,16 @@ static const char *_getopt_initialize( If LONG_ONLY is nonzero, '-' as well as '--' can introduce long-named options. */ -#ifdef WIN32 int _getopt_internal(int argc, +#ifdef WIN32 char** argv, +#else // WIN32 + char* const* argv, +#endif //WIN32 const char *optstring, const struct option *longopts, int* longind, int long_only) -#else // WIN32 -int _getopt_internal( - argc, - argv, - optstring, - longopts, - longind, - long_only) - int argc; - char *const *argv; - const char *optstring; - const struct option *longopts; - int *longind; - int long_only; -#endif // WIN32 { optarg = NULL; @@ -894,25 +874,6 @@ int _getopt_internal( } } -#ifdef WIN32 -int getopt( - int argc, - char** argv, - const char* optstring) -#else // WIN32 -int getopt( - argc, - argv, - optstring) - int argc; - char *const *argv; - const char *optstring; -#endif // WIN32 -{ - return _getopt_internal(argc, argv, optstring, - (const struct option *) 0, (int *) 0, 0); -} - #endif /* Not ELIDE_CODE. */ #ifdef TEST