summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2015-10-21 00:34:54 +0300
committerVladimír Čunát <vcunat@gmail.com>2015-10-28 10:23:02 +0100
commit7a68c25baf2f4dfe64008bf3aae470429ca06055 (patch)
treebbdbd462aa934cc29a9b8bc2290dfcbcec94fdd0 /pkgs
parentb81515c2d422868de745ebb8989b67a243e674a4 (diff)
downloadnixpkgs-7a68c25baf2f4dfe64008bf3aae470429ca06055.tar
nixpkgs-7a68c25baf2f4dfe64008bf3aae470429ca06055.tar.gz
nixpkgs-7a68c25baf2f4dfe64008bf3aae470429ca06055.tar.bz2
nixpkgs-7a68c25baf2f4dfe64008bf3aae470429ca06055.tar.lz
nixpkgs-7a68c25baf2f4dfe64008bf3aae470429ca06055.tar.xz
nixpkgs-7a68c25baf2f4dfe64008bf3aae470429ca06055.tar.zst
nixpkgs-7a68c25baf2f4dfe64008bf3aae470429ca06055.zip
apacheHttpd_2_2: Remove obsolete cruft
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/http/apache-httpd/2.2.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/servers/http/apache-httpd/2.2.nix b/pkgs/servers/http/apache-httpd/2.2.nix
index 9974e901a02..88e1475342c 100644
--- a/pkgs/servers/http/apache-httpd/2.2.nix
+++ b/pkgs/servers/http/apache-httpd/2.2.nix
@@ -26,11 +26,6 @@ stdenv.mkDerivation rec {
   buildInputs = [ pkgconfig perl apr aprutil pcre zlib ] ++
     stdenv.lib.optional sslSupport openssl;
 
-  # An apr-util header file includes an apr header file
-  # through #include "" (quotes)
-  # passing simply CFLAGS did not help, then I go by NIX_CFLAGS_COMPILE
-  NIX_CFLAGS_COMPILE = "-iquote ${apr}/include/apr-1";
-
   # Required for ‘pthread_cancel’.
   NIX_LDFLAGS = (if stdenv.isDarwin then "" else "-lgcc_s");