diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-03-13T13·39+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-03-15T15·48+0100 |
commit | 73d7a51ee6942f681db468dc8e3c631b4d3daa4e (patch) | |
tree | 100382e6e3c9c19ef86b2e8be08a1aeea5461ac4 | |
parent | 532d73d5d86c3d25d08a8d771a189708dac323e2 (diff) |
Remove dependency on "curl" binary
-rw-r--r-- | Makefile.config.in | 1 | ||||
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | src/nix-store/local.mk | 2 |
3 files changed, 0 insertions, 4 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 15e94380477e..d4953b521c48 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -14,7 +14,6 @@ LIBLZMA_LIBS = @LIBLZMA_LIBS@ SQLITE3_LIBS = @SQLITE3_LIBS@ bash = @bash@ bindir = @bindir@ -curl = @curl@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ diff --git a/configure.ac b/configure.ac index 46b0ac0651bb..34dcd6b2a7dc 100644 --- a/configure.ac +++ b/configure.ac @@ -114,7 +114,6 @@ if test -z "$$1"; then fi ]) -NEED_PROG(curl, curl) NEED_PROG(bash, bash) NEED_PROG(patch, patch) AC_PATH_PROG(xmllint, xmllint, false) diff --git a/src/nix-store/local.mk b/src/nix-store/local.mk index 84ff15b241f3..ade0b233adf3 100644 --- a/src/nix-store/local.mk +++ b/src/nix-store/local.mk @@ -7,5 +7,3 @@ nix-store_SOURCES := $(wildcard $(d)/*.cc) nix-store_LIBS = libmain libstore libutil libformat nix-store_LDFLAGS = -lbz2 -pthread $(SODIUM_LIBS) - -nix-store_CXXFLAGS = -DCURL=\"$(curl)\" |