3
0
Fork 0
forked from mirrors/nixpkgs

* Don't strip everything.

svn path=/nixpkgs/trunk/; revision=2322
This commit is contained in:
Eelco Dolstra 2005-03-02 11:31:49 +00:00
parent 83562f3d1d
commit 6e0861d8af
2 changed files with 21 additions and 0 deletions

View file

@ -23,6 +23,9 @@ stdenv.mkDerivation {
buildInputs = [x11 libXft libXrender zlib libjpeg libpng which];
# Don't strip everything so we can get useful backtraces.
patches = [./strip.patch];
inherit threadSupport xftSupport libXft xrenderSupport libXrender;
inherit mysqlSupport mysql;
inherit (libXft) freetype fontconfig;

View file

@ -0,0 +1,18 @@
diff -rc qt-x11-free-3.3.3-orig/mkspecs/linux-g++/qmake.conf qt-x11-free-3.3.3/mkspecs/linux-g++/qmake.conf
*** qt-x11-free-3.3.3-orig/mkspecs/linux-g++/qmake.conf 2004-08-05 16:42:57.000000000 +0200
--- qt-x11-free-3.3.3/mkspecs/linux-g++/qmake.conf 2005-03-02 12:25:55.000000000 +0100
***************
*** 85,90 ****
QMAKE_DEL_FILE = rm -f
QMAKE_DEL_DIR = rmdir
QMAKE_STRIP = strip
! QMAKE_STRIPFLAGS_LIB += --strip-unneeded
QMAKE_CHK_DIR_EXISTS = test -d
QMAKE_MKDIR = mkdir -p
--- 85,90 ----
QMAKE_DEL_FILE = rm -f
QMAKE_DEL_DIR = rmdir
QMAKE_STRIP = strip
! QMAKE_STRIPFLAGS_LIB += --strip-debug
QMAKE_CHK_DIR_EXISTS = test -d
QMAKE_MKDIR = mkdir -p