[tex-live] windows testing

Akira Kakuto kakuto at fuk.kindai.ac.jp
Tue Nov 3 10:03:04 CET 2009


Hi Jonathan,

> BTW, this might mean that the synctex command-line tool in TL will  
> also fail on Win2K, depending how that is built.

I didn't notice the w2k problem, but I'm not using
vscprintf, simply because the code was not compiled
due to my old compiler.

Thanks,
Akira

--- synctex_parser_utils.c.orig	Tue Nov 03 17:49:32 2009
+++ synctex_parser_utils.c	Tue Nov 03 17:52:47 2009
@@ -73,7 +73,7 @@
 	va_list arg;
 	int result;
 	va_start (arg, reason);
-#	ifdef _WIN32
+#if 0   /* I'm using old compiler */
 	{/*	This code is contributed by William Blum */
 		char *buff;
 		size_t len;
@@ -85,11 +85,11 @@
 		OutputDebugString("\n");
 		free(buff);
 	}
-#else
+#endif
 	result = fprintf(stderr,"SyncTeX ERROR: ");
 	result += vfprintf(stderr, reason, arg);
 	result += fprintf(stderr,"\n");
-#endif
+
 	va_end (arg);
 	return result;
 }



More information about the tex-live mailing list