diff options
author | Simo Sorce <simo@redhat.com> | 2012-05-11 22:15:02 -0400 |
---|---|---|
committer | Günther Deschner <gdeschner@redhat.com> | 2012-06-26 14:44:43 +0200 |
commit | 22eef1470a8752cf1f549e9676a49952b5db9126 (patch) | |
tree | dcb2a010491229d6997263fb3871f86d3f400b01 | |
parent | ad4af48009656bd07f06bbed0551ad23f3882fb2 (diff) | |
download | gss-proxy-22eef1470a8752cf1f549e9676a49952b5db9126.tar.gz gss-proxy-22eef1470a8752cf1f549e9676a49952b5db9126.tar.xz gss-proxy-22eef1470a8752cf1f549e9676a49952b5db9126.zip |
Build mechglue as a plugin
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | proxy/Makefile.am | 13 |
2 files changed, 15 insertions, 0 deletions
@@ -33,3 +33,5 @@ cscope.out dict.symbols .dirstamp cli_srv_conn +*.la +*.lo diff --git a/proxy/Makefile.am b/proxy/Makefile.am index 038d234..6465c2d 100644 --- a/proxy/Makefile.am +++ b/proxy/Makefile.am @@ -49,6 +49,9 @@ sbin_PROGRAMS = \ check_PROGRAMS = \ cli_srv_comm +gssplib_LTLIBRARIES = \ + proxymech.la + dist_noinst_SCRIPTS = dist_noinst_DATA = @@ -118,6 +121,16 @@ gssproxy_SOURCES = \ src/gp_rpc_init_sec_context.c \ src/gssproxy.c +proxymech_la_SOURCES = \ + src/gp_conv.c \ + $(GP_RPCGEN_OBJ) \ + $(GP_MECHGLUE_OBJ) +proxymech_la_CFLAGS = \ + $(AM_FLAGS) +proxymech_la_LDFLAGS = \ + -avoid-version \ + -module + cli_srv_comm_SOURCES = \ src/gp_conv.c \ src/gp_debug.c \ |