Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/configure.ac

    r14347ac r3fcbdca1  
    2727AC_ARG_VAR(CFA_VERSION, [The long version of cfa])
    2828
    29 AC_ARG_ENABLE(distcc,
    30         [  --enable-distcc     whether or not to enable distributed compilation],
    31         enable_distcc=$enableval, enable_distcc=no)
    32 
    33 echo -n "checking for distributated build... "
    34 if test x$enable_distcc = xno; then
    35         CFACC=${DRIVER_DIR}cfa
    36         PRELUDEFLAG='-in-tree'
    37         echo "no"
    38 else
    39         path=$(readlink -f .)
    40         CFADIR_HASH=$(openssl dgst -sha256 <<< $path)
    41         CFADIR_HASH="${CFADIR_HASH: -10}"
    42         CFACC="distcc ~/.cfadistcc/${CFADIR_HASH}/cfa"
    43         PRELUDEFLAG='-dist-tree'
    44         echo "yes (hash=${CFADIR_HASH})"
    45 fi
     29CFACC=${DRIVER_DIR}cfa
    4630CFACPP=${DRIVER_DIR}cfa-cpp
    47 LOCAL_CFACC=${DRIVER_DIR}cfa
    48 
    49 AM_CONDITIONAL([ENABLE_DISTCC], [test x$enable_distcc = xyes])
    50 
    5131AC_SUBST(CFACC)
    5232AC_SUBST(CFACPP)
    53 AC_SUBST(LOCAL_CFACC)
    54 AC_SUBST(CFADIR_HASH)
    5533AC_SUBST(CFA_VERSION)
    56 AC_SUBST(PRELUDEFLAG)
    5734
    5835#==============================================================================
Note: See TracChangeset for help on using the changeset viewer.