From 2dd3faebcd3cfd00efda38ffd2585d675e696b12 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Fri, 25 Jun 2010 11:28:20 -0400 Subject: Split proxy.c into smaller files proxy.c was growing too large to manage (and some graphical development tools could no longer open it because of memory limitations). This patch splits proxy.c into the following files: proxy_init.c: Setup routines for the plugin proxy_id.c: Functions to handle user and group lookups proxy_auth.c: Functions to handle PAM interactions proxy_common.c: Common utility routines --- src/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index d77c73172..67b51f437 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -756,7 +756,10 @@ libsss_ldap_la_LDFLAGS = \ -module libsss_proxy_la_SOURCES = \ - providers/proxy/proxy.c + providers/proxy/proxy_common.c \ + providers/proxy/proxy_init.c \ + providers/proxy/proxy_id.c \ + providers/proxy/proxy_auth.c libsss_proxy_la_CFLAGS = \ $(AM_CFLAGS) libsss_proxy_la_LIBADD = \ -- cgit