From 00a3442dc100c64866a117c3d0d3215e446bc16d Mon Sep 17 00:00:00 2001 From: Reinhard Prix Date: Thu, 29 Sep 2005 23:37:36 +0000 Subject: [PATCH] - removed redundant configure-switch 'disable-static-linkage' - made '--enable-client-release' work as advertised [default=OFF!!] svn path=/trunk/boinc/; revision=8340 --- configure.ac | 43 ++++++++++++++++++++++++------------------- m4/sah_check_lib.m4 | 11 ----------- 2 files changed, 24 insertions(+), 30 deletions(-) diff --git a/configure.ac b/configure.ac index 2e242c37c2..7e69fcc694 100644 --- a/configure.ac +++ b/configure.ac @@ -29,20 +29,6 @@ AC_ARG_ENABLE(client, [], [enable_client=yes]) -dnl ====================================================================== -dnl some vodoo required for building portable client-binary (client, clientgui) -dnl ====================================================================== -AC_ARG_ENABLE([client-release], AS_HELP_STRING([--enable-client-release], - [Try building a portable "release-candidate" (currently implemented for Linux and Solaris only): \ - this links libstd++ statically. You will probably need gcc-3.0 for - this to produce a portable client-binary. - It is therefore recommended to use CC=gcc-3.0 and CXX=g++-3.0 for this. - (Default = no)]), - [enable_client_release=yes - disable_static_client=no], - [enable_client_release=no - disable_static_client=yes]) - m4_divert_once([HELP_ENABLE], AS_HELP_STRING([], [Default: --enable-server --enable-client: builds both server and client])) @@ -61,6 +47,21 @@ else fi fi + +dnl ====================================================================== +dnl some vodoo required for building portable client-binary (client, clientgui) +dnl ====================================================================== +AC_ARG_ENABLE([client-release], + AS_HELP_STRING([--enable-client-release], + [Build a portable "release-candidate" (currently implemented for Linux and Solaris only): + this links libstd++ statically. You will probably need gcc-3.0 for + this to produce a portable client-binary. + It is therefore recommended to use CC=gcc-3.0 and CXX=g++-3.0 for this. + (Default = no)]), + [enable_client_release=yes;disable_static_linkage=no], + [enable_client_release=no;disable_static_linkage=yes]) + + if test "${enable_debug}" = yes ; then build_state='Debug' else @@ -510,11 +511,7 @@ dnl some more vodoo required for building portable client-binary (client, client dnl ====================================================================== CLIENTLIBS= -if ( test "${disable_static_client}" != yes ) && ( test "${enable_client}" = yes ); then - echo "----------" - echo "NOTE: Building portable client binaries" - echo "----------" -fi + SAH_CHECK_LIB([c],[atexit], [ AC_DEFINE([HAVE_LIBC],[1],[Define to 1 if you have the c library]) CLIENTLIBS="${CLIENTLIBS} ${sah_lib_last}"]) @@ -539,8 +536,16 @@ SAH_CHECK_LIB([pthread],[pthread_join],[ AC_DEFINE([HAVE_LIBPTHREAD],[1],[Define to 1 if you have the pthread library]) CLIENTLIBS="${CLIENTLIBS} ${sah_lib_last}"]) echo DEBUG: CLIENTLIBS=${CLIENTLIBS} >&5 + +if ( test "${disable_static_linkage}" != yes ) && ( test "${enable_client}" = yes ); then + echo "----------" + echo "NOTE: Building portable client binaries" + echo "----------" + SAH_CHECK_LDFLAG([-nodefaultlibs],[CLIENTLIBS="-nodefaultlibs ${CLIENTLIBS}"]) echo DEBUG: CLIENTLIBS=${CLIENTLIBS} >&5 +fi + AC_SUBST(CLIENTLIBS) diff --git a/m4/sah_check_lib.m4 b/m4/sah_check_lib.m4 index cd483461f8..df8532f76f 100644 --- a/m4/sah_check_lib.m4 +++ b/m4/sah_check_lib.m4 @@ -49,17 +49,6 @@ AC_DEFUN([SAH_CHECK_LDFLAG],[ ]) AC_DEFUN([SAH_LINKAGE_FLAGS],[ - AC_ARG_ENABLE(static_client, - AC_HELP_STRING([--disable-static-linkage], - [disable static linking of certain libraries]), - [ - disable_static_linkage=yes - enable_client_release=no - ], - [ - disable_static_linkage=no - enable_client_release=yes - ]) if test "${disable_static_linkage}" = "yes" then ld_static_option=""