Changeset 1715
- Timestamp:
- Sep 3, 2008, 1:05:55 AM (17 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/kmk/Makefile.kmk ¶
r1707 r1715 158 158 CONFIG_WITH_NANOTS \ 159 159 CONFIG_WITH_SET_CONDITIONALS \ 160 CONFIG_WITH_IF_CONDITIONALS \ 160 161 CONFIG_WITH_DATE \ 161 162 CONFIG_WITH_FILE_SIZE \ … … 176 177 main.c \ 177 178 read.c \ 179 ifcond.c \ 178 180 hash.c \ 179 181 strcache.c \ -
TabularUnified trunk/src/kmk/make.h ¶
r1701 r1715 728 728 #endif 729 729 730 #ifdef CONFIG_WITH_IF_CONDITIONALS 731 extern int ifcond_eval(char *line, const struct floc *flocp); 732 #endif 733 -
TabularUnified trunk/src/kmk/read.c ¶
r1701 r1715 2004 2004 { 2005 2005 char *cmdname; 2006 enum { c_ifdef, c_ifndef, c_ifeq, c_ifneq, 2006 2007 #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; 2011 2015 unsigned int i; 2012 2016 unsigned int o; … … 2025 2029 else chkword ("ifn1of", c_ifn1of) 2026 2030 #endif 2031 #ifdef CONFIG_WITH_IF_CONDITIONALS 2032 else chkword ("if", c_ifcond) 2033 #endif 2027 2034 else chkword ("else", c_else) 2028 2035 else chkword ("endif", c_endif) … … 2163 2170 free (var); 2164 2171 } 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 2165 2181 else 2166 2182 {
Note:
See TracChangeset
for help on using the changeset viewer.