diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2001-01-28 18:16:38 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2001-01-28 18:16:38 (GMT) |
commit | 9d98e802c931c7d358c55c2f69dabdef78b1fb62 (patch) | |
tree | 26b976ebd24f845a5cf88ab76f81f928c47c4548 /addon/configgen/config_templ.l | |
parent | cbf50dc79a88d3710287b312996da56f97154c56 (diff) | |
download | Doxygen-9d98e802c931c7d358c55c2f69dabdef78b1fb62.zip Doxygen-9d98e802c931c7d358c55c2f69dabdef78b1fb62.tar.gz Doxygen-9d98e802c931c7d358c55c2f69dabdef78b1fb62.tar.bz2 |
Release-1.2.4-20010128
Diffstat (limited to 'addon/configgen/config_templ.l')
-rw-r--r-- | addon/configgen/config_templ.l | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/addon/configgen/config_templ.l b/addon/configgen/config_templ.l index aa1446b..69886d7 100644 --- a/addon/configgen/config_templ.l +++ b/addon/configgen/config_templ.l @@ -950,9 +950,13 @@ void checkConfig() } } +#undef PUTENV #if defined(_WIN32) - if (Config::haveDotFlag) _putenv("DOTFONTPATH=."); +#define PUTENV _putenv +#else +#define PUTENV putenv #endif + if (Config::haveDotFlag) PUTENV("DOTFONTPATH=."); } |