Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    ra8d4b59 rd65f92c  
    663663ac_ct_DUMPBIN
    664664DUMPBIN
    665 LD
    666665FGREP
    667666EGREP
     
    701700LDFLAGS
    702701CXXFLAGS
    703 CXX
    704702CFA_FLAGS
    705703LIBCFA_TARGET_MAKEFILES
     
    723721CFA_INCDIR
    724722CFA_PREFIX
     723HAS_DISTCC
     724LD
     725CXX
     726ENABLE_DISTCC_FALSE
     727ENABLE_DISTCC_TRUE
    725728DOendif
    726729DOifskipcompile
     
    797800enable_silent_rules
    798801with_cfa_name
     802enable_distcc
    799803with_target_hosts
    800804enable_gprofiler
     
    14591463  --enable-silent-rules   less verbose build output (undo: "make V=1")
    14601464  --disable-silent-rules  verbose build output (undo: "make V=0")
     1465  --enable-distcc     whether or not to enable distributed compilation
    14611466  --enable-gprofiler     whether or not to enable gprofiler tools (if available)
    14621467  --enable-demangler     whether or not to build the demangler (executable and library)
     
    31803185
    31813186DOendif='endif'
     3187
     3188
     3189
     3190#==============================================================================
     3191# distcc support
     3192
     3193# Check whether --enable-distcc was given.
     3194if test "${enable_distcc+set}" = set; then :
     3195  enableval=$enable_distcc; enable_distcc=$enableval
     3196else
     3197  enable_distcc=no
     3198fi
     3199
     3200
     3201 if test x$enable_distcc = xyes; then
     3202  ENABLE_DISTCC_TRUE=
     3203  ENABLE_DISTCC_FALSE='#'
     3204else
     3205  ENABLE_DISTCC_TRUE='#'
     3206  ENABLE_DISTCC_FALSE=
     3207fi
     3208
     3209HAS_DISTCC="False"
     3210
     3211if test x$enable_distcc = xyes; then
     3212        CXX="distcc ${CXX}"
     3213        LD="distcc ${LD} -lstdc++"
     3214        HAS_DISTCC="True"
     3215        echo "Enabling distributed builds"
     3216fi
     3217
     3218
    31823219
    31833220
     
    1701717054fi
    1701817055
     17056if test -z "${ENABLE_DISTCC_TRUE}" && test -z "${ENABLE_DISTCC_FALSE}"; then
     17057  as_fn_error $? "conditional \"ENABLE_DISTCC\" was never defined.
     17058Usually this means the macro was only invoked conditionally." "$LINENO" 5
     17059fi
    1701917060if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
    1702017061  as_fn_error $? "conditional \"AMDEP\" was never defined.
Note: See TracChangeset for help on using the changeset viewer.