Changes in libcfa/configure [3fcbdca1:14347ac]
- File:
-
- 1 edited
-
libcfa/configure (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/configure
r3fcbdca1 r14347ac 707 707 CONFIG_CFLAGS 708 708 ARCH_FLAGS 709 PRELUDEFLAG 710 CFADIR_HASH 711 LOCAL_CFACC 709 712 CFACPP 710 713 CFACC 714 ENABLE_DISTCC_FALSE 715 ENABLE_DISTCC_TRUE 711 716 CFA_VERSION 712 717 DRIVER_DIR … … 783 788 enable_option_checking 784 789 enable_silent_rules 790 enable_distcc 785 791 with_cfa_name 786 792 enable_shared … … 1445 1451 --enable-silent-rules less verbose build output (undo: "make V=1") 1446 1452 --disable-silent-rules verbose build output (undo: "make V=0") 1453 --enable-distcc whether or not to enable distributed compilation 1447 1454 --enable-shared[=PKGS] build shared libraries [default=yes] 1448 1455 --enable-static[=PKGS] build static libraries [default=yes] … … 2941 2948 2942 2949 2943 CFACC=${DRIVER_DIR}cfa 2950 # Check whether --enable-distcc was given. 2951 if test "${enable_distcc+set}" = set; then : 2952 enableval=$enable_distcc; enable_distcc=$enableval 2953 else 2954 enable_distcc=no 2955 fi 2956 2957 2958 echo -n "checking for distributated build... " 2959 if test x$enable_distcc = xno; then 2960 CFACC=${DRIVER_DIR}cfa 2961 PRELUDEFLAG='-in-tree' 2962 echo "no" 2963 else 2964 path=$(readlink -f .) 2965 CFADIR_HASH=$(openssl dgst -sha256 <<< $path) 2966 CFADIR_HASH="${CFADIR_HASH: -10}" 2967 CFACC="distcc ~/.cfadistcc/${CFADIR_HASH}/cfa" 2968 PRELUDEFLAG='-dist-tree' 2969 echo "yes (hash=${CFADIR_HASH})" 2970 fi 2944 2971 CFACPP=${DRIVER_DIR}cfa-cpp 2972 LOCAL_CFACC=${DRIVER_DIR}cfa 2973 2974 if test x$enable_distcc = xyes; then 2975 ENABLE_DISTCC_TRUE= 2976 ENABLE_DISTCC_FALSE='#' 2977 else 2978 ENABLE_DISTCC_TRUE='#' 2979 ENABLE_DISTCC_FALSE= 2980 fi 2981 2982 2983 2984 2985 2945 2986 2946 2987 … … 16982 17023 fi 16983 17024 17025 if test -z "${ENABLE_DISTCC_TRUE}" && test -z "${ENABLE_DISTCC_FALSE}"; then 17026 as_fn_error $? "conditional \"ENABLE_DISTCC\" was never defined. 17027 Usually this means the macro was only invoked conditionally." "$LINENO" 5 17028 fi 16984 17029 if test -z "${BUILDLIB_TRUE}" && test -z "${BUILDLIB_FALSE}"; then 16985 17030 as_fn_error $? "conditional \"BUILDLIB\" was never defined.
Note:
See TracChangeset
for help on using the changeset viewer.