Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r9def87a re4745d7a  
    658658CFA_INCDIR
    659659CFA_PREFIX
    660 BUILD_DEBUG_FALSE
    661 BUILD_DEBUG_TRUE
    662 BUILD_RELEASE_FALSE
    663 BUILD_RELEASE_TRUE
    664660CFA_BACKEND_CC
    665661BACKEND_CC
     
    738734enable_maintainer_mode
    739735with_backend_compiler
    740 enable_target_release
    741 enable_target_debug
    742736enable_dependency_tracking
    743737'
     
    13821376  --disable-maintainer-mode  disable make rules and dependencies not useful
    13831377                          (and sometimes confusing) to the casual installer
    1384   --enable-target-release Build and install the release target
    1385   --enable-target-debug   Build and install the debug target
    13861378  --disable-dependency-tracking  speeds up one-time build
    13871379  --enable-dependency-tracking   do not reject slow dependency extractors
     
    31073099_ACEOF
    31083100
    3109 
    3110 
    3111 
    3112 
    3113 # Check whether --enable-target-release was given.
    3114 if test "${enable_target_release+set}" = set; then :
    3115   enableval=$enable_target_release;
    3116 fi
    3117 
    3118 # Check whether --enable-target-debug was given.
    3119 if test "${enable_target_debug+set}" = set; then :
    3120   enableval=$enable_target_debug;
    3121 fi
    3122 
    3123 
    3124 case "$enable_target_release" in
    3125         yes)
    3126                 case "$enable_target_debug" in
    3127                         yes)
    3128                                 build_release="yes"
    3129                                 build_debug="yes"
    3130                                 ;;
    3131                         no)
    3132                                 build_release="yes"
    3133                                 build_debug="no"
    3134                                 ;;
    3135                         *)
    3136                                 build_release="yes"
    3137                                 build_debug="no"
    3138                                 ;;
    3139                 esac
    3140                 ;;
    3141         no)
    3142                 case "$enable_target_debug" in
    3143                         yes)
    3144                                 build_release="no"
    3145                                 build_debug="yes"
    3146                                 ;;
    3147                         no)
    3148                                 as_fn_error $? "Must build target debug or release" "$LINENO" 5
    3149                                 exit 1;
    3150                                 ;;
    3151                         *)
    3152                                 build_release="no"
    3153                                 build_debug="yes"
    3154                                 ;;
    3155                 esac
    3156                 ;;
    3157         *)
    3158                 case "$enable_target_debug" in
    3159                         yes)
    3160                                 build_release="no"
    3161                                 build_debug="yes"
    3162                                 ;;
    3163                         no)
    3164                                 build_release="yes"
    3165                                 build_debug="no"
    3166                                 ;;
    3167                         *)
    3168                                 build_release="yes"
    3169                                 build_debug="yes"
    3170                                 ;;
    3171                 esac
    3172                 ;;
    3173 esac
    3174 
    3175  if test "x$build_release" = "xyes"; then
    3176   BUILD_RELEASE_TRUE=
    3177   BUILD_RELEASE_FALSE='#'
    3178 else
    3179   BUILD_RELEASE_TRUE='#'
    3180   BUILD_RELEASE_FALSE=
    3181 fi
    3182 
    3183  if test "x$build_debug" = "xyes"; then
    3184   BUILD_DEBUG_TRUE=
    3185   BUILD_DEBUG_FALSE='#'
    3186 else
    3187   BUILD_DEBUG_TRUE='#'
    3188   BUILD_DEBUG_FALSE=
    3189 fi
    31903101
    31913102
     
    62966207if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
    62976208  as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined.
    6298 Usually this means the macro was only invoked conditionally." "$LINENO" 5
    6299 fi
    6300 if test -z "${BUILD_RELEASE_TRUE}" && test -z "${BUILD_RELEASE_FALSE}"; then
    6301   as_fn_error $? "conditional \"BUILD_RELEASE\" was never defined.
    6302 Usually this means the macro was only invoked conditionally." "$LINENO" 5
    6303 fi
    6304 if test -z "${BUILD_DEBUG_TRUE}" && test -z "${BUILD_DEBUG_FALSE}"; then
    6305   as_fn_error $? "conditional \"BUILD_DEBUG\" was never defined.
    63066209Usually this means the macro was only invoked conditionally." "$LINENO" 5
    63076210fi
     
    76637566
    76647567
    7665 if test -z "$BUILD_RELEASE_TRUE"; then :
    7666   if test -z "$BUILD_DEBUG_TRUE"; then :
    7667   { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: release & debug" >&5
    7668 $as_echo "$as_me: Building libcfa for target: release & debug" >&6;}
    7669 else
    7670   { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: release" >&5
    7671 $as_echo "$as_me: Building libcfa for target: release" >&6;}
    7672 fi
    7673 else
    7674   { $as_echo "$as_me:${as_lineno-$LINENO}: Building libcfa for target: debug" >&5
    7675 $as_echo "$as_me: Building libcfa for target: debug" >&6;}
    7676 fi
    7677 
    76787568# Final text
    76797569{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Cforall configuraton completed. Type \"make -j 8 install\"." >&5
Note: See TracChangeset for help on using the changeset viewer.