mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Fix preprocessor conditions to use new GFLAGS_* defines.
This commit is contained in:
parent
9b3c4a81c2
commit
7b63ae8f8a
1 changed files with 2 additions and 2 deletions
|
@ -93,7 +93,7 @@
|
|||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#ifdef HAVE_FNMATCH_H
|
||||
#ifdef GFLAGS_HAVE_FNMATCH_H
|
||||
# include <fnmatch.h>
|
||||
#endif
|
||||
#include <stdarg.h> // For va_list and related operations
|
||||
|
@ -1307,7 +1307,7 @@ string CommandLineFlagParser::ProcessOptionsFromStringLocked(
|
|||
// We try matching both against the full argv0 and basename(argv0)
|
||||
if (glob == ProgramInvocationName() // small optimization
|
||||
|| glob == ProgramInvocationShortName()
|
||||
#if HAVE_FNMATCH_H
|
||||
#ifdef GFLAGS_HAVE_FNMATCH_H
|
||||
|| fnmatch(glob.c_str(),
|
||||
ProgramInvocationName(),
|
||||
FNM_PATHNAME) == 0
|
||||
|
|
Loading…
Add table
Reference in a new issue