ngspice/src/conf.c

30 lines
666 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;
2004-09-01 21:05:40 +02:00
char Spice_Notice[] = "Please submit bug-reports to: ngspice-bugs@lists.sourceforge.net";
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
2004-09-01 21:05:40 +02:00
char *Bug_Addr = "ngspice-bugs@lists.sourceforge.net";
2000-04-27 22:03:57 +02:00
char *Spice_Host = "";
char *Spiced_Log = "";