summary refs log tree commit diff
path: root/pkgs/development/libraries/pcre
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-10-05 13:49:54 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-10-05 13:49:54 +0000
commitd845bf6b8cc21fe67642c1db5cbe59ea835ead0f (patch)
tree144ca3c771b052f9e5db226484f0a25ad9d8c724 /pkgs/development/libraries/pcre
parentdd6e852f3e1afcaf44c456163b1f8cb7ff496d80 (diff)
downloadnixpkgs-d845bf6b8cc21fe67642c1db5cbe59ea835ead0f.tar
nixpkgs-d845bf6b8cc21fe67642c1db5cbe59ea835ead0f.tar.gz
nixpkgs-d845bf6b8cc21fe67642c1db5cbe59ea835ead0f.tar.bz2
nixpkgs-d845bf6b8cc21fe67642c1db5cbe59ea835ead0f.tar.lz
nixpkgs-d845bf6b8cc21fe67642c1db5cbe59ea835ead0f.tar.xz
nixpkgs-d845bf6b8cc21fe67642c1db5cbe59ea835ead0f.tar.zst
nixpkgs-d845bf6b8cc21fe67642c1db5cbe59ea835ead0f.zip
* Revert last two commits, they should be in the stdenv-branch.
svn path=/nixpkgs/trunk/; revision=24075
Diffstat (limited to 'pkgs/development/libraries/pcre')
-rw-r--r--pkgs/development/libraries/pcre/default.nix7
1 files changed, 0 insertions, 7 deletions
diff --git a/pkgs/development/libraries/pcre/default.nix b/pkgs/development/libraries/pcre/default.nix
index b30cdb023e2..fba3844bf8e 100644
--- a/pkgs/development/libraries/pcre/default.nix
+++ b/pkgs/development/libraries/pcre/default.nix
@@ -8,18 +8,11 @@ stdenv.mkDerivation {
     sha256 = "1zsqk352mx2zklf9bgpg9d88ckfdssbbbiyslhrycfckw8m3qpvr";
   };
 
-  # The compiler on Darwin crashes with an internal error while building the
-  # C++ interface. Disabling optimizations on that platform remedies the
-  # problem. In case we ever update the Darwin GCC version, the exception for
-  # that platform ought to be removed.
   configureFlags = ''
-    CPPFLAGS=-NDEBUG CFLAGS=-O3 CXXFLAGS=${if stdenv.isDarwin then "-O0" else "-O3"}
     ${if unicodeSupport then "--enable-unicode-properties" else ""}
     ${if !cplusplusSupport then "--disable-cpp" else ""}
   '';
 
-  doCheck = true;
-
   meta = {
     homepage = "http://www.pcre.org/";
     description = "A library for Perl Compatible Regular Expressions";