Re-added corrupt binary files; small change to filefn.cpp for Cygwin.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1213 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-12-17 09:44:29 +00:00
parent b292e2f512
commit 99cc00edee
9 changed files with 4 additions and 2 deletions

View File

@@ -70,7 +70,8 @@
#endif
#include "wx/setup.h"
#ifdef HAVE_FNMATCH_H
#if defined(HAVE_FNMATCH_H) || defined(__GNUWIN32__)
#include "fnmatch.h"
#endif
@@ -1404,7 +1405,8 @@ bool wxIsWild( const wxString& pattern )
};
bool wxMatchWild( const wxString& pat, const wxString& text, bool dot_special )
#ifdef HAVE_FNMATCH_H
#if defined(HAVE_FNMATCH_H) || defined(__GNUWIN32__)
{
if(dot_special)
return fnmatch(pat.c_str(), text.c_str(), FNM_PERIOD) == 0;