xterm patch #41 - 1997/5/28 - T.Dickey Some nits found by Darren Hiebert (missing part of install-rule, incorrect assignment for --enable-color-mode option). -------------------------------------------------------------------------------- Makefile.in | 12 ++++++++---- configure | 2 +- configure.in | 2 +- 3 files changed, 10 insertions, 6 deletions -------------------------------------------------------------------------------- Index: Makefile.in --- xterm-40+/Makefile.in Fri May 23 14:31:46 1997 +++ xterm-41/Makefile.in Wed May 28 19:24:22 1997 @@ -60,16 +60,20 @@ resize : $(OBJS2) $(LINK) $(LDFLAGS) -o $@ $(OBJS2) $(X_LIBS) $(LIBS) -install: $(INSTALL_DIRS) \ - $(bindir)/xterm \ - $(mandir)/xterm.$(manext) \ +install: $(INSTALL_DIRS) xterm resize + $(INSTALL_PROGRAM) -s -m 4711 xterm $(bindir)/xterm + $(INSTALL_PROGRAM) -s -m 755 resize $(bindir)/resize + $(INSTALL_DATA) xterm.man $(mandir)/xterm.$(manext) + $(INSTALL_DATA) resize.man $(mandir)/resize.$(manext) @echo 'Completed installation.' installdirs: $(INSTALL_DIRS) uninstall: -$(RM) $(bindir)/xterm \ - $(mandir)/xterm.$(manext) + $(bindir)/resize \ + $(mandir)/xterm.$(manext) \ + $(mandir)/resize.$(manext) mostlyclean: -$(RM) *.o core *~ *.BAK Index: configure --- xterm-40+/configure Mon May 26 16:23:43 1997 +++ xterm-41/configure Wed May 28 19:19:33 1997 @@ -2893,7 +2893,7 @@ enableval="$enable_color_mode" test "$enableval" != yes && enableval=no if test "$enableval" != "no" ; then - default_colormode=$withval + default_colormode=TRUE else default_colormode=FALSE fi Index: configure.in --- xterm-40+/configure.in Sun May 25 16:26:20 1997 +++ xterm-41/configure.in Wed May 28 19:06:46 1997 @@ -119,7 +119,7 @@ AC_MSG_CHECKING(for default color-mode) CF_ARG_ENABLE(color-mode, [ --enable-color-mode set default colorMode resource ], - [default_colormode=$withval], + [default_colormode=TRUE], [default_colormode=FALSE]) AC_MSG_RESULT($default_colormode) AC_DEFINE_UNQUOTED(DFT_COLORMODE,$default_colormode)