diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-04-26 07:54:36 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-04-26 07:54:36 +0000 |
commit | 23253c5ed52df9ec6ba883532750fa93372ddfc2 (patch) | |
tree | fdf665a634c00b652d192b81ae6fe9395659cf34 /Build/source/texk/web2c/synctexdir | |
parent | df57917242dd1fd12f6a0ede6b23833f2e45699e (diff) |
build system fixes and cleanup
git-svn-id: svn://tug.org/texlive/trunk@18005 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_main.c | 2 | ||||
-rw-r--r-- | Build/source/texk/web2c/synctexdir/synctex_parser_local.h | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/synctexdir/ChangeLog b/Build/source/texk/web2c/synctexdir/ChangeLog index caf99d026ed..74772ed8b85 100644 --- a/Build/source/texk/web2c/synctexdir/ChangeLog +++ b/Build/source/texk/web2c/synctexdir/ChangeLog @@ -1,3 +1,8 @@ +2010-04-23 Peter Breitenlohner <peb@mppmu.mpg.de> + + * synctex_main.c, synctex_parser_local.h: #include "c-auto.h" + instead of "web2c/c-auto.h". + 2010-01-22 Peter Breitenlohner <peb@mppmu.mpg.de> * am/synctex.am (synctex_CFLAGS): Enable compiler warnings. diff --git a/Build/source/texk/web2c/synctexdir/synctex_main.c b/Build/source/texk/web2c/synctexdir/synctex_main.c index 489c621afa8..921e09fcd99 100644 --- a/Build/source/texk/web2c/synctexdir/synctex_main.c +++ b/Build/source/texk/web2c/synctexdir/synctex_main.c @@ -61,7 +61,7 @@ This is the command line interface to the synctex_parser.c. #define _ISOC99_SOURCE /* to get the fmax() prototype */ #endif -# include "web2c/c-auto.h" /* for inline && HAVE_xxx */ +# include "c-auto.h" /* for inline && HAVE_xxx */ # include <stdlib.h> # include <stdio.h> diff --git a/Build/source/texk/web2c/synctexdir/synctex_parser_local.h b/Build/source/texk/web2c/synctexdir/synctex_parser_local.h index 80f553e44a6..d84f5ee051f 100644 --- a/Build/source/texk/web2c/synctexdir/synctex_parser_local.h +++ b/Build/source/texk/web2c/synctexdir/synctex_parser_local.h @@ -36,6 +36,6 @@ authorization from the copyright holder. */ /* This local header file is for TEXLIVE, use your own header to fit your system */ -# include "web2c/c-auto.h" /* for inline && HAVE_xxx */ +# include "c-auto.h" /* for inline && HAVE_xxx */ /* No inlining for synctex tool in texlive. */ # define SYNCTEX_INLINE |