mirror of https://github.com/BOINC/boinc.git
removed spurious dependencies in tool to avoid pointless re-linking
svn path=/trunk/boinc/; revision=8346
This commit is contained in:
parent
43e4671f97
commit
df4bc39cad
|
@ -9,7 +9,7 @@ ACLOCAL_AMFLAGS = -I m4
|
|||
API_SUBDIRS = api lib zip
|
||||
|
||||
if ENABLE_SERVER
|
||||
SERVER_SUBDIRS = db tools test py sched apps
|
||||
SERVER_SUBDIRS = db test py sched apps tools
|
||||
endif
|
||||
|
||||
if ENABLE_CLIENT
|
||||
|
@ -37,7 +37,3 @@ EXTRA_DIST = \
|
|||
dist-hook:
|
||||
rm -rf `find $(distdir) -name .backup -prune -o -name '*~' -o -name CVS`
|
||||
# cd $(distdir) && ./_autosetup
|
||||
|
||||
# convenience target
|
||||
client-bin:
|
||||
cd client && make client-bin client-bin-gz
|
||||
|
|
|
@ -12331,24 +12331,24 @@ Rom 28 Sept 2005 (staging)
|
|||
- Tag for 5.1.5 release, all platforms
|
||||
boinc_core_release_5_1_5
|
||||
|
||||
Reinhard 29 Sept 2005
|
||||
- Install header-files necessary for building workunit-generator externally linked to BOINC.
|
||||
Reinhard 29 Sept 2005
|
||||
- Install header-files necessary for building workunit-generator externally linked to BOINC.
|
||||
|
||||
db/
|
||||
Makefile.am
|
||||
db_base.h
|
||||
lib/
|
||||
Makefile.am
|
||||
sched/
|
||||
Makefile.am
|
||||
db/
|
||||
Makefile.am
|
||||
db_base.h
|
||||
lib/
|
||||
Makefile.am
|
||||
sched/
|
||||
Makefile.am
|
||||
|
||||
Reinhard 29 Sept 2005
|
||||
- make getsockopt-len check insensitive to user's CPPFLAG-settings,
|
||||
in order to avoid this test failing because of higher warning-levels set in
|
||||
CPPFLAGS (as the test is using -Werror).
|
||||
Reinhard 29 Sept 2005
|
||||
- make getsockopt-len check insensitive to user's CPPFLAG-settings,
|
||||
in order to avoid this test failing because of higher warning-levels set in
|
||||
CPPFLAGS (as the test is using -Werror).
|
||||
|
||||
m4/
|
||||
boinc_getsockopt.m4
|
||||
m4/
|
||||
boinc_getsockopt.m4
|
||||
|
||||
Rom 29 Sept 2005
|
||||
- If somebody clicks the account manager menu item, they should get the
|
||||
|
@ -12366,7 +12366,7 @@ Rom 29 Sept 2005
|
|||
AccountInfoPage.cpp
|
||||
ProjectProcessingPage.cpp
|
||||
|
||||
Reinhard 29 Sept 2005
|
||||
Reinhard 29 Sept 2005
|
||||
- added forgotten Mac-sources 'mac_backtrace.[Ch]' to build
|
||||
|
||||
lib/
|
||||
|
@ -12379,10 +12379,20 @@ David 29 Sept 2005
|
|||
py/Boinc/
|
||||
tools.py
|
||||
|
||||
Reinhard 29 Sept 2005
|
||||
Reinhard 29 Sept 2005
|
||||
- removed redundant configure-switch 'disable-static-linkage'
|
||||
- made '--enable-client-release' work as advertised [default=OFF!!]
|
||||
- make sure that only benchmark-sources have hardcoded -O3 applied to them.
|
||||
- removed spurious dependencies in tool to avoid pointless re-linking
|
||||
|
||||
configure.ac
|
||||
Makefile.am
|
||||
client/
|
||||
Makefile.am
|
||||
m4/
|
||||
sah_check_lib.m4
|
||||
tools/
|
||||
Makefile.am
|
||||
|
||||
Rom 29 Sept 2005
|
||||
- Account not found page should show a finish button instead of a next
|
||||
|
@ -12390,3 +12400,4 @@ Rom 29 Sept 2005
|
|||
|
||||
clientgui/wizards/
|
||||
WizardAttachProject.cpp
|
||||
|
||||
|
|
|
@ -11,23 +11,19 @@ EXTRA_DIST = make_project add xadd update_versions dbcheck_files_exist upgrade
|
|||
create_work_SOURCES = \
|
||||
create_work.C
|
||||
|
||||
create_work_DEPENDENCIES = $(LIBRSA) $(LIBBOINC) $(LIBSCHED)
|
||||
create_work_LDADD = $(SCHED_LIB) $(BOINC_LIB) $(RSA_LIBS) $(MYSQL_LIBS)
|
||||
|
||||
sign_executable_SOURCES = \
|
||||
sign_executable.C
|
||||
|
||||
sign_executable_DEPENDENCIES = $(LIBRSA) $(LIBBOINC)
|
||||
sign_executable_LDADD = $(BOINC_LIB) $(RSA_LIBS) $(MYSQL_LIBS)
|
||||
|
||||
dir_hier_path_SOURCES = \
|
||||
dir_hier_path.C
|
||||
|
||||
dir_hier_path_DEPENDENCIES = $(LIBBOINC) $(LIBSCHED)
|
||||
dir_hier_path_LDADD = $(SCHED_LIB) $(BOINC_LIB)
|
||||
|
||||
dir_hier_move_SOURCES = \
|
||||
dir_hier_move.C
|
||||
|
||||
dir_hier_move_DEPENDENCIES = $(LIBBOINC) $(LIBSCHED)
|
||||
dir_hier_move_LDADD = $(SCHED_LIB) $(BOINC_LIB)
|
||||
|
|
Loading…
Reference in New Issue