<pre><br>I am trying to build TL2012 for win32/MINGW  and find that the macors in generated header files ,texk\kpathsea\c-auto.h for example, are not set correctly.<br>This happened if I use 'Build' script to build binary in 'Work' directory.  A segment of generated file is: <br>

<br>-------- c-auto.h generated with Build script--------------<br><br>...............<br>/* Define to 1 if you have the `memcmp' function. */<br>#undef HAVE_MEMCMP<br><br>/* Define to 1 if you have the `memcpy' function. */<br>

#undef HAVE_MEMCPY<br><br>/* Define to 1 if you have the <memory.h> header file. */<br>#undef HAVE_MEMORY_H<br><br>/* Define to 1 if you have the `mkstemp' function. */<br>#undef HAVE_MKSTEMP<br><br>/* Define to 1 if you have the `mktemp' function. */<br>

#undef HAVE_MKTEMP<br>....<br>--------------------<br><br><br>But if I build TL in source tree (using ../confingure in source )  , these macros are correctly generated  :<br><br>--------- c-auto.h generated in source tree --------<br>

/* Define to 1 if you have the `memcmp' function. */<br>#define HAVE_MEMCMP 1<br><br>/* Define to 1 if you have the `memcpy' function. */<br>#define HAVE_MEMCPY 1<br><br>/* Define to 1 if you have the <memory.h> header file. */<br>

#define HAVE_MEMORY_H 1<br><br>/* Define to 1 if you have the `mkstemp' function. */<br>/* #undef HAVE_MKSTEMP */<br><br>/* Define to 1 if you have the `mktemp' function. */<br>#define HAVE_MKTEMP 1<br><br>/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */<br>

/* #undef HAVE_NDIR_H */<br><br><br>------------------<br><br><br>Is there any way that I can fixed this problem ?<br><br>Thanks.<br><br><br>YungLee<br></pre><br><br>