diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-02-23T22·12+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-02-23T22·12+0000 |
commit | b4e6d98fc33df055c8230903bb7d9633042a6374 (patch) | |
tree | b4bf61f9a936e80fe0d2af8808818e78821e509b /src | |
parent | 2b20318b0e968432438a7528b2d11d05585877c2 (diff) |
* configure: flag --with-sqlite.
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libstore/Makefile.am b/src/libstore/Makefile.am index 0140857b8100..2f8bb72da37b 100644 --- a/src/libstore/Makefile.am +++ b/src/libstore/Makefile.am @@ -10,14 +10,15 @@ pkginclude_HEADERS = \ globals.hh references.hh pathlocks.hh \ worker-protocol.hh -libstore_la_LIBADD = ../libutil/libutil.la ../boost/format/libformat.la @ADDITIONAL_NETWORK_LIBS@ +libstore_la_LIBADD = ../libutil/libutil.la ../boost/format/libformat.la \ + ${sqlite_lib} @ADDITIONAL_NETWORK_LIBS@ BUILT_SOURCES = derivations-ast.cc derivations-ast.hh EXTRA_DIST = derivations-ast.def derivations-ast.cc AM_CXXFLAGS = -Wall \ - -I$(srcdir)/.. ${aterm_include} -I$(srcdir)/../libutil + -I$(srcdir)/.. ${aterm_include} ${sqlite_include} -I$(srcdir)/../libutil local-store.lo: schema.sql.hh |