summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/synctexdir
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2017-07-18 04:11:12 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2017-07-18 04:11:12 +0000
commit82ea6625f41c38023b6d4fe3e712492b5ac53073 (patch)
treeda50bebe040d853feb3d8f72c31b33818fb3a502 /Build/source/texk/web2c/synctexdir
parent06d79da46e7db7783cdb4e4cb7ee5a0b4bece3bb (diff)
synctexdir: mingw32 also does not use syslog.h
git-svn-id: svn://tug.org/texlive/trunk@44839 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/synctexdir')
-rw-r--r--Build/source/texk/web2c/synctexdir/ChangeLog4
-rw-r--r--Build/source/texk/web2c/synctexdir/synctex_parser_utils.c2
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