* Add ${sqlite_lib} everywhere. Just adding it in `libstore' doesn't
work on x86_64 when sqlite is compiled statically.
This commit is contained in:
		
							parent
							
								
									5954eadf67
								
							
						
					
					
						commit
						fa6a4fcb11
					
				
					 6 changed files with 6 additions and 6 deletions
				
			
		| 
						 | 
					@ -11,7 +11,7 @@ pkginclude_HEADERS = \
 | 
				
			||||||
  worker-protocol.hh
 | 
					  worker-protocol.hh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
libstore_la_LIBADD = ../libutil/libutil.la ../boost/format/libformat.la \
 | 
					libstore_la_LIBADD = ../libutil/libutil.la ../boost/format/libformat.la \
 | 
				
			||||||
  ${sqlite_lib} @ADDITIONAL_NETWORK_LIBS@
 | 
					  @ADDITIONAL_NETWORK_LIBS@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
BUILT_SOURCES = derivations-ast.cc derivations-ast.hh
 | 
					BUILT_SOURCES = derivations-ast.cc derivations-ast.hh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,7 +3,7 @@ bin_PROGRAMS = nix-env
 | 
				
			||||||
nix_env_SOURCES = nix-env.cc profiles.cc profiles.hh help.txt
 | 
					nix_env_SOURCES = nix-env.cc profiles.cc profiles.hh help.txt
 | 
				
			||||||
nix_env_LDADD = ../libmain/libmain.la ../libexpr/libexpr.la \
 | 
					nix_env_LDADD = ../libmain/libmain.la ../libexpr/libexpr.la \
 | 
				
			||||||
 ../libstore/libstore.la ../libutil/libutil.la \
 | 
					 ../libstore/libstore.la ../libutil/libutil.la \
 | 
				
			||||||
 ../boost/format/libformat.la ${aterm_lib} @ADDITIONAL_NETWORK_LIBS@
 | 
					 ../boost/format/libformat.la ${aterm_lib} ${sqlite_lib} @ADDITIONAL_NETWORK_LIBS@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
nix-env.o: help.txt.hh
 | 
					nix-env.o: help.txt.hh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ bin_PROGRAMS = nix-hash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
nix_hash_SOURCES = nix-hash.cc help.txt
 | 
					nix_hash_SOURCES = nix-hash.cc help.txt
 | 
				
			||||||
nix_hash_LDADD = ../libmain/libmain.la ../libstore/libstore.la ../libutil/libutil.la \
 | 
					nix_hash_LDADD = ../libmain/libmain.la ../libstore/libstore.la ../libutil/libutil.la \
 | 
				
			||||||
 ../boost/format/libformat.la ${aterm_lib} @ADDITIONAL_NETWORK_LIBS@
 | 
					 ../boost/format/libformat.la ${aterm_lib} ${sqlite_lib} @ADDITIONAL_NETWORK_LIBS@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
nix-hash.o: help.txt.hh
 | 
					nix-hash.o: help.txt.hh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,7 +3,7 @@ bin_PROGRAMS = nix-instantiate
 | 
				
			||||||
nix_instantiate_SOURCES = nix-instantiate.cc help.txt
 | 
					nix_instantiate_SOURCES = nix-instantiate.cc help.txt
 | 
				
			||||||
nix_instantiate_LDADD = ../libmain/libmain.la ../libexpr/libexpr.la \
 | 
					nix_instantiate_LDADD = ../libmain/libmain.la ../libexpr/libexpr.la \
 | 
				
			||||||
 ../libstore/libstore.la ../libutil/libutil.la \
 | 
					 ../libstore/libstore.la ../libutil/libutil.la \
 | 
				
			||||||
 ../boost/format/libformat.la ${aterm_lib} @ADDITIONAL_NETWORK_LIBS@
 | 
					 ../boost/format/libformat.la ${aterm_lib} ${sqlite_lib} @ADDITIONAL_NETWORK_LIBS@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
nix-instantiate.o: help.txt.hh
 | 
					nix-instantiate.o: help.txt.hh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ bin_PROGRAMS = nix-store
 | 
				
			||||||
 | 
					
 | 
				
			||||||
nix_store_SOURCES = nix-store.cc dotgraph.cc dotgraph.hh help.txt
 | 
					nix_store_SOURCES = nix-store.cc dotgraph.cc dotgraph.hh help.txt
 | 
				
			||||||
nix_store_LDADD = ../libmain/libmain.la ../libstore/libstore.la ../libutil/libutil.la \
 | 
					nix_store_LDADD = ../libmain/libmain.la ../libstore/libstore.la ../libutil/libutil.la \
 | 
				
			||||||
 ../boost/format/libformat.la ${aterm_lib} @ADDITIONAL_NETWORK_LIBS@
 | 
					 ../boost/format/libformat.la ${aterm_lib} ${sqlite_lib} @ADDITIONAL_NETWORK_LIBS@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
nix-store.o: help.txt.hh
 | 
					nix-store.o: help.txt.hh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ bin_PROGRAMS = nix-worker
 | 
				
			||||||
 | 
					
 | 
				
			||||||
nix_worker_SOURCES = nix-worker.cc help.txt
 | 
					nix_worker_SOURCES = nix-worker.cc help.txt
 | 
				
			||||||
nix_worker_LDADD = ../libmain/libmain.la ../libstore/libstore.la ../libutil/libutil.la \
 | 
					nix_worker_LDADD = ../libmain/libmain.la ../libstore/libstore.la ../libutil/libutil.la \
 | 
				
			||||||
 ../boost/format/libformat.la ${aterm_lib} @ADDITIONAL_NETWORK_LIBS@
 | 
					 ../boost/format/libformat.la ${aterm_lib} ${sqlite_lib} @ADDITIONAL_NETWORK_LIBS@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
nix-worker.o: help.txt.hh
 | 
					nix-worker.o: help.txt.hh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue