1 /* Common configuration file for ng-spice and nutmeg */
2 
3 #include "ngspice/config.h"
4 #include "conf.h"
5 
6 /*  The GNU configure system should set PACKAGE_BUGREPORT
7 	use this if it does, otherwise fall back to a hardcoded address */
8 #ifdef PACKAGE_BUGREPORT
9 #define BUG_ADDRESS		PACKAGE_BUGREPORT
10 #else
11 #define BUG_ADDRESS		"http://ngspice.sourceforge.net/bugrep.html"
12 #endif
13 
14 char	Spice_Version[] = PACKAGE_VERSION;
15 char	Spice_Notice[] = "Please file your bug-reports at " BUG_ADDRESS;
16 #ifndef _MSC_VER
17 char	Spice_Build_Date[] = NGSPICEBUILDDATE;
18 #else
19 char	Spice_Build_Date[] = __DATE__"   "__TIME__;
20 #endif
21 
22 char	Spice_Manual[] = "Please get your ngspice manual from http://ngspice.sourceforge.net/docs.html";
23 
24 char	*Spice_Exec_Dir	= NGSPICEBINDIR;
25 char	*Spice_Lib_Dir	= NGSPICEDATADIR;
26 
27 #if defined (__MINGW32__) || defined (_MSC_VER)
28 char	*Def_Editor	= "notepad.exe";
29 #else
30 char	*Def_Editor	= "vi";
31 #endif
32 int	AsciiRawFile	= 0;
33 
34 char	*Bug_Addr	= BUG_ADDRESS;
35 char	*Spice_Host	= "";
36 char	*Spiced_Log	= "";
37