diff options
| author | Simon Tatham <anakin@pobox.com> | 2014-09-30 20:09:31 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2014-09-30 20:09:31 +0000 |
| commit | 6c393e0b85658f39b2324346685f1bcdfa1012c1 (patch) | |
| tree | c179bc33abac7da9ba487c49f61c1814ec6daff6 | |
| parent | 539919a45dfb039e61e964c43e3da7d7e64ff444 (diff) | |
| download | halibut-6c393e0b85658f39b2324346685f1bcdfa1012c1.zip halibut-6c393e0b85658f39b2324346685f1bcdfa1012c1.tar.gz halibut-6c393e0b85658f39b2324346685f1bcdfa1012c1.tar.bz2 halibut-6c393e0b85658f39b2324346685f1bcdfa1012c1.tar.xz | |
Provide a static version.h for development builds.
I forgot to add this in last week's versioning revamp, so that bob
builds work (constructing a version.h from the build script) but dev
builds straight from source control fail for lack of version.h.
[originally from svn r10277]
| -rw-r--r-- | version.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/version.h b/version.h new file mode 100644 index 0000000..39dad05 --- /dev/null +++ b/version.h @@ -0,0 +1,11 @@ +/* + * This header file provides the versioning-related #defines for a + * particular build of Halibut. + * + * When my automated build system does a full build, Buildscr + * completely overwrites this file with information derived from the + * circumstances and type of that build. The information _here_ is + * default stuff used for local development runs of 'make'. + */ + +#define VERSION "unidentified version" |