Significantly improved; wrapper processes given configurable 'die' timeouts;
client identified and passed in environment to handlers; logging through syslogd sorted and working well.
This commit is contained in:
parent
715dec1ad6
commit
f54afde746
7 changed files with 94 additions and 57 deletions
6
Makefile
6
Makefile
|
|
@ -1,4 +1,5 @@
|
|||
# Makefile for itinerary engine utilities
|
||||
# $Header$
|
||||
|
||||
CC= gcc
|
||||
CFLAGS= -g
|
||||
|
|
@ -6,7 +7,7 @@ LD= gcc
|
|||
LDFLAGS= -g
|
||||
BINDIR= /usr/local/bin
|
||||
TARGETS= gild
|
||||
COMPONENTS = gild.o wrapper.o config.o
|
||||
COMPONENTS = gild.o wrapper.o config.o log.o
|
||||
|
||||
all: $(TARGETS)
|
||||
|
||||
|
|
@ -21,3 +22,6 @@ clean:
|
|||
|
||||
install: $(TARGETS)
|
||||
install --strip $(TARGETS) $(BINDIR)
|
||||
|
||||
version: $(TARGETS)
|
||||
cvs commit gild.c wrapper.c config.c log.c Makefile gild.h gild.conf
|
||||
Loading…
Add table
Add a link
Reference in a new issue