diff --git a/checkin_notes b/checkin_notes index 6c76a1c61d..f0003ffb80 100755 --- a/checkin_notes +++ b/checkin_notes @@ -13882,3 +13882,9 @@ Rom 29 Dec 2006 clientgui/ sg_DlgMessages.cpp, .h sg_DlgPreferences.cpp, .h + +David 30 Dec 2006 + - Manager: forgot to add new files to Makefile.am + + clientgui/ + Makefile.am diff --git a/clientgui/Makefile.am b/clientgui/Makefile.am index e6c1efc657..85fc4fdd9e 100644 --- a/clientgui/Makefile.am +++ b/clientgui/Makefile.am @@ -49,7 +49,9 @@ boinc_gui_SOURCES = \ ViewResources.cpp \ ViewStatistics.cpp \ ViewTransfers.cpp \ + ViewTransfersGrid.cpp \ ViewWork.cpp \ + ViewWorkGrid.cpp \ AccountInfoPage.cpp \ AccountKeyPage.cpp \ AccountManagerInfoPage.cpp \ diff --git a/sched/start b/sched/start index 30dc74e6c4..d0aae13be8 100755 --- a/sched/start +++ b/sched/start @@ -295,7 +295,7 @@ def lock_file(filename): file = open(filename,'w') locks.append(file) try: - return fcntl.flock(file.fileno(), fcntl.LOCK_EX|fcntl.LOCK_NB) + return fcntl.lockf(file.fileno(), fcntl.LOCK_EX|fcntl.LOCK_NB) except IOError: return -1