diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-11-16 19:35:15 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-11-22 22:04:05 -0800 |
commit | f2dd6934c38414bc448ee49b47604f135f5487ea (patch) | |
tree | a8d4390ae9a3b479ad74daafde3196ed79ac63c9 | |
parent | 0fd7aa17da41779129a3acfdad28e07c0072a160 (diff) |
Stop compiling empty sm_auth.c stub
File exists as a placeholder in case someone someday decides to add
additional auth methods on top of what libICE provides, but it's been
two decades and no one has, so stop spending time compiling & linking
for now.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
-rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index a094ccc..ace113b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -17,7 +17,6 @@ endif libSM_la_SOURCES = \ SMlibint.h \ - sm_auth.c \ sm_client.c \ sm_error.c \ sm_genid.c \ @@ -25,6 +24,8 @@ libSM_la_SOURCES = \ sm_misc.c \ sm_process.c +EXTRA_DIST = sm_auth.c + smincludedir=$(includedir)/X11/SM sminclude_HEADERS=\ $(top_srcdir)/include/X11/SM/SM.h \ |