~ubuntu-branches/ubuntu/karmic/rxvt-unicode/karmic

« back to all changes in this revision

Viewing changes to src/feature.h

  • Committer: Bazaar Package Importer
  • Author(s): Decklin Foster
  • Date: 2007-08-03 12:44:44 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20070803124444-uwmus5csvd7rm4fp
Tags: 8.3-1
* New upstream release (Closes: #433004)
  - Rolled with autoconf 2.61 (Closes: #422540)
* Match https URLs in selection-popup (Closes: #428659)
* Fix typos in urxvtperl(3) (Closes: #411074, #415848)
* Use sensible-browser instead of x-www-browser directly (Closes: #415846)
* Added urxvtcd as alternative (Closes: #381967)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#define FEATURE_H
25
25
 
26
26
#ifndef X11USRLIBDIR
27
 
# define X11USRLIBDIR           "/usr/X11R6/lib"
 
27
# define X11USRLIBDIR           "/usr/lib"
28
28
#endif
29
29
#ifndef X11LIBDIR
30
30
# define X11LIBDIR              X11USRLIBDIR "/X11"
391
391
 
392
392
/*
393
393
 * Enable the linux yield/usleep hack, which can dramatically improve
394
 
 * performance without hurting. See command.C for details.
 
394
 * performance by working around the linux kernel tty ratelimit bug.
 
395
 * Unfortunately, it seems screen is negatively affected by this on some
 
396
 * machines, so it is disabled by default. Use freebsd or any other kernel
 
397
 * that doesn't suffer form this bug and it will be fast either way.
 
398
 *
 
399
 * See command.C for details.
395
400
 */
396
401
#if __linux__
397
 
# define LINUX_YIELD_HACK 1
 
402
# define LINUX_YIELD_HACK 0
398
403
#endif
399
404
 
400
405
#endif