mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=1374
This commit is contained in:
parent
27084dbad4
commit
5ba569eeba
|
@ -563,6 +563,9 @@ dist-hook:
|
||||||
rm -rf `find $(distdir) -name CVS -prune`
|
rm -rf `find $(distdir) -name CVS -prune`
|
||||||
rm -rf `find $(distdir) -name .backup -prune -o -name *~`
|
rm -rf `find $(distdir) -name .backup -prune -o -name *~`
|
||||||
cd $(distdir)/win_build && perl -pi.bak -e 'tr /\r//d' boinc.dsw *.dsp
|
cd $(distdir)/win_build && perl -pi.bak -e 'tr /\r//d' boinc.dsw *.dsp
|
||||||
|
|
||||||
|
client-bin:
|
||||||
|
cd client && make client-bin client-bin-gz
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
.NOEXPORT:
|
.NOEXPORT:
|
||||||
|
|
|
@ -209,8 +209,9 @@ boinc_client_SOURCES = \
|
||||||
|
|
||||||
|
|
||||||
boinc_client_DEPENDENCIES = $(LIBRSA)
|
boinc_client_DEPENDENCIES = $(LIBRSA)
|
||||||
boinc_client_LDADD = $(RSA_LIBS)
|
|
||||||
boinc_client_CPPFLAGS = -I $(srcdir)/win $(AM_CPPFLAGS)
|
boinc_client_CPPFLAGS = -I $(srcdir)/win $(AM_CPPFLAGS)
|
||||||
|
boinc_client_LDADD = $(RSA_LIBS)
|
||||||
|
boinc_client_LDFLAGS = -static -static-libgcc
|
||||||
|
|
||||||
speed_stats_SOURCES = speed_stats.C
|
speed_stats_SOURCES = speed_stats.C
|
||||||
speed_stats_CFLAGS = -O6 $(AM_CFLAGS)
|
speed_stats_CFLAGS = -O6 $(AM_CFLAGS)
|
||||||
|
@ -256,7 +257,6 @@ am_boinc_client_OBJECTS = boinc_client-main.$(OBJEXT) \
|
||||||
boinc_client-md5.$(OBJEXT) boinc_client-crypt.$(OBJEXT) \
|
boinc_client-md5.$(OBJEXT) boinc_client-crypt.$(OBJEXT) \
|
||||||
boinc_client-util.$(OBJEXT)
|
boinc_client-util.$(OBJEXT)
|
||||||
boinc_client_OBJECTS = $(am_boinc_client_OBJECTS)
|
boinc_client_OBJECTS = $(am_boinc_client_OBJECTS)
|
||||||
boinc_client_LDFLAGS =
|
|
||||||
am_speed_stats_OBJECTS = speed_stats.$(OBJEXT)
|
am_speed_stats_OBJECTS = speed_stats.$(OBJEXT)
|
||||||
speed_stats_OBJECTS = $(am_speed_stats_OBJECTS)
|
speed_stats_OBJECTS = $(am_speed_stats_OBJECTS)
|
||||||
speed_stats_LDADD = $(LDADD)
|
speed_stats_LDADD = $(LDADD)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.ac Revision: 1.13 .
|
# From configure.ac Revision: 1.15 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.57 for BOINC 1.04.
|
# Generated by GNU Autoconf 2.57 for BOINC 1.04.
|
||||||
#
|
#
|
||||||
|
@ -6668,8 +6668,6 @@ echo "checking static flags... ${STATIC_FLAGS:-(none)}"
|
||||||
|
|
||||||
ac_config_headers="$ac_config_headers config.h"
|
ac_config_headers="$ac_config_headers config.h"
|
||||||
|
|
||||||
ac_config_headers="$ac_config_headers client/win/win_config.h"
|
|
||||||
|
|
||||||
|
|
||||||
cat >confcache <<\_ACEOF
|
cat >confcache <<\_ACEOF
|
||||||
# This file is a shell script that caches the results of configure
|
# This file is a shell script that caches the results of configure
|
||||||
|
@ -7248,7 +7246,6 @@ do
|
||||||
"Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
"Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
||||||
"depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
|
"depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
|
||||||
"config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
|
"config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
|
||||||
"client/win/win_config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS client/win/win_config.h" ;;
|
|
||||||
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
||||||
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
||||||
{ (exit 1); exit 1; }; };;
|
{ (exit 1); exit 1; }; };;
|
||||||
|
|
Loading…
Reference in New Issue