mirror of
https://github.com/frida/tinycc
synced 2024-12-24 05:56:49 +03:00
fix for thev "#pragna once" guard
gcc 3.4.6 don't understand "#if PATHCMP==stricmp" where "#define PATHCMP stricmp"
This commit is contained in:
parent
34feee0ed6
commit
5fb57bead4
1
tcc.h
1
tcc.h
@ -101,6 +101,7 @@
|
||||
# define IS_DIRSEP(c) (c == '/' || c == '\\')
|
||||
# define IS_ABSPATH(p) (IS_DIRSEP(p[0]) || (p[0] && p[1] == ':' && IS_DIRSEP(p[2])))
|
||||
# define PATHCMP stricmp
|
||||
# define PATH_NOCASE
|
||||
#else
|
||||
# define IS_DIRSEP(c) (c == '/')
|
||||
# define IS_ABSPATH(p) IS_DIRSEP(p[0])
|
||||
|
2
tccpp.c
2
tccpp.c
@ -1480,7 +1480,7 @@ static void pragma_parse(TCCState *s1)
|
||||
char buf1[sizeof(file->filename) + sizeof(ONCE_PREFIX)];
|
||||
strcpy(buf1, ONCE_PREFIX);
|
||||
strcat(buf1, file->filename);
|
||||
#if PATHCMP==stricmp
|
||||
#ifdef PATH_NOCASE
|
||||
strupr(buf1);
|
||||
#endif
|
||||
add_cached_include(s1, file->filename, tok_alloc(buf1, strlen(buf1))->tok);
|
||||
|
Loading…
Reference in New Issue
Block a user