diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-11-27 13:29:55 +0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-11-27 13:29:55 +0100 |
commit | 8b8ee53bc73769bb25d967ba259dabc9b23e2e6f (patch) | |
tree | 79aab3b316d632fc663c1c78da25a88425f4275e /src/libstore/Makefile.am | |
parent | 5943f41b8bd95b8559cb6768bb0a1151f6bee68d (diff) |
Add builtin constants ‘langVersion’ and ‘nixVersion’
The integer constant ‘langVersion’ denotes the current language
version. It gets increased every time a language feature is
added/changed/removed. It's currently 1.
The string constant ‘nixVersion’ contains the current Nix version,
e.g. "1.2pre2980_9de6bc5".
Diffstat (limited to 'src/libstore/Makefile.am')
-rw-r--r-- | src/libstore/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstore/Makefile.am b/src/libstore/Makefile.am index 46e18be23..3dfb1e0c3 100644 --- a/src/libstore/Makefile.am +++ b/src/libstore/Makefile.am @@ -23,6 +23,7 @@ AM_CXXFLAGS = -Wall \ -DNIX_CONF_DIR=\"$(sysconfdir)/nix\" \ -DNIX_LIBEXEC_DIR=\"$(libexecdir)\" \ -DNIX_BIN_DIR=\"$(bindir)\" \ + -DNIX_VERSION=\"$(VERSION)\" \ -I$(srcdir)/.. -I$(srcdir)/../libutil \ -I$(srcdir)/../libstore |