home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume2 / ms-termcap / CONFIG.H next >
Encoding:
C/C++ Source or Header  |  1991-08-07  |  3.3 KB  |  112 lines

  1. /* GNU Emacs site configuration template file.
  2.    Copyright (C) 1986 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY.  No author or distributor
  8. accepts responsibility to anyone for the consequences of using it
  9. or for whether it serves any particular purpose or works at all,
  10. unless he says so in writing.  Refer to the GNU Emacs General Public
  11. License for full details.
  12.  
  13. Everyone is granted permission to copy, modify and redistribute
  14. GNU Emacs, but only under the conditions described in the
  15. GNU Emacs General Public License.   A copy of this license is
  16. supposed to have been given to you along with GNU Emacs so you
  17. can know your rights and responsibilities.  It should be in a
  18. file named COPYING.  Among other things, the copyright notice
  19. and this notice must be preserved on all copies.  */
  20.  
  21.  
  22.  
  23. /* Include here a s- file that describes the system type you are using.
  24.    See the file ../etc/MACHINES for a list of systems and
  25.    the names of the s- files to use for them.
  26.    See s-template.h for documentation on writing s- files.  */
  27. /* #include "s-vms4-4.h" */
  28.  
  29. /* Include here a m- file that describes the machine and system you use.
  30.    See the file ../etc/MACHINES for a list of machines and
  31.    the names of the m- files to use for them.
  32.    See m-template.h for info on what m- files should define.
  33.    */
  34. /* #include "m-vax.h" */
  35.  
  36. /* Load in the conversion definitions if this system
  37.    needs them and the source file being compiled has not
  38.    said to inhibit this.  */
  39.  
  40. #ifdef SHORTNAMES
  41. #ifndef NO_SHORTNAMES
  42. #include "../shortnames/remap.h"
  43. #endif /* not NO_SHORTNAMES */
  44. #endif /* SHORTNAMES */
  45.  
  46. /* define HAVE_X_WINDOWS if you want to use the X window system */
  47.  
  48. /* #define HAVE_X_WINDOWS */
  49.  
  50. /* define HAVE_X_MENU if you want to use the X window menu system.
  51.    This appears to work on some machines that support X
  52.    and not on others.  */
  53.  
  54. /* #define HAVE_X_MENU */
  55.  
  56. /* subprocesses should be defined if you want to
  57.  have code for asynchronous subprocesses
  58.  (as used in M-x compile and M-x shell).
  59.  These do not work for some USG systems yet;
  60.  for the ones where they work, the s-*.h file defines this flag.  */
  61.  
  62. /* 
  63. #ifndef VMS
  64. #ifndef USG
  65. #define subprocesses
  66. #endif
  67. #endif
  68.  */
  69.  
  70. /* Define USER_FULL_NAME to return a string
  71.  that is the user's full name.
  72.  It can assume that the variable `pw'
  73.  points to the password file entry for this user.
  74.  
  75.  At some sites, the pw_gecos field contains
  76.  the user's full name.  If neither this nor any other
  77.  field contains the right thing, use pw_name,
  78.  giving the user's login name, since that is better than nothing.  */
  79.  
  80. #define USER_FULL_NAME pw->pw_gecos
  81.  
  82. /* Define AMPERSAND_FULL_NAME if you use the convention
  83.   that & in the full name stands for the login id.  */
  84.  
  85. /* #define AMPERSAND_FULL_NAME */
  86.  
  87. /* Maximum screen width we handle. */
  88.  
  89. #define MScreenWidth 300
  90.  
  91. /* Maximum screen length we handle. */
  92.  
  93. #define MScreenLength 300
  94.  
  95. /* # bytes of pure Lisp code to leave space for.
  96.   s-vms.h and m-sun2.h can override this default.  */
  97.  
  98. #ifndef PURESIZE
  99. #ifdef HAVE_X_WINDOWS
  100. #define PURESIZE 120000
  101. #else
  102. #define PURESIZE 115800
  103. #endif
  104. #endif
  105.  
  106. /* Define HIGHPRI as a negative number
  107.  if you want Emacs to run at a higher than normal priority.
  108.  For this to take effect, you must install it as setuid root. */
  109.  
  110. /* #define HIGHPRI */
  111.  
  112.