From 7b63ae8f8ae44fc4cdbca875d43e8cb4747ab074 Mon Sep 17 00:00:00 2001 From: Andreas Schuh Date: Mon, 17 Mar 2014 13:33:26 +0000 Subject: [PATCH] Fix preprocessor conditions to use new GFLAGS_* defines. --- src/gflags.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gflags.cc b/src/gflags.cc index 0e6ea7d..7727327 100644 --- a/src/gflags.cc +++ b/src/gflags.cc @@ -93,7 +93,7 @@ #include #include #include -#ifdef HAVE_FNMATCH_H +#ifdef GFLAGS_HAVE_FNMATCH_H # include #endif #include // 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