Bump to 608
[platform/upstream/less.git] / defines.h.in
index a5e8b69..e5559d1 100644 (file)
  * PIPEC is 1 if you wish to have the "|" command
  * which allows the user to pipe data into a shell command.
  */
-#define        PIPEC           (!SECURE)
+#define        PIPEC           (!SECURE && HAVE_POPEN)
 
 /*
- * LOGFILE is 1 if you wish to allow the -l option (to create log files).
+ * LOGFILE is 1 if you wish to allow the -o option (to create log files).
  */
 #define        LOGFILE         (!SECURE)
 
 #define        LESSKEYFILE             ".less"
 #define        LESSKEYFILE_SYS         SYSDIR "/sysless"
 #define        DEF_LESSKEYINFILE       ".lesskey"
+#define        LESSKEYINFILE_SYS       SYSDIR "/syslesskey"
 #define LESSHISTFILE           ".lesshst"
 
 
 #define TGETENT_OK  1
 
 /*
+ * HAVE_ANSI_PROTOS    is 1 if your compiler supports ANSI function prototypes.
+ */
+#define HAVE_ANSI_PROTOS       1
+
+/*
  * HAVE_SYS_TYPES_H is 1 if your system has <sys/types.h>.
  */
 #define HAVE_SYS_TYPES_H       1
 /*
  * Default shell metacharacters and meta-escape character.
  */
-#define        DEF_METACHARS   "; *?\t\n'\"()<>[]|&^`#\\$%=~"
+#define        DEF_METACHARS   "; *?\t\n'\"()<>[]|&^`#\\$%=~{},"
 #define        DEF_METAESCAPE  "\\"
 
 /* 
 /* Define to 1 if you have the strstr() function. */
 #define HAVE_STRSTR 1
 
+/* Define to 1 to support reading lesskey source files (not just binary). */
+#define HAVE_LESSKEYSRC 1
+
 /*
  * Sizes of various buffers.
  */
+#if 0 /* old sizes for small memory machines */
 #define        CMDBUF_SIZE     512     /* Buffer for multichar commands */
 #define        UNGOT_SIZE      100     /* Max chars to unget() */
 #define        LINEBUF_SIZE    1024    /* Max size of line in input file */
 #define        TERMSBUF_SIZE   1024    /* Buffer to hold termcap strings */
 #define        TAGLINE_SIZE    512     /* Max size of line in tags file */
 #define        TABSTOP_MAX     32      /* Max number of custom tab stops */
+#else /* more reasonable sizes for modern machines */
+#define        CMDBUF_SIZE     2048    /* Buffer for multichar commands */
+#define        UNGOT_SIZE      200     /* Max chars to unget() */
+#define        LINEBUF_SIZE    1024    /* Initial max size of line in input file */
+#define        OUTBUF_SIZE     1024    /* Output buffer */
+#define        PROMPT_SIZE     2048    /* Max size of prompt string */
+#define        TERMBUF_SIZE    2048    /* Termcap buffer for tgetent */
+#define        TERMSBUF_SIZE   1024    /* Buffer to hold termcap strings */
+#define        TAGLINE_SIZE    1024    /* Max size of line in tags file */
+#define        TABSTOP_MAX     128     /* Max number of custom tab stops */
+#endif
 
 /* Settings automatically determined by configure.  */
 
 /* Define to 1 if you have the <memory.h> header file. */
 #undef HAVE_MEMORY_H
 
+/* Define to 1 if you have the `nanosleep' function. */
+#undef HAVE_NANOSLEEP
+
 /* Define HAVE_OSPEED if your termcap library has the ospeed variable. */
 #undef HAVE_OSPEED
 
 /* PCRE (Perl-compatible regular expression) library */
 #undef HAVE_PCRE
 
+/* PCRE2 (Perl-compatible regular expression) library */
+#undef HAVE_PCRE2
+
+/* Define to 1 if you have the `poll' function. */
+#undef HAVE_POLL
+
 /* Define to 1 if you have the `popen' function. */
 #undef HAVE_POPEN
 
 /* POSIX regcomp() and regex.h */
 #undef HAVE_POSIX_REGCOMP
 
+/* Define HAVE_PROCFS if have have fstatfs with f_type and PROC_SUPER_MAGIC.
+   */
+#undef HAVE_PROCFS
+
+/* Define to 1 if you have the `realpath' function. */
+#undef HAVE_REALPATH
+
 /* System V regcmp() */
 #undef HAVE_REGCMP
 
 /* Define HAVE_TIME_T if your system supports the "time_t" type. */
 #undef HAVE_TIME_T
 
+/* Define to 1 if you have the `ttyname' function. */
+#undef HAVE_TTYNAME
+
 /* Define to 1 if you have the <unistd.h> header file. */
 #undef HAVE_UNISTD_H
 
 /* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower. */
 #undef HAVE_UPPER_LOWER
 
+/* Define to 1 if you have the `usleep' function. */
+#undef HAVE_USLEEP
+
 /* Henry Spencer V8 regcomp() and regexp.h */
 #undef HAVE_V8_REGCOMP
 
 /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
 #undef TIME_WITH_SYS_TIME
 
+/* Enable large inode numbers on Mac OS X 10.5.  */
+#ifndef _DARWIN_USE_64_BIT_INODE
+# define _DARWIN_USE_64_BIT_INODE 1
+#endif
+
 /* Number of bits in a file offset, on hosts where this is settable. */
 #undef _FILE_OFFSET_BITS