~ubuntu-branches/ubuntu/vivid/mariadb-5.5/vivid

« back to all changes in this revision

Viewing changes to storage/tokudb/ft-index/third_party/xz-4.999.9beta/src/xz/private.h

  • Committer: Package Import Robot
  • Author(s): James Page, Otto Kekäläinen
  • Date: 2014-02-17 16:51:52 UTC
  • mfrom: (2.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140217165152-k315d3175g865kkx
Tags: 5.5.35-1
[ Otto Kekäläinen ]
* New upstream release, fixing the following security issues:
  - Buffer overflow in client/mysql.cc (Closes: #737597).
    - CVE-2014-0001
  - http://www.oracle.com/technetwork/topics/security/cpujan2014-1972949.html
    - CVE-2013-5891
    - CVE-2013-5908
    - CVE-2014-0386
    - CVE-2014-0393
    - CVE-2014-0401
    - CVE-2014-0402
    - CVE-2014-0412
    - CVE-2014-0420
    - CVE-2014-0437
* Upstream https://mariadb.atlassian.net/browse/MDEV-4902
  fixes compatibility with Bison 3.0 (Closes: #733002)
* Updated Russian debconf translation (Closes: #734426)
* Updated Japanese debconf translation (Closes: #735284)
* Updated French debconf translation (Closes: #736480)
* Renamed SONAME properly (Closes: #732967)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
 
2
// vim: expandtab:ts=8:sw=4:softtabstop=4:
 
3
///////////////////////////////////////////////////////////////////////////////
 
4
//
 
5
/// \file       private.h
 
6
/// \brief      Common includes, definions, and prototypes
 
7
//
 
8
//  Author:     Lasse Collin
 
9
//
 
10
//  This file has been put into the public domain.
 
11
//  You can do whatever you want with this file.
 
12
//
 
13
///////////////////////////////////////////////////////////////////////////////
 
14
 
 
15
#include "sysdefs.h"
 
16
#include "mythread.h"
 
17
#include "lzma.h"
 
18
 
 
19
#include <sys/types.h>
 
20
#include <sys/stat.h>
 
21
#include <errno.h>
 
22
#include <signal.h>
 
23
#include <locale.h>
 
24
#include <stdio.h>
 
25
#include <unistd.h>
 
26
 
 
27
#ifdef ENABLE_NLS
 
28
#       include <libintl.h>
 
29
#       define _(msgid) gettext(msgid)
 
30
#       define N_(msgid1, msgid2, n) ngettext(msgid1, msgid2, n)
 
31
#else
 
32
#       define _(msgid) (msgid)
 
33
#       define N_(msgid1, msgid2, n) ((n) == 1 ? (msgid1) : (msgid2))
 
34
#endif
 
35
 
 
36
#ifndef STDIN_FILENO
 
37
#       define STDIN_FILENO (fileno(stdin))
 
38
#endif
 
39
 
 
40
#ifndef STDOUT_FILENO
 
41
#       define STDOUT_FILENO (fileno(stdout))
 
42
#endif
 
43
 
 
44
#ifndef STDERR_FILENO
 
45
#       define STDERR_FILENO (fileno(stderr))
 
46
#endif
 
47
 
 
48
#include "main.h"
 
49
#include "coder.h"
 
50
#include "message.h"
 
51
#include "args.h"
 
52
#include "hardware.h"
 
53
#include "file_io.h"
 
54
#include "options.h"
 
55
#include "signals.h"
 
56
#include "suffix.h"
 
57
#include "util.h"