Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/configure

    rc8c0c7c5 r3fcbdca1  
    707707CONFIG_CFLAGS
    708708ARCH_FLAGS
    709 CFADIR_HASH
    710 LOCAL_CC1
    711 LOCAL_CFACC
    712709CFACPP
    713710CFACC
    714 ENABLE_DISTCC_FALSE
    715 ENABLE_DISTCC_TRUE
    716711CFA_VERSION
    717712DRIVER_DIR
     
    788783enable_option_checking
    789784enable_silent_rules
    790 enable_distcc
    791785with_cfa_name
    792786enable_shared
     
    14511445  --enable-silent-rules   less verbose build output (undo: "make V=1")
    14521446  --disable-silent-rules  verbose build output (undo: "make V=0")
    1453   --enable-distcc     whether or not to enable distributed compilation
    14541447  --enable-shared[=PKGS]  build shared libraries [default=yes]
    14551448  --enable-static[=PKGS]  build static libraries [default=yes]
     
    29482941
    29492942
    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         echo "no"
    2962 else
    2963         tools="$(readlink -m $ac_confdir/)/../tools/build"
    2964         config=$(basename $(readlink -f .))
    2965         echo "$tools/distcc_hash $config"
    2966         CFADIR_HASH=$($tools/distcc_hash $config)
    2967         CFACC="distcc ~/.cfadistcc/${CFADIR_HASH}/cfa"
    2968         echo "yes (hash=${CFADIR_HASH})"
    2969 fi
     2943CFACC=${DRIVER_DIR}cfa
    29702944CFACPP=${DRIVER_DIR}cfa-cpp
    2971 LOCAL_CFACC=${DRIVER_DIR}cfa
    2972 LOCAL_CC1=${DRIVER_DIR}cc1
    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 
    29862945
    29872946
     
    30002959case $CONFIGURATION in
    30012960        "debug"   )
    3002                 CONFIG_CFLAGS="-O0 -g"
     2961                CONFIG_CFLAGS="-Og -g"
    30032962                CONFIG_CFAFLAGS="-debug"
    30042963                CONFIG_BUILDLIB="yes"
     
    1702316982fi
    1702416983
    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
    1702916984if test -z "${BUILDLIB_TRUE}" && test -z "${BUILDLIB_FALSE}"; then
    1703016985  as_fn_error $? "conditional \"BUILDLIB\" was never defined.
Note: See TracChangeset for help on using the changeset viewer.