diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2012-01-07T17·26+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2012-01-07T17·26+0000 |
commit | 9fe24c5a0d1e694c6338d584a101034cfbff10bf (patch) | |
tree | f938de94275a6a3337a60a111c0c74cd15fb6991 /src/libexpr/Makefile.am | |
parent | d4e6b9f2d62ef77ff46397bd130350f03723ce50 (diff) |
* Don't create thunks for simple constants (integers, strings, paths)
and allocate them only once. * Move Value and related functions into value.hh.
Diffstat (limited to 'src/libexpr/Makefile.am')
-rw-r--r-- | src/libexpr/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/Makefile.am b/src/libexpr/Makefile.am index c15975777493..9ca4b2448557 100644 --- a/src/libexpr/Makefile.am +++ b/src/libexpr/Makefile.am @@ -8,7 +8,7 @@ libexpr_la_SOURCES = \ pkginclude_HEADERS = \ nixexpr.hh eval.hh lexer-tab.hh parser-tab.hh \ get-drvs.hh attr-path.hh value-to-xml.hh common-opts.hh \ - names.hh symbol-table.hh + names.hh symbol-table.hh value.hh libexpr_la_LIBADD = ../libutil/libutil.la ../libstore/libstore.la \ ../boost/format/libformat.la @BDW_GC_LIBS@ |