diff options
| author | Jari Aalto <jari.aalto@cante.net> | 1998-04-17 19:52:44 +0000 |
|---|---|---|
| committer | Jari Aalto <jari.aalto@cante.net> | 2009-09-12 16:46:51 +0000 |
| commit | cce855bc5b117cb7ae70064131120687bc69fac0 (patch) | |
| tree | 39c7a4ec8f6d22ef03df74f2684e6a04fef10399 /config.h.in | |
| parent | e8ce775db824de329b81293b4e5d8fbd65624528 (diff) | |
| download | android_external_bash-cce855bc5b117cb7ae70064131120687bc69fac0.tar.gz android_external_bash-cce855bc5b117cb7ae70064131120687bc69fac0.tar.bz2 android_external_bash-cce855bc5b117cb7ae70064131120687bc69fac0.zip | |
Imported from ../bash-2.02.tar.gz.
Diffstat (limited to 'config.h.in')
| -rw-r--r-- | config.h.in | 66 |
1 files changed, 53 insertions, 13 deletions
diff --git a/config.h.in b/config.h.in index cd1ef95..39bcbd5 100644 --- a/config.h.in +++ b/config.h.in @@ -110,6 +110,14 @@ evaluation command. */ #undef DPAREN_ARITHMETIC +/* Define EXTENDED_GLOB if you want the ksh-style [*+@?!](patlist) extended + pattern matching. */ +#undef EXTENDED_GLOB + +/* Define COND_COMMAND if you want the ksh-style [[...]] conditional + command. */ +#undef COND_COMMAND + /* Define AFS if you are using Transarc's AFS. */ #undef AFS @@ -170,6 +178,15 @@ /* Define if on MINIX. */ #undef _MINIX +/* The number of bytes in a int. */ +#undef SIZEOF_INT + +/* The number of bytes in a long. */ +#undef SIZEOF_LONG + +/* The number of bytes in a pointer to char. */ +#undef SIZEOF_CHAR_P + /* Define to `long' if <sys/types.h> doesn't define. */ #undef off_t @@ -182,6 +199,27 @@ /* Define to `int' if <sys/types.h> doesn't define. */ #undef pid_t +/* Define to `int' if <sys/types.h> doesn't define. */ +#undef int32_t + +/* Define to `unsigned int' if <sys/types.h> doesn't define. */ +#undef u_int32_t + +/* Define to `int' if <sys/types.h> doesn't define. */ +#undef ptrdiff_t + +/* Define to `unsigned' if <sys/types.h> doesn't define. */ +#undef size_t + +/* Define to `int' if <sys/types.h> doesn't define. */ +#undef uid_t + +/* Define to `long' if <sys/types.h> doesn't define. */ +#undef clock_t + +/* Define to `long' if <sys/types.h> doesn't define. */ +#undef time_t + /* Define if the system does not provide POSIX.1 features except with this defined. */ #undef _POSIX_1_SOURCE @@ -197,9 +235,6 @@ before release 3. */ #undef SETVBUF_REVERSED -/* Define to `unsigned' if <sys/types.h> doesn't define. */ -#undef size_t - /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be automatically deduced at run-time. @@ -212,21 +247,12 @@ /* Define if you have the ANSI C header files. */ #undef STDC_HEADERS -/* Define if `sys_siglist' is declared by <signal.h>. */ +/* Define if `sys_siglist' is declared by <signal.h> or <unistd.h>. */ #undef SYS_SIGLIST_DECLARED /* Define if `_sys_siglist' is declared by <signal.h> or <unistd.h>. */ #undef UNDER_SYS_SIGLIST_DECLARED -/* Define to `int' if <sys/types.h> doesn't define. */ -#undef uid_t - -/* Define to `long' if <sys/types.h> doesn't define. */ -#undef clock_t - -/* Define to `long' if <sys/types.h> doesn't define. */ -#undef time_t - #undef DUP2_BROKEN #undef HAVE_GETRLIMIT @@ -307,6 +333,8 @@ #undef STRUCT_WINSIZE_IN_SYS_IOCTL +#undef STRUCT_WINSIZE_IN_TERMIOS + #undef SPEED_T_IN_SYS_TYPES #undef CAN_REDEFINE_GETENV @@ -395,6 +423,15 @@ /* Define if you have the strerror function. */ #undef HAVE_STRERROR +/* Define if you have the strtod function. */ +#undef HAVE_STRTOD + +/* Define if you have the strtol function. */ +#undef HAVE_STRTOL + +/* Define if you have the strtoul function. */ +#undef HAVE_STRTOUL + /* Define if you have the tcgetattr function. */ #undef HAVE_TCGETATTR @@ -496,6 +533,9 @@ /* Define if you have the <libintl.h> header file. */ #undef HAVE_LIBINTL_H +/* Define if you have the <stddef.h> header file. */ +#undef HAVE_STDDEF_H + #undef HAVE_LIBDL #undef HAVE_LIBSUN |
