git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3300
4a8a32a2-be11-0410-ad9d-
d568d2c75423
+2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
+
+ * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
+
2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
* src/SDCCpeeph.c (replaceRule): support empty replacement peephole
#include <string.h>
#include <stdlib.h>
#include "aslink.h"
-#include "sdccconf.h"
+
+#ifdef _WIN32
+# ifdef __MINGW32__ /* GCC MINGW32 depends on configure */
+# include "sdccconf.h"
+# else
+# include "sdcc_vc.h"
+# endif
+#else /* Assume Un*x style system */
+# include "sdccconf.h"
+#endif
static int execStartMSB;
static int execStartLSB;