You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2012/10/22 08:44:58 UTC

svn commit: r1400775 - /commons/proper/daemon/branches/1.0.x/src/native/unix/native/jsvc-unix.c

Author: mturk
Date: Mon Oct 22 06:44:57 2012
New Revision: 1400775

URL: http://svn.apache.org/viewvc?rev=1400775&view=rev
Log:
Fix DAEMON-246 by failing over to LD_LIBRARY_PATH

Modified:
    commons/proper/daemon/branches/1.0.x/src/native/unix/native/jsvc-unix.c

Modified: commons/proper/daemon/branches/1.0.x/src/native/unix/native/jsvc-unix.c
URL: http://svn.apache.org/viewvc/commons/proper/daemon/branches/1.0.x/src/native/unix/native/jsvc-unix.c?rev=1400775&r1=1400774&r2=1400775&view=diff
==============================================================================
--- commons/proper/daemon/branches/1.0.x/src/native/unix/native/jsvc-unix.c (original)
+++ commons/proper/daemon/branches/1.0.x/src/native/unix/native/jsvc-unix.c Mon Oct 22 06:44:57 2012
@@ -253,6 +253,9 @@ static const char *libcap_locs[] = {
     "/usr/lib/libcap.so.2",
     "/usr/lib/libcap.so.1",
     "/usr/lib/libcap.so",
+    "libcap.so.2",
+    "libcap.so.1",
+    "libcap.so",
     NULL
 };