X-Git-Url: http://review.tizen.org/git/?p=platform%2Fupstream%2Fbash.git;a=blobdiff_plain;f=config.h.in;h=08af2ba8999d87bce64cd9634f5ea3c9360c1d03;hp=7fde761b427497926525b74bdd53a7a683d0bcda;hb=HEAD;hpb=95732b497d12c98613bb3c5db16b61f377501a59 diff --git a/config.h.in b/config.h.in index 7fde761..08af2ba 100644 --- a/config.h.in +++ b/config.h.in @@ -1,22 +1,22 @@ /* config.h -- Configuration file for bash. */ -/* Copyright (C) 1987-2004 Free Software Foundation, Inc. +/* Copyright (C) 1987-2009,2011-2012 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. - Bash is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2, or (at your option) - any later version. + Bash is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - Bash is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public - License for more details. + Bash is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with Bash; see the file COPYING. If not, write to the Free - Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ + along with Bash. If not, see . +*/ #ifndef _CONFIG_H_ #define _CONFIG_H_ @@ -115,6 +115,10 @@ pattern matching. */ #undef EXTENDED_GLOB +/* Define EXTGLOB_DEFAULT to the value you'd like the extglob shell option + to have by default */ +#undef EXTGLOB_DEFAULT + /* Define COND_COMMAND if you want the ksh-style [[...]] conditional command. */ #undef COND_COMMAND @@ -123,6 +127,10 @@ =~ binary operator in the [[...]] conditional command. */ #define COND_REGEXP +/* Define COPROCESS_SUPPORT if you want support for ksh-like coprocesses and + the `coproc' reserved word */ +#define COPROCESS_SUPPORT + /* Define ARITH_FOR_COMMAND if you want the ksh93-style for (( init; test; step )) do list; done arithmetic for command. */ @@ -152,6 +160,19 @@ memory contents on malloc() and free(). */ #undef MEMSCRAMBLE +/* Define for case-modifying variable attributes; variables modified on + assignment */ +#undef CASEMOD_ATTRS + +/* Define for case-modifying word expansions */ +#undef CASEMOD_EXPANSIONS + +/* Define to make the `direxpand' shopt option enabled by default. */ +#undef DIRCOMPLETE_EXPAND_DEFAULT + +/* Define to make the `globasciiranges' shopt option enabled by default. */ +#undef GLOBASCII_DEFAULT + /* Define AFS if you are using Transarc's AFS. */ #undef AFS @@ -169,6 +190,10 @@ #undef inline +#undef restrict + +#undef volatile + /* Define if cpp supports the ANSI-C stringizing `#' operator */ #undef HAVE_STRINGIZE @@ -196,6 +221,9 @@ /* The number of bytes in a double (hopefully 8). */ #undef SIZEOF_DOUBLE +/* The number of bytes in an `intmax_t'. */ +#undef SIZEOF_INTMAX_T + /* The number of bytes in a `long long', if we have one. */ #undef SIZEOF_LONG_LONG @@ -305,9 +333,23 @@ /* Define to `unsigned int' if doesn't define. */ #undef socklen_t +/* Define to `int' if doesn't define. */ +#undef sig_atomic_t + +#undef HAVE_MBSTATE_T + /* Define if you have quad_t in . */ #undef HAVE_QUAD_T +/* Define if you have wchar_t in . */ +#undef HAVE_WCHAR_T + +/* Define if you have wctype_t in . */ +#undef HAVE_WCTYPE_T + +/* Define if you have wint_t in . */ +#undef HAVE_WINT_T + #undef RLIMTYPE /* Define to the type of elements in the array set by `getgroups'. @@ -345,7 +387,7 @@ #undef HAVE_SYS_ERRLIST #undef HAVE_TZNAME - +#undef HAVE_DECL_TZNAME /* Characteristics of some of the system structures. */ @@ -382,6 +424,18 @@ #undef HAVE_STRUCT_TIMEZONE +#undef WEXITSTATUS_OFFSET + +#undef HAVE_STRUCT_TIMESPEC +#undef TIME_H_DEFINES_STRUCT_TIMESPEC +#undef SYS_TIME_H_DEFINES_STRUCT_TIMESPEC +#undef PTHREAD_H_DEFINES_STRUCT_TIMESPEC + +#undef TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC +#undef HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC +#undef HAVE_STRUCT_STAT_ST_ATIMENSEC +#undef HAVE_STRUCT_STAT_ST_ATIM_ST__TIM_TV_NSEC + /* Characteristics of definitions in the system header files. */ #undef HAVE_GETPW_DECLS @@ -390,6 +444,9 @@ #undef HAVE_LIBC_FNM_EXTMATCH +/* Define if you have and it defines AUDIT_USER_TTY */ +#undef HAVE_DECL_AUDIT_USER_TTY + #undef HAVE_DECL_CONFSTR #undef HAVE_DECL_PRINTF @@ -402,9 +459,9 @@ #undef HAVE_DECL_STRTOLD -#undef STRTOLD_BROKEN +#undef PRI_MACROS_BROKEN -#undef HAVE_MBSTATE_T +#undef STRTOLD_BROKEN /* Define if WCONTINUED is defined in system headers, but rejected by waitpid */ #undef WCONTINUED_BROKEN @@ -465,6 +522,8 @@ /* Define if you have the /dev/stdin device. */ #undef HAVE_DEV_STDIN +/* The type of iconv's `inbuf' argument */ +#undef ICONV_CONST /* Type and behavior of signal handling functions. */ @@ -511,12 +570,26 @@ /* Define if you don't have vprintf but do have _doprnt. */ #undef HAVE_DOPRNT +/* Define if you have the dprintf function. */ +#undef HAVE_DPRINTF + /* Define if you have the dup2 function. */ #undef HAVE_DUP2 +/* Define if you have the eaccess function. */ +#undef HAVE_EACCESS + +/* Define if you have the faccessat function. */ +#undef HAVE_FACCESSAT + /* Define if you have the fcntl function. */ #undef HAVE_FCNTL +/* Define if you have the fpurge/__fpurge function. */ +#undef HAVE_FPURGE +#undef HAVE___FPURGE +#undef HAVE_DECL_FPURGE + /* Define if you have the getaddrinfo function. */ #undef HAVE_GETADDRINFO @@ -568,6 +641,12 @@ /* Define if you have the getwd function. */ #undef HAVE_GETWD +/* Define if you have the iconv function. */ +#undef HAVE_ICONV + +/* Define if you have the imaxdiv function. */ +#undef HAVE_IMAXDIV + /* Define if you have the inet_aton function. */ #undef HAVE_INET_ATON @@ -580,15 +659,21 @@ /* Define if you have the isgraph function. */ #undef HAVE_ISGRAPH -/* Define if you have the isint function in libc */ -#undef HAVE_ISINF_IN_LIBC - /* Define if you have the isprint function. */ #undef HAVE_ISPRINT /* Define if you have the isspace function. */ #undef HAVE_ISSPACE +/* Define if you have the iswctype function. */ +#undef HAVE_ISWCTYPE + +/* Define if you have the iswlower function. */ +#undef HAVE_ISWLOWER + +/* Define if you have the iswupper function. */ +#undef HAVE_ISWUPPER + /* Define if you have the isxdigit function. */ #undef HAVE_ISXDIGIT @@ -601,12 +686,27 @@ /* Define if you have the lstat function. */ #undef HAVE_LSTAT +/* Define if you have the locale_charset function. */ +#undef HAVE_LOCALE_CHARSET + /* Define if you have the mbrlen function. */ #undef HAVE_MBRLEN /* Define if you have the mbrtowc function. */ #undef HAVE_MBRTOWC +/* Define if you have the mbscasecmp function. */ +#undef HAVE_MBSCASECMP + +/* Define if you have the mbschr function. */ +#undef HAVE_MBSCHR + +/* Define if you have the mbscmp function. */ +#undef HAVE_MBSCMP + +/* Define if you have the mbsnrtowcs function. */ +#undef HAVE_MBSNRTOWCS + /* Define if you have the mbsrtowcs function. */ #undef HAVE_MBSRTOWCS @@ -652,6 +752,9 @@ /* Define if you have the setenv function. */ #undef HAVE_SETENV +/* Define if you have the setitimer function. */ +#undef HAVE_SETITIMER + /* Define if you have the setlinebuf function. */ #undef HAVE_SETLINEBUF @@ -661,6 +764,10 @@ /* Define if you have the setostype function. */ #undef HAVE_SETOSTYPE +/* Define if you have the setregid function. */ +#undef HAVE_SETREGID +#undef HAVE_DECL_SETREGID + /* Define if you have the setvbuf function. */ #undef HAVE_SETVBUF @@ -676,9 +783,15 @@ /* Define if you have the strcasecmp function. */ #undef HAVE_STRCASECMP +/* Define if you have the strcasestr function. */ +#undef HAVE_STRCASESTR + /* Define if you have the strchr function. */ #undef HAVE_STRCHR +/* Define if you have the strchrnul function. */ +#undef HAVE_STRCHRNUL + /* Define if you have the strcoll function. */ #undef HAVE_STRCOLL @@ -724,6 +837,9 @@ /* Define if you have the sysconf function. */ #undef HAVE_SYSCONF +/* Define if you have the syslog function. */ +#undef HAVE_SYSLOG + /* Define if you have the tcgetattr function. */ #undef HAVE_TCGETATTR @@ -733,6 +849,12 @@ /* Define if you have the times function. */ #undef HAVE_TIMES +/* Define if you have the towlower function. */ +#undef HAVE_TOWLOWER + +/* Define if you have the towupper function. */ +#undef HAVE_TOWUPPER + /* Define if you have the ttyname function. */ #undef HAVE_TTYNAME @@ -763,15 +885,27 @@ /* Define if you have the wait3 function. */ #undef HAVE_WAIT3 +/* Define if you have the wcrtomb function. */ +#undef HAVE_WCRTOMB + +/* Define if you have the wcscoll function. */ +#undef HAVE_WCSCOLL + /* Define if you have the wcsdup function. */ #undef HAVE_WCSDUP -/* Define if you have the wctomb function. */ -#undef HAVE_WCTOMB +/* Define if you have the wctype function. */ +#undef HAVE_WCTYPE + +/* Define if you have the wcswidth function. */ +#undef HAVE_WCSWIDTH /* Define if you have the wcwidth function. */ #undef HAVE_WCWIDTH +/* and if it works */ +#undef WCWIDTH_BROKEN + /* Presence of certain system include files. */ /* Define if you have the header file. */ @@ -831,12 +965,18 @@ /* Define if you have the header file. */ #undef HAVE_MEMORY_H +/* Define if you have the header file. */ +#undef HAVE_STDBOOL_H + /* Define if you have the header file. */ #undef HAVE_STDDEF_H /* Define if you have the header file. */ #undef HAVE_STDINT_H +/* Define if you have the header file. */ +#undef HAVE_SYSLOG_H + /* Define if you have the header file. */ #undef HAVE_SYS_DIR_H @@ -893,6 +1033,9 @@ /* Define if you have the header file. */ #undef HAVE_TERMIOS_H +/* Define if you have the header file. */ +#undef HAVE_ULIMIT_H + /* Define if you have the header file. */ #undef HAVE_UNISTD_H @@ -913,6 +1056,8 @@ #undef HAVE_LIBSOCKET +/* Are we running the GNU C library, version 2.1 or later? */ +#undef GLIBC21 /* Define if on MINIX. */ #undef _MINIX @@ -966,6 +1111,9 @@ /* Define if you have the `dcgettext' function. */ #undef HAVE_DCGETTEXT +/* Define if you have the `localeconv' function. */ +#undef HAVE_LOCALECONV + /* Define if your system has a working `malloc' function. */ /* #undef HAVE_MALLOC */