mirror of
https://github.com/NixOS/nix
synced 2025-07-07 18:31:49 +02:00
* Removed references to char_traits so that boost/format also works on
GCC 2.95.
This commit is contained in:
parent
d930a9bc5a
commit
1c7d6bf5fc
15 changed files with 222 additions and 239 deletions
|
@ -1,22 +1,24 @@
|
|||
bin_PROGRAMS = nix nix-hash fix
|
||||
check_PROGRAMS = test
|
||||
|
||||
|
||||
AM_CXXFLAGS = -DSYSTEM=\"@host@\" -Wall -I.. -I../externals/inst/include $(CXXFLAGS)
|
||||
AM_LDFLAGS = -L../externals/inst/lib -ldb_cxx -lATerm $(LDFLAGS)
|
||||
LDADD = -L../externals/inst/lib -ldb_cxx -lATerm -L../boost/format -lformat
|
||||
|
||||
nix_SOURCES = nix.cc dotgraph.cc
|
||||
nix_LDADD = libshared.a libnix.a -ldb_cxx -lATerm
|
||||
nix_LDADD = libshared.a libnix.a $(LDADD)
|
||||
|
||||
nix_hash_SOURCES = nix-hash.cc
|
||||
nix_hash_LDADD = libshared.a libnix.a -ldb_cxx -lATerm
|
||||
nix_hash_LDADD = libshared.a libnix.a $(LDADD)
|
||||
|
||||
fix_SOURCES = fix.cc
|
||||
fix_LDADD = libshared.a libnix.a -ldb_cxx -lATerm
|
||||
fix_LDADD = libshared.a libnix.a $(LDADD)
|
||||
|
||||
TESTS = test
|
||||
|
||||
test_SOURCES = test.cc
|
||||
test_LDADD = libshared.a libnix.a -ldb_cxx -lATerm
|
||||
test_LDADD = libshared.a libnix.a $(LDADD)
|
||||
|
||||
|
||||
noinst_LIBRARIES = libnix.a libshared.a
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue