From 76306885784b84918bef25a33c52f7041e9280e4 Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Fri, 20 Jun 2003 21:10:50 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=1560 --- checkin_notes | 18 ++++++++++++++++++ doc/build.txt | 10 ++++------ 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/checkin_notes b/checkin_notes index fffda23f6d..44942b41ed 100755 --- a/checkin_notes +++ b/checkin_notes @@ -4912,3 +4912,21 @@ David June 20 2003 db.inc html_ops/ db.inc + +Karl 2003/06/20 + - make client build by default use static libraries + + client/ + Makefile.am + doc/ + build.txt + +Karl 2003/06/20 + - improve readability of shmem error message + + sched/ + main.C + lib/ + shmem.C + test/ + boinc.py diff --git a/doc/build.txt b/doc/build.txt index aa09a32bcf..ad2449d265 100755 --- a/doc/build.txt +++ b/doc/build.txt @@ -281,15 +281,13 @@ Building the Installer ------------------------------------------------------------------------- Build UNIX -Default (shared libraries) client: +Building everything (scheduling server, test files, client): -1 ./configure && make - -Static client: - -1 ./configure CFLAGS=-static CXXFLAGS=-static && cd client && make + ./configure && make +Building client only: + ./configure && cd client && make -------------------------------------------------------------------------