diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-06-18 11:25:16 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-06-18 11:32:11 -0700 |
commit | 5414692efe92a9fb87cbcb374493102bca7424bc (patch) | |
tree | eb62b179aed6658a74479b208de27dbfe95e3b58 /Makefile.in | |
parent | f726fb8698b59328fae9842a88e8a054ccddb45c (diff) | |
download | vyatta-bash-5414692efe92a9fb87cbcb374493102bca7424bc.tar.gz vyatta-bash-5414692efe92a9fb87cbcb374493102bca7424bc.zip |
Shell command logging support
Log command exit to message queue for use by command
logging daemons.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 421458f..4028778 100644 --- a/Makefile.in +++ b/Makefile.in @@ -385,7 +385,7 @@ BASHINCFILES = $(BASHINCDIR)/posixstat.h $(BASHINCDIR)/ansi_stdlib.h \ $(BASHINCDIR)/ocache.h LIBRARIES = $(SHLIB_LIB) $(READLINE_LIB) $(HISTORY_LIB) $(TERMCAP_LIB) $(GLOB_LIB) \ - $(TILDE_LIB) $(MALLOC_LIB) $(INTL_LIB) $(LOCAL_LIBS) $(AUDIT_LIB) + $(TILDE_LIB) $(MALLOC_LIB) $(INTL_LIB) $(LOCAL_LIBS) -lrt LIBDEP = $(SHLIB_DEP) $(INTL_DEP) $(READLINE_DEP) $(HISTORY_DEP) $(TERMCAP_DEP) $(GLOB_DEP) \ $(TILDE_DEP) $(MALLOC_DEP) @@ -405,7 +405,8 @@ CSOURCES = shell.c eval.c parse.y general.c make_cmd.c print_cmd.c y.tab.c \ input.c bashhist.c array.c arrayfunc.c sig.c pathexp.c \ unwind_prot.c siglist.c bashline.c bracecomp.c error.c \ list.c stringlib.c locale.c findcmd.c redir.c \ - pcomplete.c pcomplib.c syntax.c xmalloc.c vyatta-restricted.c + pcomplete.c pcomplib.c syntax.c xmalloc.c \ + logging.c vyatta-restricted.c HSOURCES = shell.h flags.h trap.h hashcmd.h hashlib.h jobs.h builtins.h \ general.h variables.h config.h $(ALLOC_HEADERS) alias.h \ @@ -435,7 +436,7 @@ OBJECTS = shell.o eval.o y.tab.o general.o make_cmd.o print_cmd.o $(GLOBO) \ alias.o array.o arrayfunc.o braces.o bracecomp.o bashhist.o \ bashline.o $(SIGLIST_O) list.o stringlib.o locale.o findcmd.o redir.o \ pcomplete.o pcomplib.o syntax.o xmalloc.o $(SIGNAMES_O) \ - vyatta-restricted.o + logging.o vyatta-restricted.o # Where the source code of the shell builtins resides. BUILTIN_SRCDIR=$(srcdir)/builtins @@ -1008,6 +1009,7 @@ variables.o: ${BASHINCDIR}/posixtime.h version.o: conftypes.h patchlevel.h version.h xmalloc.o: config.h bashtypes.h ${BASHINCDIR}/ansi_stdlib.h error.h vyatta-restricted.o: shell.h command.h vyatta-restricted.h +logging.o: shell.h ${BASHINCDIR}/filecntl.h jobs.h # job control |