mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-21 10:51:06 +00:00
removed a silly #else case on an ifdef
This commit is contained in:
parent
c6abe56fd1
commit
1cb980a02e
3 changed files with 5 additions and 4 deletions
|
@ -251,6 +251,9 @@
|
|||
/* Define if you have the m library (-lm). */
|
||||
#undef HAVE_LIBM
|
||||
|
||||
/* Define if dirent.h is in your include path somewhere */
|
||||
#define HAVE_FNMATCH_H 1
|
||||
|
||||
/* Define if you want the QSG standards */
|
||||
#define QSG_VERSION "1"
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
#include <errno.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include "win32/fnmatch.h"
|
||||
#include "fnmatch.h"
|
||||
|
||||
|
||||
/* Comment out all this code if we are using the GNU C Library, and are not
|
||||
|
|
|
@ -55,9 +55,7 @@
|
|||
|
||||
#include <dirent.h>
|
||||
#ifdef HAVE_FNMATCH_H
|
||||
# include <fnmatch.h>
|
||||
#else
|
||||
# include "win32/fnmatch.h"
|
||||
#include <fnmatch.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
|
|
Loading…
Reference in a new issue