Hi Boinc developers,

Problem1:
Patch following

Hint: you can apply the commit with
$ git am 0001-Fix-build-break-on-Linux.patch

$ git push


>From f9c559bcfa84e6b7eb86c477813d791ccf37779a Mon Sep 17 00:00:00 2001
From: Gianfranco Costamagna <[email protected]>
Date: Wed, 26 Nov 2014 10:33:13 +0100
Subject: [PATCH] Fix build break on Linux

---
clientgui/Makefile.am | 1 +
1 file changed, 1 insertion(+)

diff --git a/clientgui/Makefile.am b/clientgui/Makefile.am
index 3fe999d..5178798 100644
--- a/clientgui/Makefile.am
+++ b/clientgui/Makefile.am
@@ -50,6 +50,7 @@ boincmgr_SOURCES = \
DlgDiagnosticLogFlags.cpp \
DlgEventLog.cpp \
DlgEventLogListCtrl.cpp \
+    DlgExclusiveApps.cpp \
DlgExitMessage.cpp \
DlgGenericMessage.cpp \
DlgItemProperties.cpp \
-- 
1.9.1

Problem2:
you look in server code for httpd, but in linux (debian?) the pid is called 
apache2, the following patch should fix the issue
Description: Adjusting Apache PID file location
--- a/html/user/server_status.php
+++ b/html/user/server_status.php
@@ -325,7 +325,8 @@
// Check for httpd.pid file of upload/download server.
//
$uldl_running = remote_process_exists($uldl_host, $uldl_prog);
-show_status($uldl_host, tra("upload/download server"), $uldl_running?1:0);
+$uldl_running_apache = remote_process_exists($uldl_host, "apache2");
+show_status($uldl_host, tra("upload/download server"), ($uldl_running || 
$uldl_running_apache)?1:0);

$sched_running = !file_exists("../../stop_sched");
show_status($sched_host, tra("scheduler"), $sched_running);



(for sure is not the best patch, but should be working)

David what is your opinion?

thanks,

G.
From f9c559bcfa84e6b7eb86c477813d791ccf37779a Mon Sep 17 00:00:00 2001
From: Gianfranco Costamagna <[email protected]>
Date: Wed, 26 Nov 2014 10:33:13 +0100
Subject: [PATCH] Fix build break on Linux

---
 clientgui/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

diff --git a/clientgui/Makefile.am b/clientgui/Makefile.am
index 3fe999d..5178798 100644
--- a/clientgui/Makefile.am
+++ b/clientgui/Makefile.am
@@ -50,6 +50,7 @@ boincmgr_SOURCES = \
     DlgDiagnosticLogFlags.cpp \
     DlgEventLog.cpp \
     DlgEventLogListCtrl.cpp \
+    DlgExclusiveApps.cpp \
     DlgExitMessage.cpp \
     DlgGenericMessage.cpp \
     DlgItemProperties.cpp \
-- 
1.9.1

_______________________________________________
boinc_dev mailing list
[email protected]
http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev
To unsubscribe, visit the above URL and
(near bottom of page) enter your email address.

Reply via email to