Changeset 1715


Ignore:
Timestamp:
Sep 3, 2008, 1:05:55 AM (17 years ago)
Author:
bird
Message:

kmk: Started hacking on some useable if conditionals.

Location:
trunk/src/kmk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/kmk/Makefile.kmk

    r1707 r1715  
    158158        CONFIG_WITH_NANOTS \
    159159        CONFIG_WITH_SET_CONDITIONALS \
     160        CONFIG_WITH_IF_CONDITIONALS \
    160161        CONFIG_WITH_DATE \
    161162        CONFIG_WITH_FILE_SIZE \
     
    176177        main.c \
    177178        read.c \
     179        ifcond.c \
    178180        hash.c \
    179181        strcache.c \
  • TabularUnified trunk/src/kmk/make.h

    r1701 r1715  
    728728#endif
    729729
     730#ifdef CONFIG_WITH_IF_CONDITIONALS
     731extern int ifcond_eval(char *line, const struct floc *flocp);
     732#endif
     733
  • TabularUnified trunk/src/kmk/read.c

    r1701 r1715  
    20042004{
    20052005  char *cmdname;
     2006  enum { c_ifdef, c_ifndef, c_ifeq, c_ifneq,
    20062007#ifdef CONFIG_WITH_SET_CONDITIONALS
    2007   enum { c_ifdef, c_ifndef, c_ifeq, c_ifneq, c_if1of, c_ifn1of, c_else, c_endif } cmdtype;
    2008 #else
    2009   enum { c_ifdef, c_ifndef, c_ifeq, c_ifneq, c_else, c_endif } cmdtype;
    2010 #endif
     2008    c_if1of, c_ifn1of,
     2009#endif
     2010#ifdef CONFIG_WITH_IF_CONDITIONALS
     2011    c_ifcond,
     2012#endif
     2013    c_else, c_endif
     2014  } cmdtype;
    20112015  unsigned int i;
    20122016  unsigned int o;
     
    20252029  else chkword ("ifn1of", c_ifn1of)
    20262030#endif
     2031#ifdef CONFIG_WITH_IF_CONDITIONALS
     2032  else chkword ("if", c_ifcond)
     2033#endif
    20272034  else chkword ("else", c_else)
    20282035  else chkword ("endif", c_endif)
     
    21632170      free (var);
    21642171    }
     2172#ifdef CONFIG_WITH_IF_CONDITIONALS
     2173  else if (cmdtype == c_ifcond)
     2174    {
     2175      int rval = ifcond_eval (line, flocp);
     2176      if (rval == -1)
     2177          return rval;
     2178      conditionals->ignoring[o] = rval;
     2179    }
     2180#endif
    21652181  else
    21662182    {
Note: See TracChangeset for help on using the changeset viewer.