diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/LYReadCFG.c | 3 | ||||
-rw-r--r-- | src/LYrcFile.h | 3 | ||||
-rw-r--r-- | src/makefile.in | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/src/LYReadCFG.c b/src/LYReadCFG.c index 593eed5e..6ce38c0a 100644 --- a/src/LYReadCFG.c +++ b/src/LYReadCFG.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYReadCFG.c,v 1.157 2010/11/07 21:21:06 tom Exp $ + * $LynxId: LYReadCFG.c,v 1.158 2010/11/26 18:10:19 Frank.Heckenbach Exp $ */ #ifndef NO_RULES #include <HTRules.h> @@ -1549,6 +1549,7 @@ static Config_Type Config_Table [] = #endif PARSE_SET(RC_REUSE_TEMPFILES, LYReuseTempfiles), PARSE_PRG(RC_RLOGIN_PATH, ppRLOGIN), + PARSE_PRG(RC_RMDIR_PATH, ppRMDIR), PARSE_PRG(RC_RM_PATH, ppRM), #ifndef NO_RULES PARSE_FUN(RC_RULE, HTSetConfiguration), diff --git a/src/LYrcFile.h b/src/LYrcFile.h index 13488d22..b8e45a99 100644 --- a/src/LYrcFile.h +++ b/src/LYrcFile.h @@ -1,5 +1,5 @@ /* - * $LynxId: LYrcFile.h,v 1.36 2010/09/26 17:05:07 tom Exp $ + * $LynxId: LYrcFile.h,v 1.37 2010/11/26 18:10:19 Frank.Heckenbach Exp $ */ #ifndef LYRCFILE_H #define LYRCFILE_H @@ -190,6 +190,7 @@ #define RC_REPLAYSECS "replaysecs" #define RC_REUSE_TEMPFILES "reuse_tempfiles" #define RC_RLOGIN_PATH "rlogin_path" +#define RC_RMDIR_PATH "rmdir_path" #define RC_RM_PATH "rm_path" #define RC_RULE "rule" #define RC_RULESFILE "rulesfile" diff --git a/src/makefile.in b/src/makefile.in index 7ec3ae81..e02478f7 100644 --- a/src/makefile.in +++ b/src/makefile.in @@ -1,4 +1,4 @@ -# $LynxId: makefile.in,v 1.63 2010/09/19 19:31:18 tom Exp $ +# $LynxId: makefile.in,v 1.64 2010/11/26 19:56:45 Doug.Kaufman Exp $ # template-makefile for Lynx src directory SHELL = @CONFIG_SHELL@ @@ -102,7 +102,7 @@ all: lynx$x lynx$x: message do_chartrans_stuff $(top_builddir)/LYHelp.h $(OBJS) $(WWWLIB) @echo "Linking and creating Lynx executable" - $(CC) $(CC_OPTS) $(LDFLAGS) -o $@ $(OBJS) $(WWWLIB) $(INTLLIB) $(LDFLAGS) $(LIBS) + $(CC) $(CC_OPTS) $(LDFLAGS) -o $@ $(OBJS) $(WWWLIB) $(LDFLAGS) $(LIBS) $(INTLLIB) @echo "Copying Lynx executable into top-level directory" rm -f $(top_builddir)/$@ cp $@ $(top_builddir)/ |