fixed license tag
[platform/upstream/acl.git] / include / config.h.in
1 /*
2  * Copyright (c) 2002 Silicon Graphics, Inc.  All Rights Reserved.
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  * @configure_input@
18  */
19
20 /* Define if you have the attr/error_context.h header */
21 #undef HAVE_ATTR_ERROR_CONTEXT_H
22
23 /* Define if you want Posix compliant getfacl and setfacl utilities
24    without extensions */
25 #undef POSIXLY_CORRECT
26
27 /* The number of bytes in a int.  */
28 #undef SIZEOF_INT
29
30 /* The number of bytes in a long.  */
31 #undef SIZEOF_LONG
32
33 /* The number of bytes in a short.  */
34 #undef SIZEOF_SHORT
35
36 /* Define if you have attribute((visibility(hidden))) in gcc. */
37 #undef HAVE_VISIBILITY_ATTRIBUTE
38
39 /* Define if you want gettext (I18N) support */
40 #undef ENABLE_GETTEXT
41
42 #ifdef ENABLE_GETTEXT
43 # include <libintl.h>
44 # define _(x)                   gettext(x)
45 #else
46 # define _(x)                   (x)
47 # define textdomain(d)          do { } while (0)
48 # define bindtextdomain(d,dir)  do { } while (0)
49 #endif
50 #include <locale.h>
51
52 /* On GNU/kFreeBSD, ENODATA is not defined in the system headers */
53 #include <errno.h>
54 #ifndef ENODATA
55 # define ENODATA ENOATTR
56 #endif