*** empty log message ***

svn path=/trunk/boinc/; revision=6674
This commit is contained in:
Rom Walton 2005-07-18 23:35:30 +00:00
parent 98e126e16b
commit 94d836f85e
2 changed files with 12 additions and 1 deletions

View File

@ -9238,3 +9238,9 @@ Rom 17 July 2005
win_build/ win_build/
*.vcproj *.vcproj
*.sln *.sln
Rom 18 July 2005
- Enable clipboard functionality on Linux by default.
/
configure.ac

View File

@ -488,7 +488,12 @@ AC_SUBST(CLIENTLIBS)
## -------------------- ## --------------------
## some more tweaking to turn non-standard libs into statically linked ones ## some more tweaking to turn non-standard libs into statically linked ones
CLIENTGUIFLAGS="-DNOCLIPBOARD -DNOTASKBAR" CLIENTGUIFLAGS="-DNOTASKBAR"
case ${target} in
*-solaris*) CLIENTGUIFLAGS="${CLIENTGUIFLAGS} -DNOCLIPBOARD"
;;
esac
if test "${enable_debug}" = yes; then if test "${enable_debug}" = yes; then
CLIENTGUIFLAGS="${CLIENTGUIFLAGS} -D_DEBUG -DDEBUG" CLIENTGUIFLAGS="${CLIENTGUIFLAGS} -D_DEBUG -DDEBUG"