should have been part of previous commit

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27094 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2008-08-20 23:28:06 +00:00
parent 5e29d55ee6
commit 996be6dbb5
1 changed files with 42 additions and 17 deletions

View File

@ -18,8 +18,9 @@
/* /*
* SECURE is 1 if you wish to disable a bunch of features in order to * SECURE is 1 if you wish to disable a bunch of features in order to
* be safe to run by unprivileged users. * be safe to run by unprivileged users.
* SECURE_COMPILE is set by the --with-secure configure option.
*/ */
#define SECURE 0 #define SECURE SECURE_COMPILE
/* /*
* SHELL_ESCAPE is 1 if you wish to allow shell escapes. * SHELL_ESCAPE is 1 if you wish to allow shell escapes.
@ -105,10 +106,13 @@
* LESSKEYFILE_SYS is the filename of the system-wide lesskey output file. * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file.
* DEF_LESSKEYINFILE is the filename of the default lesskey input * DEF_LESSKEYINFILE is the filename of the default lesskey input
* (in the HOME directory). * (in the HOME directory).
* LESSHISTFILE is the filename of the history file
* (in the HOME directory).
*/ */
#define LESSKEYFILE ".less" #define LESSKEYFILE ".less"
#define LESSKEYFILE_SYS SYSDIR "/sysless" #define LESSKEYFILE_SYS SYSDIR "/sysless"
#define DEF_LESSKEYINFILE ".lesskey" #define DEF_LESSKEYINFILE ".lesskey"
#define LESSHISTFILE ".lesshst"
/* Settings always true on Unix. */ /* Settings always true on Unix. */
@ -123,6 +127,12 @@
*/ */
#define PATHNAME_SEP "/" #define PATHNAME_SEP "/"
/*
* The value returned from tgetent on success.
* Some HP-UX systems return 0 on success.
*/
#define TGETENT_OK 1
/* /*
* HAVE_SYS_TYPES_H is 1 if your system has <sys/types.h>. * HAVE_SYS_TYPES_H is 1 if your system has <sys/types.h>.
*/ */
@ -152,7 +162,7 @@
/* /*
* Default shell metacharacters and meta-escape character. * Default shell metacharacters and meta-escape character.
*/ */
#define DEF_METACHARS "; *?\t\n'\"()<>|&^`#\\" #define DEF_METACHARS "; *?\t\n'\"()<>[]|&^`#\\$%=~"
#define DEF_METAESCAPE "\\" #define DEF_METAESCAPE "\\"
/* /*
@ -160,6 +170,15 @@
*/ */
#define HAVE_DUP 1 #define HAVE_DUP 1
/* Define to 1 if you have the memcpy() function. */
#define HAVE_MEMCPY 1
/* Define to 1 if you have the strchr() function. */
#define HAVE_STRCHR 1
/* Define to 1 if you have the strstr() function. */
#define HAVE_STRSTR 1
/* /*
* Sizes of various buffers. * Sizes of various buffers.
*/ */
@ -191,6 +210,9 @@
/* Define to 1 if you have the <errno.h> header file. */ /* Define to 1 if you have the <errno.h> header file. */
#undef HAVE_ERRNO_H #undef HAVE_ERRNO_H
/* Define to 1 if you have the `fchmod' function. */
#undef HAVE_FCHMOD
/* Define to 1 if you have the <fcntl.h> header file. */ /* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H #undef HAVE_FCNTL_H
@ -218,9 +240,6 @@
/* Define HAVE_LOCALE if you have locale.h and setlocale. */ /* Define HAVE_LOCALE if you have locale.h and setlocale. */
#undef HAVE_LOCALE #undef HAVE_LOCALE
/* Define to 1 if you have the `memcpy' function. */
#undef HAVE_MEMCPY
/* Define to 1 if you have the <memory.h> header file. */ /* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H #undef HAVE_MEMORY_H
@ -254,12 +273,18 @@
/* Define to 1 if you have the `sigsetmask' function. */ /* Define to 1 if you have the `sigsetmask' function. */
#undef HAVE_SIGSETMASK #undef HAVE_SIGSETMASK
/* Define HAVE_SIGSET_T you have the sigset_t type. */ /* Define to 1 if the system has the type `sigset_t'. */
#undef HAVE_SIGSET_T #undef HAVE_SIGSET_T
/* Define to 1 if you have the `snprintf' function. */
#undef HAVE_SNPRINTF
/* Define to 1 if you have the `stat' function. */ /* Define to 1 if you have the `stat' function. */
#undef HAVE_STAT #undef HAVE_STAT
/* Define HAVE_STAT_INO if your struct stat has st_ino and st_dev. */
#undef HAVE_STAT_INO
/* Define to 1 if you have the <stdint.h> header file. */ /* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H #undef HAVE_STDINT_H
@ -269,9 +294,6 @@
/* Define to 1 if you have the <stdlib.h> header file. */ /* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H #undef HAVE_STDLIB_H
/* Define to 1 if you have the `strchr' function. */
#undef HAVE_STRCHR
/* Define HAVE_STRERROR if you have the strerror() function. */ /* Define HAVE_STRERROR if you have the strerror() function. */
#undef HAVE_STRERROR #undef HAVE_STRERROR
@ -281,9 +303,6 @@
/* Define to 1 if you have the <string.h> header file. */ /* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H #undef HAVE_STRING_H
/* Define to 1 if you have the `strstr' function. */
#undef HAVE_STRSTR
/* Define to 1 if you have the `system' function. */ /* Define to 1 if you have the `system' function. */
#undef HAVE_SYSTEM #undef HAVE_SYSTEM
@ -293,9 +312,6 @@
/* Define to 1 if you have the <sys/ioctl.h> header file. */ /* Define to 1 if you have the <sys/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_H #undef HAVE_SYS_IOCTL_H
/* Define to 1 if you have the <sys/ptem.h> header file. */
#undef HAVE_SYS_PTEM_H
/* Define to 1 if you have the <sys/stat.h> header file. */ /* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H #undef HAVE_SYS_STAT_H
@ -338,6 +354,12 @@
/* Define HAVE_VOID if your compiler supports the "void" type. */ /* Define HAVE_VOID if your compiler supports the "void" type. */
#undef HAVE_VOID #undef HAVE_VOID
/* Define HAVE_WCTYPE if you have iswupper, iswlower, towupper, towlower. */
#undef HAVE_WCTYPE
/* Define to 1 if you have the <wctype.h> header file. */
#undef HAVE_WCTYPE_H
/* Define to 1 if you have the `_setjmp' function. */ /* Define to 1 if you have the `_setjmp' function. */
#undef HAVE__SETJMP #undef HAVE__SETJMP
@ -370,6 +392,9 @@
/* Define as the return type of signal handlers (`int' or `void'). */ /* Define as the return type of signal handlers (`int' or `void'). */
#undef RETSIGTYPE #undef RETSIGTYPE
/* Define SECURE_COMPILE=1 to build a secure version of less. */
#undef SECURE_COMPILE
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */ /* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
#undef STAT_MACROS_BROKEN #undef STAT_MACROS_BROKEN
@ -388,8 +413,8 @@
/* Define to empty if `const' does not conform to ANSI C. */ /* Define to empty if `const' does not conform to ANSI C. */
#undef const #undef const
/* Define to `long' if <sys/types.h> does not define. */ /* Define to `long int' if <sys/types.h> does not define. */
#undef off_t #undef off_t
/* Define to `unsigned' if <sys/types.h> does not define. */ /* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t #undef size_t