diff options
author | George Lebl <jirka@5z.com> | 2003-06-03 20:45:42 +0000 |
---|---|---|
committer | George Lebl <jirka@src.gnome.org> | 2003-06-03 20:45:42 +0000 |
commit | 5d162dd3196916ebcce6d22b1fec9000a7c60ea1 (patch) | |
tree | 270fe3e41c9483d908ea62d072c6bd1e51daaac9 /utils | |
parent | 009a8f3facf516ff14cf5f792aa326e19f207fbb (diff) | |
download | gdm-5d162dd3196916ebcce6d22b1fec9000a7c60ea1.tar.gz |
whack gdmmktemp since it wasn't being used, move gdmaskpass and gdmopen to
Tue Jun 03 13:37:31 2003 George Lebl <jirka@5z.com>
* gdm.spec.in, configure.in, utils/Makefile.am, daemon/server.c,
daemon/misc.c, daemon/gdm.c, config/XkeepsCrashing:
whack gdmmktemp since it wasn't being used, move gdmaskpass and
gdmopen to libexec since that's where they really belong
* daemon/gdm.h, config/gdm.conf.in, gui/gdmchooser.(c|glade): add an
"Add" entry and button so that, we can add random hosts by typing
their name. Add chooser/AllowAdd config key (default to true)
that controls if this is available. Also fix up the updating of
the icon list. it was incredibly evil and rebuilt the list each
time a host packet came in, this compounded with the fact that
we were pinging 3 times (at least the broadcast to which everyone
answers). Also make this run fairly sanely outside of GDM,
so that you can really just run it from anywhere if you really
wish (mostly for debugging, though I imagine some other uses might
pop up).
Diffstat (limited to 'utils')
-rw-r--r-- | utils/Makefile.am | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/utils/Makefile.am b/utils/Makefile.am index 3a5b002a..eeb7c951 100644 --- a/utils/Makefile.am +++ b/utils/Makefile.am @@ -11,12 +11,13 @@ INCLUDES = \ -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ $(UTILS_CFLAGS) -sbin_PROGRAMS = \ +libexec_PROGRAMS = \ @GDMASKPASS@ \ @GDMOPEN@ -bin_PROGRAMS = \ - gdmmktemp +# This is not useful anymore +# bin_PROGRAMS = \ +# gdmmktemp EXTRA_PROGRAMS = gdmaskpass gdmopen @@ -26,8 +27,8 @@ gdmaskpass_SOURCES = \ gdmopen_SOURCES = \ gdmopen.c -gdmmktemp_SOURCES = \ - gdmmktemp.c +#gdmmktemp_SOURCES = \ +# gdmmktemp.c gdmaskpass_LDADD = \ $(INTLLIBS) \ @@ -37,5 +38,5 @@ gdmaskpass_LDADD = \ gdmopen_LDADD = \ $(INTLLIBS) -gdmmktemp_LDADD = \ - $(INTLLIBS) +#gdmmktemp_LDADD = \ +# $(INTLLIBS) |