Changeset 6d44da1 for libcfa/configure.ac
- Timestamp:
- Sep 25, 2018, 11:35:34 AM (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:
- c6bbcdb
- Parents:
- 341bb80 (diff), 7428ad9 (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.ac
r341bb80 r6d44da1 42 42 CONFIG_CFLAGS="-O0 -g" 43 43 CONFIG_CFAFLAGS="-debug" 44 CONFIG_BUILDLIB="yes" 44 45 ;; 45 46 "nodebug" ) 46 47 CONFIG_CFLAGS="-O2 -s" 47 48 CONFIG_CFAFLAGS="-nodebug" 49 CONFIG_BUILDLIB="yes" 48 50 ;; 49 51 "nolib" ) 50 CONFIG_CFLAGS="" 51 CONFIG_CFAFLAGS="" 52 CONFIG_CFLAGS="-O2 -s" 53 CONFIG_CFAFLAGS="-nodebug" 54 CONFIG_BUILDLIB="no" 52 55 ;; 53 56 esac … … 55 58 AC_SUBST(CONFIG_CFLAGS) 56 59 AC_SUBST(CONFIG_CFAFLAGS) 60 AC_SUBST(CONFIG_BUILDLIB) 61 62 AM_CONDITIONAL([BUILDLIB], [test "x${CONFIG_BUILDLIB}" = "xyes"]) 57 63 58 64 #==============================================================================
Note: See TracChangeset
for help on using the changeset viewer.