• Home
  • Raw
  • Download

Lines Matching +full:gettext +full:- +full:devel

7  *    http://www.apache.org/licenses/LICENSE-2.0
55 d[FLEXIBLE_ARRAY_MEMBER]; };', the struct hack can be used with pre-C99
57 the size in bytes of such a struct containing an N-element array. */
69 whether the gnulib module canonicalize-lgpl shall be considered present. */
85 whether the gnulib module msvc-nothrow shall be considered present. */
103 single-threaded programs, as well as in multithreaded programs for which
149 /* Define to 1 when the gnulib module free-posix should be tested. */
170 /* Define to 1 when the gnulib module getopt-posix should be tested. */
185 /* Define to 1 when the gnulib module malloc-posix should be tested. */
230 /* Define to 1 when the gnulib module realloc-posix should be tested. */
270 whether the gnulib module unistr/u8-mbtoucr shall be considered present. */
274 whether the gnulib module unistr/u8-uctomb shall be considered present. */
291 /* Define to 1 if you have the <bp-sym.h> header file. */
511 /* Define if the GNU gettext() function is already present or preinstalled. */
566 /* Define to 1 if you have the <mach-o/dyld.h> header file. */
907 /* Define to the sub-directory where libtool stores uninstalled libraries. */
916 /* Define if the mbrtowc function does not return (size_t) -2 for empty input.
949 /* Define to 1 to enable a multithread-safety fix of setlocale. */
956 #define PACKAGE "gettext-runtime"
959 #define PACKAGE_BUGREPORT "bug-gettext@gnu.org"
962 #define PACKAGE_NAME "gettext-runtime"
965 #define PACKAGE_STRING "gettext-runtime UNKNOWN"
968 #define PACKAGE_TARNAME "gettext-runtime"
990 /* Define to 1 if readlink sets errno instead of truncating a too-long link.
1001 /* Define to 1 if setlocale (LC_ALL, NULL) is multithread-safe. */
1004 /* Define to 1 if setlocale (category, NULL) is multithread-safe. */
1081 with -lxnet on HP-UX 11.11. */
1101 /* Define to 1 if needed for POSIX-compatible behavior. */
1105 /* Define to 2 if needed for POSIX-compatible behavior. */
1109 /* Enable POSIX-compatible threading on Solaris. */
1113 /* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
1117 /* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
1121 /* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
1125 /* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
1129 /* Enable extensions specified by ISO/IEC TS 18661-3:2015. */
1133 /* Enable extensions specified by ISO/IEC TR 24731-2:2010. */
1169 /* Define when --enable-shared is used on mingw or Cygwin. */
1187 /* Define for large files, on AIX-style hosts. */
1213 /* _Noreturn works as-is. */
1234 /* For 64-bit time_t on 32-bit mingw. */
1247 or should be listed as async-signal-safe in POSIX
1250 particular, are NOT async-signal-safe.
1348 <https://lists.gnu.org/r/emacs-devel/2019-04/msg01152.html>.
1363 observable state, and always returns exactly once - e.g., does not loop
1389 - function, variable,
1390 - struct, union, struct/union member,
1391 - enumeration, enumeration item,
1392 - typedef,
1419 visible to debuggers etc., even with '-fwhole-program'. */
1440 /* _GL_ATTRIBUTE_FORMAT ((ARCHETYPE, STRING-INDEX, FIRST-TO-CHECK))
1441 declares that the STRING-INDEXth function argument is a format string of
1448 If FIRST-TO-CHECK is not 0, arguments starting at FIRST-TO_CHECK
1492 - function, variable,
1493 - struct, union, struct/union member,
1494 - enumeration, enumeration item,
1495 - typedef,
1543 not meant to be NUL-terminated. */
1589 a non-NULL pointer. */
1599 _GL_ATTRIBUTE_SENTINEL () - The last argument is NULL (requires C99).
1600 _GL_ATTRIBUTE_SENTINEL ((N)) - The (N+1)st argument from the end is NULL. */
1631 Suppress extern inline with HP-UX cc, as it appears to be broken; see
1632 <https://lists.gnu.org/r/bug-texinfo/2013-02/msg00030.html>.
1634 Suppress extern inline with Sun C in standards-conformance mode, as it
1650 https://lists.gnu.org/r/bug-gnulib/2012-12/msg00023.html
1653 … http://muscles.dragonflybsd.org/bulk/clang-master-potential/20141111_102002/logs/ah-tty-0.3.12.log
1656 https://lists.gnu.org/r/bug-gnulib/2014-07/msg00104.html
1662 GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99
1663 inline semantics, unless -fgnu89-inline is used. It defines a macro
1666 GCC 4.2 with -std=c99 or -std=gnu99 implements the GNU C inline
1667 semantics but warns, unless -fgnu89-inline is used:
1669 warning: to disable this warning use -fgnu89-inline or the gnu_inline function attribute
1719 _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"")
1723 _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \
1724 _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \
1738 GCC -Wunused-parameter. */
1776 /* _GL_CMP (n1, n2) performs a three-valued comparison on n1 vs. n2, where
1782 -1 if n1 < n2
1783 The naïve code (n1 > n2 ? 1 : n1 < n2 ? -1 : 0) produces a conditional
1785 This variant (n1 < n2 ? -1 : n1 > n2) produces a conditional with many
1787 The better code (n1 > n2) - (n1 < n2) from Hacker's Delight § 2-9
1789 #define _GL_CMP(n1, n2) (((n1) > (n2)) - ((n1) < (n2)))
1836 that does not contain this definition and that is pre-installed among