summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2004-11-14 12:24:23 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2004-11-14 12:24:23 +0000
commit70e4f66a5ac2e3ffb51cc52aaac0efc7d3c3f0cd (patch)
tree532e78d9011bfcc8a5c1abd1f6da7154a7da4d4d
parent6e7849e362617c72451626d31755be5c4cfdc5ad (diff)
* Remove fixed bugs.
svn path=/nixpkgs/trunk/; revision=1765
-rw-r--r--pkgs/BUGS29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/BUGS b/pkgs/BUGS
index 10ebea67f8004..eb158b2bb5e2b 100644
--- a/pkgs/BUGS
+++ b/pkgs/BUGS
@@ -34,33 +34,4 @@ include/X11/IntrinsicP.h:202:25: X11/ObjectP.h: No such file or directory
 (moved to include/X11; should edit include/Makefile.am)
 
 
-* Doesn't parse:
-
-{stdenv, fetchurl /* pkgconfig, libX11 */ }:
-
-stdenv.mkDerivation {
-  name = "libXi-6.0.1";
-  src = fetchurl {
-    url = http://freedesktop.org/~xlibs/release/libXi-6.0.1.tar.bz2;
-    md5 = "7e935a42428d63a387b3c048be0f2756";
-  };
-/*  buildInputs = [pkgconfig];
-  propagatedBuildInputs = [libX11]; */
-}
-
-
-
 * Add "exit 0" at the end of configure of rte package.
-
-
-* Starting at gcc 3.4, all C programs incur a retained dependency on
-  gcc through the rpath stored in the executable, even though the
-  executable doesn't use against any library in gcc.  The reason is
-  that the gcc passes a `-lgcc_s' switch to the linker.  Solution:
-  patch the linker so that rpaths are only added for libraries that we
-  actually use.
-
-
-* Perl has retained dependencies on gcc, binutils, coreutils, sed.
-
-