diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2005-07-29 08:22:50 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2005-07-29 08:22:50 +0000 |
commit | 17869a5ba296c5a39e4ea2481ca3d8c6948b7cdd (patch) | |
tree | bf46ca5f2e5c0c55876300d04c382c7bfa0114a1 /Makefile | |
parent | 9c4eb8b20401b6e36a0b877a111e3d02b62b13d2 (diff) | |
download | rsyslog-17869a5ba296c5a39e4ea2481ca3d8c6948b7cdd.tar.gz rsyslog-17869a5ba296c5a39e4ea2481ca3d8c6948b7cdd.tar.xz rsyslog-17869a5ba296c5a39e4ea2481ca3d8c6948b7cdd.zip |
fixed 'the semicolon bug' in the write database action. Also fixed a bug
that caused rsyslogd to dump core when the template for database was
not found. There still is an issue with the other actions and invalid
template names.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -17,8 +17,8 @@ CC= gcc # enables the MySQL code. By default, that one is commented out # change the comment chars to activate it if you need MySQL! # In this case, also look down further to uncomment the libs -CFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce $(NOLARGEFILE) -#CFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce -DWITH_DB -I/usr/local/include $(NOLARGEFILE) +#CFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce $(NOLARGEFILE) +CFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce -DWITH_DB -I/usr/local/include $(NOLARGEFILE) LDFLAGS= -s INSTALL = install @@ -26,7 +26,7 @@ BINDIR = /usr/sbin MANDIR = /usr/share/man # Uncomment the following to use mysql. -#LIBS = -lmysqlclient -L/usr/local/lib/mysql +LIBS = -lmysqlclient -L/usr/local/lib/mysql # There is one report that under an all ELF system there may be a need to # explicilty link with libresolv.a. If linking syslogd fails you may wish |