Changeset 34a6b2e for libcfa/configure
- Timestamp:
- Sep 25, 2018, 5:33:02 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 9ad5ee1
- Parents:
- 461eed2 (diff), a32346b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/configure
r461eed2 r34a6b2e 623 623 CFA_PREFIX 624 624 CFA_NAME 625 BUILDLIB_FALSE 626 BUILDLIB_TRUE 627 CONFIG_BUILDLIB 625 628 CONFIG_CFAFLAGS 626 629 CONFIG_CFLAGS … … 2531 2534 CONFIG_CFLAGS="-O0 -g" 2532 2535 CONFIG_CFAFLAGS="-debug" 2536 CONFIG_BUILDLIB="yes" 2533 2537 ;; 2534 2538 "nodebug" ) 2535 2539 CONFIG_CFLAGS="-O2 -s" 2536 2540 CONFIG_CFAFLAGS="-nodebug" 2541 CONFIG_BUILDLIB="yes" 2537 2542 ;; 2538 2543 "nolib" ) 2539 CONFIG_CFLAGS="" 2540 CONFIG_CFAFLAGS="" 2544 CONFIG_CFLAGS="-O2 -s" 2545 CONFIG_CFAFLAGS="-nodebug" 2546 CONFIG_BUILDLIB="no" 2541 2547 ;; 2542 2548 esac 2543 2549 2544 2550 2551 2552 2553 2554 if test "x${CONFIG_BUILDLIB}" = "xyes"; then 2555 BUILDLIB_TRUE= 2556 BUILDLIB_FALSE='#' 2557 else 2558 BUILDLIB_TRUE='#' 2559 BUILDLIB_FALSE= 2560 fi 2545 2561 2546 2562 … … 4478 4494 fi 4479 4495 4496 if test -z "${BUILDLIB_TRUE}" && test -z "${BUILDLIB_FALSE}"; then 4497 as_fn_error $? "conditional \"BUILDLIB\" was never defined. 4498 Usually this means the macro was only invoked conditionally." "$LINENO" 5 4499 fi 4480 4500 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then 4481 4501 as_fn_error $? "conditional \"AMDEP\" was never defined.
Note:
See TracChangeset
for help on using the changeset viewer.