about summary refs log tree commit diff
path: root/pkgs/applications/networking/pjsip
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-01-19 21:16:40 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-01-19 21:16:40 +0000
commit954561a02d0c939c0469753b8cb7b15f1b825e73 (patch)
tree18cbf7da14b23071b3594f9b021e8057ef518780 /pkgs/applications/networking/pjsip
parent45f6a2587f3d58b24f8865d32012298a6a730ab9 (diff)
pjsua needs the libgcc
svn path=/nixpkgs/trunk/; revision=25633
Diffstat (limited to 'pkgs/applications/networking/pjsip')
-rw-r--r--pkgs/applications/networking/pjsip/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/networking/pjsip/default.nix b/pkgs/applications/networking/pjsip/default.nix
index e12edf8337b97..14bc1ead49b28 100644
--- a/pkgs/applications/networking/pjsip/default.nix
+++ b/pkgs/applications/networking/pjsip/default.nix
@@ -17,6 +17,9 @@ stdenv.mkDerivation rec {
     cp pjsip-apps/bin/samples/*/* $out/share/${name}/samples
   '';
 
+  # We need the libgcc_s.so.1 loadable (for pthread_cancel to work)
+  dontPatchELF = true;
+
   meta = {
     description = "SIP stack and media stack for presence, im, and multimedia communication";
     homepage = http://pjsip.org/;