~serge-hallyn/ubuntu/raring/libvirt/libvirt-hugepages

« back to all changes in this revision

Viewing changes to gnulib/tests/locale.in.h

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-05-13 15:44:12 UTC
  • mfrom: (1.2.13)
  • Revision ID: package-import@ubuntu.com-20120513154412-fgmn5sxqdzgnzlx3
Tags: 0.9.12-0ubuntu1
* New upstream version:
  * Synchronize with debian packaging:
    - debian/control: Update build depends.
    - debian/libvirt-bin.postrm: Cleanup /var/log/libvirt
      on purge.
    - Bump standards verson (no changes).
    - debian/patches/Don-t-fail-if-we-can-t-setup-avahi.patch: Added
  * Dropped patches:
    - debian/patches/Debianize-libvirt-guests.patch
    - debian/patches/rewrite-lxc-controller-eof-handling-yet-again
    - debian/patches/ubuntu/libnl13.patch
    - debian/patches/ubuntu/fix-lxc-startup-error.patch
    - debian/patches/ubuntu/fix-bridge-fd.patch
    - debian/patches/ubuntu/skip-labelling-network-disks.patch
    - debian/patches/ubuntu/xen-xend-shutdown-detection.patch
    - debian/patches/ubuntu/xen-config-no-vfb-for-hvm.patch
    - debian/patches/debian/Disable-daemon-start-test.patch
    - debian/patches/debian/Disable-gnulib-s-test-nonplocking-pipe.sh.patch
    - debian/patches/ubuntu/9006-default-config-test-case.patch
    - debian/patches/fix-block-migration.patch
    - debian/patches/ubuntu/9022-qemu-unescape-HMP-commands-before-converting-them-to.patch
    - debian/patches/ubuntu/9023-qemu-change-rbd-auth_supported-separation-character-.patch
    - debian/patches/ubuntu/9024-qemu-allow-snapshotting-of-sheepdog-and-rbd-disks.patch
    - debian/patches/9025-qemu-change-rbd-auth_supported-separation-character-.patch
    - debian/patches/ubuntu/arm-gcc-workaround.patch
  * Rediffed:
    - debian/patches/Allow-libvirt-group-to-access-the-socket.patch
    - debian/patches/Disable-failing-virnetsockettest.patch
    - debian/patches/dnsmasq-as-priv-user
    - debian/patches/9002-better_default_uri_virsh.patch
  * debian/control: Add libnl-route-3-dev ass a build depends.
  * debian/patches/libnl3-build-fix.patch: Fix build with libnl3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- buffer-read-only: t -*- vi: set ro: */
2
 
/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3
 
/* A POSIX <locale.h>.
4
 
   Copyright (C) 2007-2011 Free Software Foundation, Inc.
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 as published by
8
 
   the Free Software Foundation; either version 3 of the License, or
9
 
   (at your option) any later version.
10
 
 
11
 
   This program is distributed in the hope that it will be useful,
12
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
   GNU General Public License for more details.
15
 
 
16
 
   You should have received a copy of the GNU General Public License
17
 
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
 
 
19
 
#ifndef _@GUARD_PREFIX@_LOCALE_H
20
 
 
21
 
#if __GNUC__ >= 3
22
 
@PRAGMA_SYSTEM_HEADER@
23
 
#endif
24
 
@PRAGMA_COLUMNS@
25
 
 
26
 
/* The include_next requires a split double-inclusion guard.  */
27
 
#@INCLUDE_NEXT@ @NEXT_LOCALE_H@
28
 
 
29
 
#ifndef _@GUARD_PREFIX@_LOCALE_H
30
 
#define _@GUARD_PREFIX@_LOCALE_H
31
 
 
32
 
/* NetBSD 5.0 mis-defines NULL.  */
33
 
#include <stddef.h>
34
 
 
35
 
/* MacOS X 10.5 defines the locale_t type in <xlocale.h>.  */
36
 
#if @HAVE_XLOCALE_H@
37
 
# include <xlocale.h>
38
 
#endif
39
 
 
40
 
/* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */
41
 
 
42
 
/* The definition of _GL_ARG_NONNULL is copied here.  */
43
 
 
44
 
/* The definition of _GL_WARN_ON_USE is copied here.  */
45
 
 
46
 
/* The LC_MESSAGES locale category is specified in POSIX, but not in ISO C.
47
 
   On systems that don't define it, use the same value as GNU libintl.  */
48
 
#if !defined LC_MESSAGES
49
 
# define LC_MESSAGES 1729
50
 
#endif
51
 
 
52
 
#if @GNULIB_SETLOCALE@
53
 
# if @REPLACE_SETLOCALE@
54
 
#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
55
 
#   undef setlocale
56
 
#   define setlocale rpl_setlocale
57
 
#   define GNULIB_defined_setlocale 1
58
 
#  endif
59
 
_GL_FUNCDECL_RPL (setlocale, char *, (int category, const char *locale));
60
 
_GL_CXXALIAS_RPL (setlocale, char *, (int category, const char *locale));
61
 
# else
62
 
_GL_CXXALIAS_SYS (setlocale, char *, (int category, const char *locale));
63
 
# endif
64
 
_GL_CXXALIASWARN (setlocale);
65
 
#elif defined GNULIB_POSIXCHECK
66
 
# undef setlocale
67
 
# if HAVE_RAW_DECL_SETLOCALE
68
 
_GL_WARN_ON_USE (setlocale, "setlocale works differently on native Windows - "
69
 
                 "use gnulib module setlocale for portability");
70
 
# endif
71
 
#endif
72
 
 
73
 
#if @GNULIB_DUPLOCALE@
74
 
# if @REPLACE_DUPLOCALE@
75
 
#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
76
 
#   undef duplocale
77
 
#   define duplocale rpl_duplocale
78
 
#  endif
79
 
_GL_FUNCDECL_RPL (duplocale, locale_t, (locale_t locale) _GL_ARG_NONNULL ((1)));
80
 
_GL_CXXALIAS_RPL (duplocale, locale_t, (locale_t locale));
81
 
# else
82
 
#  if @HAVE_DUPLOCALE@
83
 
_GL_CXXALIAS_SYS (duplocale, locale_t, (locale_t locale));
84
 
#  endif
85
 
# endif
86
 
# if @HAVE_DUPLOCALE@
87
 
_GL_CXXALIASWARN (duplocale);
88
 
# endif
89
 
#elif defined GNULIB_POSIXCHECK
90
 
# undef duplocale
91
 
# if HAVE_RAW_DECL_DUPLOCALE
92
 
_GL_WARN_ON_USE (duplocale, "duplocale is buggy on some glibc systems - "
93
 
                 "use gnulib module duplocale for portability");
94
 
# endif
95
 
#endif
96
 
 
97
 
#endif /* _@GUARD_PREFIX@_LOCALE_H */
98
 
#endif /* _@GUARD_PREFIX@_LOCALE_H */