diff options
author | jsorg71 <jsorg71> | 2008-08-06 05:06:03 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2008-08-06 05:06:03 +0000 |
commit | 59a2d1dea6a6ebd9ba0cc6c2fcf279db91091ede (patch) | |
tree | 95f7745befefeda31ceeeb6c6ca76396f3e527f3 /sesman | |
parent | a905f1dc80267fbecc4a30c305d8c796b207f7ef (diff) | |
download | xrdp-proprietary-59a2d1dea6a6ebd9ba0cc6c2fcf279db91091ede.tar.gz xrdp-proprietary-59a2d1dea6a6ebd9ba0cc6c2fcf279db91091ede.zip |
build common as a library
Diffstat (limited to 'sesman')
-rw-r--r-- | sesman/Makefile.am | 7 | ||||
-rw-r--r-- | sesman/libscp/Makefile.am | 3 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sesman/Makefile.am b/sesman/Makefile.am index 98f34e79..0f22f9bc 100644 --- a/sesman/Makefile.am +++ b/sesman/Makefile.am @@ -24,14 +24,11 @@ xrdp_sessvc_SOURCES = \ sessvc.c xrdp_sesman_LDADD = \ - $(top_srcdir)/common/libxrdp-common.a \ + $(top_srcdir)/common/libxrdp-common.la \ $(top_srcdir)/sesman/libscp/libscp.la \ - -ldl \ - -lpthread \ -lpam xrdp_sessvc_LDADD = \ - $(top_srcdir)/common/libxrdp-common.a \ - -ldl + $(top_srcdir)/common/libxrdp-common.la SUBDIRS = libscp diff --git a/sesman/libscp/Makefile.am b/sesman/libscp/Makefile.am index e5d22116..f148b6ae 100644 --- a/sesman/libscp/Makefile.am +++ b/sesman/libscp/Makefile.am @@ -15,5 +15,8 @@ libscp_la_SOURCES = \ libscp_v1s.c \ libscp_vX.c +libscp_la_LIBADD = \ + $(top_srcdir)/common/libxrdp-common.la + libscp_la_LDFLAGS = \ -version-info 5:0:5 |