Changes in configure [a8d4b59:d65f92c]
Legend:
- Unmodified
- Added
- Removed
-
configure
ra8d4b59 rd65f92c 663 663 ac_ct_DUMPBIN 664 664 DUMPBIN 665 LD666 665 FGREP 667 666 EGREP … … 701 700 LDFLAGS 702 701 CXXFLAGS 703 CXX704 702 CFA_FLAGS 705 703 LIBCFA_TARGET_MAKEFILES … … 723 721 CFA_INCDIR 724 722 CFA_PREFIX 723 HAS_DISTCC 724 LD 725 CXX 726 ENABLE_DISTCC_FALSE 727 ENABLE_DISTCC_TRUE 725 728 DOendif 726 729 DOifskipcompile … … 797 800 enable_silent_rules 798 801 with_cfa_name 802 enable_distcc 799 803 with_target_hosts 800 804 enable_gprofiler … … 1459 1463 --enable-silent-rules less verbose build output (undo: "make V=1") 1460 1464 --disable-silent-rules verbose build output (undo: "make V=0") 1465 --enable-distcc whether or not to enable distributed compilation 1461 1466 --enable-gprofiler whether or not to enable gprofiler tools (if available) 1462 1467 --enable-demangler whether or not to build the demangler (executable and library) … … 3180 3185 3181 3186 DOendif='endif' 3187 3188 3189 3190 #============================================================================== 3191 # distcc support 3192 3193 # Check whether --enable-distcc was given. 3194 if test "${enable_distcc+set}" = set; then : 3195 enableval=$enable_distcc; enable_distcc=$enableval 3196 else 3197 enable_distcc=no 3198 fi 3199 3200 3201 if test x$enable_distcc = xyes; then 3202 ENABLE_DISTCC_TRUE= 3203 ENABLE_DISTCC_FALSE='#' 3204 else 3205 ENABLE_DISTCC_TRUE='#' 3206 ENABLE_DISTCC_FALSE= 3207 fi 3208 3209 HAS_DISTCC="False" 3210 3211 if test x$enable_distcc = xyes; then 3212 CXX="distcc ${CXX}" 3213 LD="distcc ${LD} -lstdc++" 3214 HAS_DISTCC="True" 3215 echo "Enabling distributed builds" 3216 fi 3217 3218 3182 3219 3183 3220 … … 17017 17054 fi 17018 17055 17056 if test -z "${ENABLE_DISTCC_TRUE}" && test -z "${ENABLE_DISTCC_FALSE}"; then 17057 as_fn_error $? "conditional \"ENABLE_DISTCC\" was never defined. 17058 Usually this means the macro was only invoked conditionally." "$LINENO" 5 17059 fi 17019 17060 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then 17020 17061 as_fn_error $? "conditional \"AMDEP\" was never defined.
Note:
See TracChangeset
for help on using the changeset viewer.