diff options
| author | hmeland | 1999-06-11 15:23:52 +0000 |
|---|---|---|
| committer | hmeland | 1999-06-11 15:23:52 +0000 |
| commit | 188e3829206d3e4722d77e2414a2263bc0976774 (patch) | |
| tree | 223c3f4f0952e9dfeea37ebf5232c62faf020426 /src | |
| parent | 9286ef4c5f1c9689dcd72f9731fdbdf8edb8546e (diff) | |
| download | mailman-188e3829206d3e4722d77e2414a2263bc0976774.tar.gz mailman-188e3829206d3e4722d77e2414a2263bc0976774.tar.zst mailman-188e3829206d3e4722d77e2414a2263bc0976774.zip | |
More changes to make syslog() work on OSes where it isn't part of the
standard libraries.
This fix has been verified to work on SCO OpenServer 5, which was the
OS for which this change was originally needed. The previous attempt
at a fix, stolen from GNU sh-utils, proved insufficient.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 3795eaaed..8eab9a225 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -32,6 +32,7 @@ INSTALL= @INSTALL@ PYTHON= @PYTHON@ DEFS= @DEFS@ +LIBS= @LIBS@ # UIDs and GIDs MAIL_GID= @MAIL_GID@ @@ -42,7 +43,7 @@ MAILMAN_UID= @MAILMAN_UID@ # Customizable but not set by configure OPT= @OPT@ -CFLAGS= $(OPT) $(DEFS) +CFLAGS= $(OPT) $(DEFS) $(LIBS) CGIDIR= $(exec_prefix)/cgi-bin CGIEXT= @CGIEXT@ MAILDIR= $(exec_prefix)/mail |
