Browse Source

welcome message, version 22

pre-master-46
h_vogt 16 years ago
parent
commit
8db3c17bc0
  1. 4
      ChangeLog
  2. 2
      configure.ac
  3. 6
      src/conf.c
  4. 1
      src/conf.h
  5. 3
      src/frontend/misccoms.c
  6. 1
      src/include/ngspice.h
  7. 2
      visualc/include/config.h

4
ChangeLog

@ -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 2010-09-23 Robert Larice
* Makefile.am , * Makefile.am ,
* m4/.cvsignore : * m4/.cvsignore :

2
configure.ac

@ -12,7 +12,7 @@ dnl Initialisation
dnl --------------- dnl ---------------
dnl Initialisation of configure 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 dnl Unique file in the source directory
AC_CONFIG_SRCDIR([src/ngspice.c]) AC_CONFIG_SRCDIR([src/ngspice.c])

6
src/conf.c

@ -8,17 +8,19 @@
#ifdef PACKAGE_BUGREPORT #ifdef PACKAGE_BUGREPORT
#define BUG_ADDRESS PACKAGE_BUGREPORT #define BUG_ADDRESS PACKAGE_BUGREPORT
#else #else
#define BUG_ADDRESS "ngspice-bugs@lists.sourceforge.net"
#define BUG_ADDRESS "http://ngspice.sourceforge.net/bugrep.html"
#endif #endif
char Spice_Version[] = PACKAGE_VERSION; 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 #ifndef _MSC_VER
char Spice_Build_Date[] = NGSPICEBUILDDATE; char Spice_Build_Date[] = NGSPICEBUILDDATE;
#else #else
char Spice_Build_Date[] = __DATE__" "__TIME__; char Spice_Build_Date[] = __DATE__" "__TIME__;
#endif #endif
char Spice_Manual[] = "Please get your ngspice manual from http://ngspice.sourceforge.net/docs.html";
char *Spice_Exec_Dir = NGSPICEBINDIR; char *Spice_Exec_Dir = NGSPICEBINDIR;
char *Spice_Lib_Dir = NGSPICEDATADIR; char *Spice_Lib_Dir = NGSPICEDATADIR;

1
src/conf.h

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

3
src/frontend/misccoms.c

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

1
src/include/ngspice.h

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

2
visualc/include/config.h

@ -472,7 +472,7 @@
#define PACKAGE "ngspice" #define PACKAGE "ngspice"
/* Define to the address where bug reports for this package should be sent. */ /* 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 to the full name of this package. */
#define PACKAGE_NAME "ngspice" #define PACKAGE_NAME "ngspice"

Loading…
Cancel
Save