diff options
-rw-r--r-- | Build/source/texk/web2c/synctexdir/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/synctexdir/synctex_parser_utils.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/synctexdir/ChangeLog b/Build/source/texk/web2c/synctexdir/ChangeLog index e010960e577..56c57819bf5 100644 --- a/Build/source/texk/web2c/synctexdir/ChangeLog +++ b/Build/source/texk/web2c/synctexdir/ChangeLog @@ -1,3 +1,7 @@ +2017-07-18 Akira Kakuto <kakuto@fuk.kindai.ac.jp> + + * synctex_parser_utils.c: mingw32 also may not have syslog.h. + 2017-07-16 Akira Kakuto <kakuto@fuk.kindai.ac.jp> * synctex_parser_utils.h: Avoid to be included twice. diff --git a/Build/source/texk/web2c/synctexdir/synctex_parser_utils.c b/Build/source/texk/web2c/synctexdir/synctex_parser_utils.c index b0b9d455f83..1a735cccc19 100644 --- a/Build/source/texk/web2c/synctexdir/synctex_parser_utils.c +++ b/Build/source/texk/web2c/synctexdir/synctex_parser_utils.c @@ -83,7 +83,7 @@ void _synctex_free(void * ptr) { } } -#if !defined(_MSC_VER) +#if !defined(_WIN32) # include <syslog.h> #endif |