diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-10-10 07:16:54 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-10-10 07:16:54 +0000 |
commit | 9ca480758d9c1627299b19f1cb7419c84b57980f (patch) | |
tree | c074a72701f339181bc7dce7e0fcefa304cf145a /Build/source/texk/web2c/synctexdir | |
parent | 797af7cfbc26309d5da4a63df5c0353bca06ed7c (diff) |
libs/obsdcompat: No longer used and therefore removed
git-svn-id: svn://tug.org/texlive/trunk@27934 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/synctexdir')
-rw-r--r-- | Build/source/texk/web2c/synctexdir/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/synctexdir/synctex_parser_utils.h | 7 |
2 files changed, 7 insertions, 5 deletions
diff --git a/Build/source/texk/web2c/synctexdir/ChangeLog b/Build/source/texk/web2c/synctexdir/ChangeLog index 4882f74d865..03f407db01f 100644 --- a/Build/source/texk/web2c/synctexdir/ChangeLog +++ b/Build/source/texk/web2c/synctexdir/ChangeLog @@ -1,3 +1,8 @@ +2012-10-08 Peter Breitenlohner <peb@mppmu.mpg.de> + + * synctex_parser_utils.h: Avoid definition of FALSE and TRUE + that may cause warnings. + 2012-09-06 Peter Breitenlohner <peb@mppmu.mpg.de> * synctex_main.c: Define snprintf and getcwd for WIN32. diff --git a/Build/source/texk/web2c/synctexdir/synctex_parser_utils.h b/Build/source/texk/web2c/synctexdir/synctex_parser_utils.h index 18348aa6dca..f817853f5f8 100644 --- a/Build/source/texk/web2c/synctexdir/synctex_parser_utils.h +++ b/Build/source/texk/web2c/synctexdir/synctex_parser_utils.h @@ -61,14 +61,11 @@ authorization from the copyright holder. extern "C" { #endif -#define FALSE 0 -#define TRUE !FALSE - # if _WIN32 -# define SYNCTEX_CASE_SENSITIVE_PATH FALSE +# define SYNCTEX_CASE_SENSITIVE_PATH 0 # define SYNCTEX_IS_PATH_SEPARATOR(c) ('/' == c || '\\' == c) # else -# define SYNCTEX_CASE_SENSITIVE_PATH TRUE +# define SYNCTEX_CASE_SENSITIVE_PATH 1 # define SYNCTEX_IS_PATH_SEPARATOR(c) ('/' == c) # endif |