ngspice/src/conf.c

30 lines
671 B
C
Raw Normal View History

2000-04-27 22:03:57 +02:00
/* Common configuration file for ng-spice and nutmeg */
#include <config.h>
#include "conf.h"
char Spice_Version[ ] = VERSION;
2003-08-05 19:20:17 +02:00
char Spice_Notice[ ] = "Please submit bug-reports to: ngspice-devel@lists.sourceforge.net";
2000-04-27 22:03:57 +02:00
char Spice_Build_Date[ ] = NGSPICEBUILDDATE;
2002-01-03 23:44:21 +01:00
/*
char *Spice_Exec_Dir = "/spice_win/bin";
char *Spice_Lib_Dir = "/spice_win/lib";
*/
2000-04-27 22:03:57 +02:00
char *Spice_Exec_Dir = NGSPICEBINDIR;
char *Spice_Lib_Dir = NGSPICEDATADIR;
2002-01-03 23:44:21 +01:00
#ifdef __MINGW32__
char *Def_Editor = "notepad.exe";
int AsciiRawFile = 1;
#else
2000-04-27 22:03:57 +02:00
char *Def_Editor = "vi";
int AsciiRawFile = 0;
2002-01-03 23:44:21 +01:00
#endif
2000-04-27 22:03:57 +02:00
2003-08-05 19:20:17 +02:00
char *Bug_Addr = "ngspice-devel@lists.sourceforge.net";
2000-04-27 22:03:57 +02:00
char *Spice_Host = "";
char *Spiced_Log = "";