source: trunk/third/gettext/acconfig.h @ 16931

Revision 16931, 1.4 KB checked in by ghudson, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r16930, which included commits to RCS files with non-trunk default branches.
Line 
1/* Special definitions, processed by autoheader.
2   Copyright (C) 1995-1998, 2001 Free Software Foundation.
3   Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.  */
4
5/* Default value for alignment of strings in .mo file.  */
6#define DEFAULT_OUTPUT_ALIGNMENT 1
7
8#ifndef PARAMS
9# if __STDC__
10#  define PARAMS(args) args
11# else
12#  define PARAMS(args) ()
13# endif
14#endif
15
16@TOP@
17
18/* Define to the name of the distribution.  */
19#undef PACKAGE
20
21/* Define to the version of the distribution.  */
22#undef VERSION
23
24@BOTTOM@
25
26/* We don't test for the basename function but still want to use the
27   version in the libc when compiling for a system using glibc.  */
28#ifdef __GNU_LIBRARY__
29# define HAVE_BASENAME  1
30#endif
31
32
33/* A file name cannot consist of any character possible.  INVALID_PATH_CHAR
34   contains the characters not allowed.  */
35#ifndef MSDOS
36# define        INVALID_PATH_CHAR "\1\2\3\4\5\6\7\10\11\12\13\14\15\16\17\20\21\22\23\24\25\26\27\30\31\32\33\34\35\36\37 \177/"
37#else
38/* Something like this for MSDOG.  */
39# define        INVALID_PATH_CHAR "\1\2\3\4\5\6\7\10\11\12\13\14\15\16\17\20\21\22\23\24\25\26\27\30\31\32\33\34\35\36\37 \177\\:."
40#endif
41
42/* This is the page width for the message_print function.  It should
43   not be set to more than 79 characters (Emacs users will appreciate
44   it).  It is used to wrap the msgid and msgstr strings, and also to
45   wrap the file position (#:) comments.  */
46#define PAGE_WIDTH 79
Note: See TracBrowser for help on using the repository browser.