Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 584870
Collapse All | Expand All

(-)a/config.h.in (+4 lines)
Lines 322-327 Link Here
322
/* Define if you want to hide the pointer while typing */
322
/* Define if you want to hide the pointer while typing */
323
#undef POINTER_BLANK
323
#undef POINTER_BLANK
324
324
325
/* Define if you want PrintScreen to send terminal contents to a pipe (default
326
   is to send to printer via lpr) */
327
#undef PRINTPIPE
328
325
/* Define to a fallback location of lastlogx */
329
/* Define to a fallback location of lastlogx */
326
#undef PT_LASTLOGX_FILE
330
#undef PT_LASTLOGX_FILE
327
331
(-)a/configure (+18 lines)
Lines 721-726 enable_pixbuf Link Here
721
enable_startup_notification
721
enable_startup_notification
722
enable_transparency
722
enable_transparency
723
enable_fading
723
enable_fading
724
enable_printpipe
724
enable_rxvt_scroll
725
enable_rxvt_scroll
725
enable_next_scroll
726
enable_next_scroll
726
enable_xterm_scroll
727
enable_xterm_scroll
Lines 1394-1399 Optional Features: Link Here
1394
  --enable-startup-notification  enable freedesktop startup notification support
1395
  --enable-startup-notification  enable freedesktop startup notification support
1395
  --enable-transparency   enable transparent backgrounds
1396
  --enable-transparency   enable transparent backgrounds
1396
  --enable-fading         enable colors fading when off focus
1397
  --enable-fading         enable colors fading when off focus
1398
  --enable-printpipe      enable sending terminal content to a pipe by hitting PrintScreen
1397
  --enable-rxvt-scroll    enable rxvt style scrollbar
1399
  --enable-rxvt-scroll    enable rxvt style scrollbar
1398
  --enable-next-scroll    enable NeXT style scrollbar
1400
  --enable-next-scroll    enable NeXT style scrollbar
1399
  --enable-xterm-scroll   enable Xterm style scrollbar
1401
  --enable-xterm-scroll   enable Xterm style scrollbar
Lines 4730-4735 fi Link Here
4730
support_frills=yes
4732
support_frills=yes
4731
support_inheritpixmap=yes
4733
support_inheritpixmap=yes
4732
support_fading=yes
4734
support_fading=yes
4735
support_printpipe=yes
4733
support_keepscrolling=yes
4736
support_keepscrolling=yes
4734
support_selectionscrolling=yes
4737
support_selectionscrolling=yes
4735
support_mousewheel=yes
4738
support_mousewheel=yes
Lines 4759-4764 if test "${enable_everything+set}" = set; then : Link Here
4759
       support_frills=no
4762
       support_frills=no
4760
       support_inheritpixmap=no
4763
       support_inheritpixmap=no
4761
       support_fading=no
4764
       support_fading=no
4765
       support_printpipe=no
4762
       support_keepscrolling=no
4766
       support_keepscrolling=no
4763
       support_selectionscrolling=no
4767
       support_selectionscrolling=no
4764
       support_lastlog=no
4768
       support_lastlog=no
Lines 4787-4792 if test "${enable_everything+set}" = set; then : Link Here
4787
       support_frills=yes
4791
       support_frills=yes
4788
       support_inheritpixmap=yes
4792
       support_inheritpixmap=yes
4789
       support_fading=yes
4793
       support_fading=yes
4794
       support_printpipe=yes
4790
       support_keepscrolling=yes
4795
       support_keepscrolling=yes
4791
       support_selectionscrolling=yes
4796
       support_selectionscrolling=yes
4792
       support_lastlog=yes
4797
       support_lastlog=yes
Lines 4941-4946 if test "${enable_fading+set}" = set; then : Link Here
4941
fi
4946
fi
4942
4947
4943
4948
4949
# Check whether --enable-printpipe was given.
4950
if test "${enable_printpipe+set}" = set; then :
4951
  enableval=$enable_printpipe; if test x$enableval = xyes -o x$enableval = xno; then
4952
    support_printpipe=$enableval
4953
  fi
4954
fi
4955
4956
4944
# Check whether --enable-rxvt-scroll was given.
4957
# Check whether --enable-rxvt-scroll was given.
4945
if test "${enable_rxvt_scroll+set}" = set; then :
4958
if test "${enable_rxvt_scroll+set}" = set; then :
4946
  enableval=$enable_rxvt_scroll; if test x$enableval = xyes -o x$enableval = xno; then
4959
  enableval=$enable_rxvt_scroll; if test x$enableval = xyes -o x$enableval = xno; then
Lines 7749-7754 if test x$support_fading = xyes; then Link Here
7749
$as_echo "#define OFF_FOCUS_FADING 1" >>confdefs.h
7762
$as_echo "#define OFF_FOCUS_FADING 1" >>confdefs.h
7750
7763
7751
fi
7764
fi
7765
if test x$support_printpipe = xyes; then
7766
7767
$as_echo "#define PRINTPIPE \"lpr\"" >>confdefs.h
7768
7769
fi
7752
if test x$support_keepscrolling = xno; then
7770
if test x$support_keepscrolling = xno; then
7753
7771
7754
$as_echo "#define NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING 1" >>confdefs.h
7772
$as_echo "#define NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING 1" >>confdefs.h
(-)a/configure.ac (+12 lines)
Lines 78-83 AC_SEARCH_LIBS(socket, socket) Link Here
78
support_frills=yes
78
support_frills=yes
79
support_inheritpixmap=yes
79
support_inheritpixmap=yes
80
support_fading=yes
80
support_fading=yes
81
support_printpipe=yes
81
support_keepscrolling=yes
82
support_keepscrolling=yes
82
support_selectionscrolling=yes
83
support_selectionscrolling=yes
83
support_mousewheel=yes
84
support_mousewheel=yes
Lines 111-116 AC_ARG_ENABLE(everything, Link Here
111
       support_frills=no
112
       support_frills=no
112
       support_inheritpixmap=no
113
       support_inheritpixmap=no
113
       support_fading=no
114
       support_fading=no
115
       support_printpipe=no
114
       support_keepscrolling=no
116
       support_keepscrolling=no
115
       support_selectionscrolling=no
117
       support_selectionscrolling=no
116
       support_lastlog=no
118
       support_lastlog=no
Lines 139-144 AC_ARG_ENABLE(everything, Link Here
139
       support_frills=yes
141
       support_frills=yes
140
       support_inheritpixmap=yes
142
       support_inheritpixmap=yes
141
       support_fading=yes
143
       support_fading=yes
144
       support_printpipe=yes
142
       support_keepscrolling=yes
145
       support_keepscrolling=yes
143
       support_selectionscrolling=yes
146
       support_selectionscrolling=yes
144
       support_lastlog=yes
147
       support_lastlog=yes
Lines 249-254 AC_ARG_ENABLE(fading, Link Here
249
    support_fading=$enableval
252
    support_fading=$enableval
250
  fi])
253
  fi])
251
254
255
AC_ARG_ENABLE(printpipe,
256
  [  --enable-printpipe      enable sending terminal content to a pipe by hitting PrintScreen],
257
  [if test x$enableval = xyes -o x$enableval = xno; then
258
    support_printpipe=$enableval
259
  fi])
260
252
AC_ARG_ENABLE(rxvt-scroll,
261
AC_ARG_ENABLE(rxvt-scroll,
253
  [  --enable-rxvt-scroll    enable rxvt style scrollbar],
262
  [  --enable-rxvt-scroll    enable rxvt style scrollbar],
254
  [if test x$enableval = xyes -o x$enableval = xno; then
263
  [if test x$enableval = xyes -o x$enableval = xno; then
Lines 657-662 fi Link Here
657
if test x$support_fading = xyes; then
666
if test x$support_fading = xyes; then
658
  AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost)
667
  AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost)
659
fi
668
fi
669
if test x$support_printpipe = xyes; then
670
  AC_DEFINE(PRINTPIPE, "lpr", Define if you want PrintScreen to send terminal contents to a pipe (default is to send to printer via lpr))
671
fi
660
if test x$support_keepscrolling = xno; then
672
if test x$support_keepscrolling = xno; then
661
  AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed)
673
  AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed)
662
fi
674
fi
(-)a/src/feature.h (-6 lines)
Lines 331-341 Link Here
331
#define COLOR_CURSOR_BACKGROUND	NULL	/* if NULL, use foreground colour */
331
#define COLOR_CURSOR_BACKGROUND	NULL	/* if NULL, use foreground colour */
332
332
333
/*
333
/*
334
 * Printer pipe which will be used for emulation of attached vt100 printer
335
 */
336
#define PRINTPIPE	"lpr"
337
338
/*
339
 * Define defaults for backspace and delete keys - unless they have been
334
 * Define defaults for backspace and delete keys - unless they have been
340
 * configured out with --disable-backspace-key / --disable-delete-key
335
 * configured out with --disable-backspace-key / --disable-delete-key
341
 */
336
 */
342
- 

Return to bug 584870