blob: 7d4b210aaac362915e9968f89ce18e4fb8342a04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#if 0 /* SCMVERSION is a string for the version specifier. The leading
# number is the major version number, the letter is the revision ("a"
# for alpha release, "b" for beta release, "c", and so on), and the
# trailing number is the patchlevel. */
# /* This next line sets VERSION when included from the Makefile */
VERSION=5e4
#endif
#ifndef SCMVERSION
# define SCMVERSION "5e4"
#endif
#ifdef nosve
# define INIT_FILE_NAME "Init"SCMVERSION"_scm";
#else
# define INIT_FILE_NAME "Init"SCMVERSION".scm"
#endif
|