]> git.ipfire.org Git - thirdparty/glibc.git/blob - locale/programs/config.h
2.5-18.1
[thirdparty/glibc.git] / locale / programs / config.h
1 /* Configuration for localedef program.
2 Copyright (C) 1995,1996,1997,1998,2000,2005 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1995.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License version 2 as
8 published by the Free Software Foundation.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18
19 #ifndef _LD_CONFIG_H
20 #define _LD_CONFIG_H 1
21
22 /* Use the internal textdomain used for libc messages. */
23 #define PACKAGE _libc_intl_domainname
24 #ifndef VERSION
25 /* Get libc version number. */
26 #include "../../version.h"
27 #endif
28
29 #define DEFAULT_CHARMAP "ANSI_X3.4-1968" /* ASCII */
30
31 #ifndef PARAMS
32 # if __STDC__
33 # define PARAMS(args) args
34 # else
35 # define PARAMS(args) ()
36 # endif
37 #endif
38
39 /* This must be one higer than the last used LC_xxx category value. */
40 #define __LC_LAST 13
41
42 #include_next <config.h>
43 #endif