diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-16 11:36:22 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-16 11:36:22 +0200 |
commit | 75f3cb34e6ce1c8c782e5c612765dc39b76cc3df (patch) | |
tree | 16f7ef0b88b8e102a36169f5082818cc505051ed /runtime/Makefile.am | |
parent | 8f8f65abb66d1a7839c30c2d1b4b4d653a8990cc (diff) | |
download | rsyslog-75f3cb34e6ce1c8c782e5c612765dc39b76cc3df.tar.gz rsyslog-75f3cb34e6ce1c8c782e5c612765dc39b76cc3df.tar.xz rsyslog-75f3cb34e6ce1c8c782e5c612765dc39b76cc3df.zip |
moved net module to runtime
after careful analysis, I concluded that it is OK to
place the current net.c/.h code under LGPL. Individual
contributor agreement is given and no sysklogd code
remains (see net.c for details).
Diffstat (limited to 'runtime/Makefile.am')
-rw-r--r-- | runtime/Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am index 048ef411..8cb3a638 100644 --- a/runtime/Makefile.am +++ b/runtime/Makefile.am @@ -75,3 +75,14 @@ lmregexp_la_LDFLAGS = -module -avoid-version $(rsrt_libs) lmregexp_la_LIBADD = endif +if ENABLE_INET +pkglib_LTLIBRARIES += lmnet.la +# +# network support +# +lmnet_la_SOURCES = net.c net.h +lmnet_la_CPPFLAGS = $(pthreads_cflags) $(rsrt_cflags) +lmnet_la_LDFLAGS = -module -avoid-version $(rsrt_libs) +lmnet_la_LIBADD = + +endif # if ENABLE_INET |