welcome message, version 22

This commit is contained in:
h_vogt 2010-09-25 14:15:26 +00:00
parent 382c1a28fe
commit 8db3c17bc0
7 changed files with 15 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2010-09-23 Holger Vogt
* conf.c, conf.h, ngspice.h, visualc/config.h, configure.ac:
update welcome message, version 22
2010-09-23 Robert Larice
* Makefile.am ,
* m4/.cvsignore :

View File

@ -12,7 +12,7 @@ dnl Initialisation
dnl ---------------
dnl Initialisation of configure
AC_INIT(ngspice,21plus,ngspice-bugs@lists.sourceforge.net)
AC_INIT(ngspice,22,http://ngspice.sourceforge.net/bugrep.html)
dnl Unique file in the source directory
AC_CONFIG_SRCDIR([src/ngspice.c])

View File

@ -8,17 +8,19 @@
#ifdef PACKAGE_BUGREPORT
#define BUG_ADDRESS PACKAGE_BUGREPORT
#else
#define BUG_ADDRESS "ngspice-bugs@lists.sourceforge.net"
#define BUG_ADDRESS "http://ngspice.sourceforge.net/bugrep.html"
#endif
char Spice_Version[] = PACKAGE_VERSION;
char Spice_Notice[] = "Please submit bug-reports to: " BUG_ADDRESS;
char Spice_Notice[] = "Please file your bug-reports at " BUG_ADDRESS;
#ifndef _MSC_VER
char Spice_Build_Date[] = NGSPICEBUILDDATE;
#else
char Spice_Build_Date[] = __DATE__" "__TIME__;
#endif
char Spice_Manual[] = "Please get your ngspice manual from http://ngspice.sourceforge.net/docs.html";
char *Spice_Exec_Dir = NGSPICEBINDIR;
char *Spice_Lib_Dir = NGSPICEDATADIR;

View File

@ -4,6 +4,7 @@
extern char Spice_Version[];
extern char Spice_Notice[];
extern char Spice_Build_Date[];
extern char Spice_Manual[];
extern char *Spice_Exec_Dir;
extern char *Spice_Lib_Dir;
extern char *Def_Editor;

View File

@ -159,6 +159,7 @@ com_version(wordlist *wl)
fprintf(cp_out, "** The U. C. Berkeley CAD Group\n");
fprintf(cp_out,
"** Copyright 1985-1994, Regents of the University of California.\n");
fprintf(cp_out, "** %s\n", Spice_Manual);
if (Spice_Notice != NULL && *Spice_Notice != 0)
fprintf(cp_out, "** %s\n", Spice_Notice);
if (Spice_Build_Date != NULL && *Spice_Build_Date != 0)
@ -171,6 +172,7 @@ com_version(wordlist *wl)
fprintf(cp_out, "******\n");
fprintf(cp_out, "** %s-%s\n", ft_sim->simulator,
ft_sim->version);
fprintf(cp_out, "** %s\n", Spice_Manual);
if (Spice_Notice != NULL && *Spice_Notice != 0)
fprintf(cp_out, "** %s\n", Spice_Notice);
if (Spice_Build_Date != NULL && *Spice_Build_Date != 0)
@ -185,6 +187,7 @@ com_version(wordlist *wl)
fprintf(cp_out, "** The U. C. Berkeley CAD Group\n");
fprintf(cp_out,
"** Copyright 1985-1994, Regents of the University of California.\n");
fprintf(cp_out, "** %s\n", Spice_Manual);
if (Spice_Notice != NULL && *Spice_Notice != 0)
fprintf(cp_out, "** %s\n", Spice_Notice);
if (Spice_Build_Date != NULL && *Spice_Build_Date != 0)

View File

@ -240,6 +240,7 @@ extern char *Spiced_Log;
extern char Spice_Version[];
extern char Spice_Notice[];
extern char Spice_Build_Date[];
extern char Spice_Manual[];
extern char *News_File;
extern char *Default_MFB_Cap;

View File

@ -472,7 +472,7 @@
#define PACKAGE "ngspice"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "ngspice-bugs@lists.sourceforge.net"
#define PACKAGE_BUGREPORT "http://ngspice.sourceforge.net/bugrep.html"
/* Define to the full name of this package. */
#define PACKAGE_NAME "ngspice"