Imported Upstream version 2.4.46
[platform/upstream/attr.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 #ifndef __CONFIG_H__
20 #define __CONFIG_H__
21
22 /* Define if you want gettext (I18N) support */
23 #undef ENABLE_GETTEXT
24
25 /* Define to 1 if you have `alloca', as a function or macro. */
26 #undef HAVE_ALLOCA
27
28 /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
29    */
30 #undef HAVE_ALLOCA_H
31
32 #ifdef ENABLE_GETTEXT
33 # include <libintl.h>
34 # define _(x)                   gettext(x)
35 #else
36 # define _(x)                   (x)
37 # define textdomain(d)          do { } while (0)
38 # define bindtextdomain(d,dir)  do { } while (0)
39 #endif
40 #include <locale.h>
41
42 #endif  /* __CONFIG_H__ */