diff --git a/ChangeLog b/ChangeLog index 07e4c6ab1..2a8542d05 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-09-06 Steven Borley + + * Added hard-coded paths for NGSPICEBINDIR and NGSPICEDATADIR for MinGW + targets (src/conf.h) + + 2005-09-08 Paolo Nenzi * src/frontend/streams.{c,h}: applied Hitoshi's fix for undefined diff --git a/src/conf.h b/src/conf.h index 9ef299f17..e50ddb7ba 100644 --- a/src/conf.h +++ b/src/conf.h @@ -1,6 +1,11 @@ #ifndef __CONF_H #define __CONF_H +#ifdef __MINGW32__ +#define NGSPICEBINDIR "C:\\msys\\1.0\\local\\bin" +#define NGSPICEDATADIR "C:\\msys\\1.0\\local\\share\\ng-spice-rework" +#endif + char Spice_Version[]; char Spice_Notice[]; char Spice_Build_Date[];