Ignore:
Timestamp:
Dec 28, 2008, 3:10:38 AM (17 years ago)
Author:
bird
Message:

kmk: Added $(length ), $(length-var ), $(insert ), $(pos ), $(lastpos ), $(substr ) and $(translate ). (all untested)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/variable.c

    r2029 r2151  
    12051205  && (defined (CONFIG_WITH_MAKE_STATS) || defined (CONFIG_WITH_MINIMAL_STATS)) \
    12061206  && defined (CONFIG_WITH_COMMANDS_FUNC) \
     1207  && defined (CONFIG_WITH_PRINTF) \
     1208  && defined (CONFIG_WITH_STRING_FUNCTIONS) \
    12071209  && defined (KMK_HELPERS)
    12081210  (void) define_variable ("KMK_FEATURES", 12,
     
    12271229                          " make-stats"
    12281230                          " commands"
     1231                          " printf"
     1232                          " length insert pos lastpos substr translate"
    12291233                          " kb-src-tool kb-obj-base kb-obj-suff kb-src-prop kb-src-one kb-exp-tmpl "
    12301234                          , o_default, 0);
     
    12891293  strcat (buf, " commands");
    12901294#  endif
     1295#  if defined (CONFIG_WITH_PRINTF)
     1296  strcat (buf, " printf");
     1297#  endif
     1298#  if defined (CONFIG_WITH_STRING_FUNCTIONS)
     1299  strcat (buf, " length insert pos lastpos substr translate");
     1300#  endif
    12911301#  if defined (KMK_HELPERS)
    12921302  strcat (buf, " kb-src-tool kb-obj-base kb-obj-suff kb-src-prop kb-src-one kb-exp-tmpl");
Note: See TracChangeset for help on using the changeset viewer.