diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-04-09 14:08:34 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-04-09 14:08:34 +0200 |
commit | 62f574a4989c3c862444e2f8bb59396a18b30a1c (patch) | |
tree | f08ef82ce9b1cb6f5458fc83d52830688840c5f6 | |
parent | cf0cf2fa4bf84188baf873522d4a22887f4fdf90 (diff) | |
download | rsyslog-62f574a4989c3c862444e2f8bb59396a18b30a1c.tar.gz rsyslog-62f574a4989c3c862444e2f8bb59396a18b30a1c.tar.bz2 rsyslog-62f574a4989c3c862444e2f8bb59396a18b30a1c.zip |
adding missing Solaris linker options (network libs)
-rw-r--r-- | tests/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 53a81a93..625995ae 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -32,9 +32,11 @@ EXTRA_DIST= 1.rstest 2.rstest 3.rstest err1.rstest \ cfg.sh ourtail_SOURCES = ourtail.c -tcpflood_SOURCES = tcpflood.c chkseq_SOURCES = chkseq.c +tcpflood_SOURCES = tcpflood.c +tcpflood_LDADD = $(SOL_LIBS) + nettester_SOURCES = nettester.c getline.c nettester_LDADD = $(SOL_LIBS) |