~ubuntu-branches/ubuntu/precise/xorg-server/precise

« back to all changes in this revision

Viewing changes to hw/dmx/config/parser.h

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2011-01-31 19:45:19 UTC
  • mfrom: (1.1.38 upstream) (0.1.19 experimental)
  • Revision ID: james.westby@ubuntu.com-20110131194519-fx30d1zsg83invba
Tags: 2:1.9.99.901+git20110131.be3be758-0ubuntu1
* Merge from (unreleased) debian-experimental.  Remaining Ubuntu changes:
  - rules:
    + Disable SELinux, libaudit-dev is not in main yet. (LP: #406226)
    + Enable xcsecurity. (LP: #247537)
    + Add --with-extra-module-dir to support GL alternatives.
  - control: 
    + Xvfb depends on xauth, x11-xkb-utils. (LP: #500102)
    + Add breaks for incompatible drivers. (LP: #614993)
    + Drop libaudit-dev from build-deps.
  - local/xvfb-run*: Add correct docs about error codes. (LP #328205)
  - debian/patches:
    + 100_rethrow_signals.patch:
      When aborting, re-raise signals for apport
    + 109_fix-swcursor-crash.patch:
      Avoid dereferencing null pointer while reloading cursors during
      resume. (LP: #371405)
    + 111_armel-drv-fallbacks.patch:
      Add support for armel driver fallbacks.
    + 121_only_switch_vt_when_active.diff:
      Add a check to prevent the X server from changing the VT when killing
      GDM from the console.
    + 122_xext_fix_card32_overflow_in_xauth.patch:
      Fix server crash when “xauth generate” is called with large timeout.
    + 157_check_null_modes.patch, 162_null_crtc_in_rotation.patch,
      166_nullptr_xinerama_keyrepeat.patch, 167_nullptr_xisbread.patch
      169_mipointer_nullptr_checks.patch,
      172_cwgetbackingpicture_nullptr_check.patch:
      Fix various segfaults in xserver by checking pointers for NULL
      values before dereferencing them.
    + 165_man_xorg_conf_no_device_ident.patch
      Correct man page
    + 168_glibc_trace_to_stderr.patch:
      Report abort traces to stderr instead of terminal
    + 184_virtual_devices_autodetect.patch:
      Use vesa for qemu device, which is not supported by cirrus
    + 188_default_primary_to_first_busid.patch:
      Pick the first device and carry on (LP: #459512)
    + 190_cache-xkbcomp_output_for_fast_start_up.patch:
    + 191-Xorg-add-an-extra-module-path.patch:
      Add support for the alternatives module path.
    + 198_nohwaccess.patch:
      Adds a -nohwaccess argument to make X not access the hardware
      ports directly.
    + 200_randr-null.patch:
      Clarify a pointer initialization.
    + 206_intel_8xx_default_to_fbdev.patch:
      Makes 8xx class intel GPUs default to fbdev for stability. (LP: #633593)
* Refresh 121_only_switch_vt_when_active.diff for new upstream.
* Drop 187_edid_quirk_hp_nc8430.patch; upstream.
* Drop 189_xserver_1.5.0_bg_none_root.patch; functionality now upstream.
* Refresh 190_cache-xkbcomp_output_for_fast_start_up.patch for new upstream.
* Drop 197_xvfb-randr.patch:
  - miRandR, which this used, has been removed from the server. 
* Drop 204_fix-neg-sync-transition.patch; upstream.
* Drop 207_dga_master_device.patch; upstream.
* Drop 208_switch_on_release.diff; upstream.
* debian/patches/209_add_legacy_bgnone_option.patch:
  - Add "-nr" as a synonym for "-background none" to ease the transition from
    the old 189_xserver_1.5.0_bg_none_root.patch patch.  Can be dropped once
    all the ?DM have been updated to use the new option.
* debian/control:
  - Add Breaks: to xserver-xorg-video-8 and current fglrx.  These proprietary
    drivers don't yet have appropriate dependency information, so manually
    handle them here to prevent broken upgrades.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* A Bison parser, made by GNU Bison 2.4.3.  */
2
 
 
3
 
/* Skeleton interface for Bison's Yacc-like parsers in C
4
 
   
5
 
      Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
6
 
   2009, 2010 Free Software Foundation, Inc.
7
 
   
8
 
   This program is free software: you can redistribute it and/or modify
9
 
   it under the terms of the GNU General Public License as published by
10
 
   the Free Software Foundation, either version 3 of the License, or
11
 
   (at your option) any later version.
12
 
   
13
 
   This program is distributed in the hope that it will be useful,
14
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
   GNU General Public License for more details.
17
 
   
18
 
   You should have received a copy of the GNU General Public License
19
 
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
 
 
21
 
/* As a special exception, you may create a larger work that contains
22
 
   part or all of the Bison parser skeleton and distribute that work
23
 
   under terms of your choice, so long as that work isn't itself a
24
 
   parser generator using the skeleton or a modified version thereof
25
 
   as a parser skeleton.  Alternatively, if you modify or redistribute
26
 
   the parser skeleton itself, you may (at your option) remove this
27
 
   special exception, which will cause the skeleton and the resulting
28
 
   Bison output files to be licensed under the GNU General Public
29
 
   License without this special exception.
30
 
   
31
 
   This special exception was added by the Free Software Foundation in
32
 
   version 2.2 of Bison.  */
33
 
 
34
 
 
35
 
/* Tokens.  */
36
 
#ifndef YYTOKENTYPE
37
 
# define YYTOKENTYPE
38
 
   /* Put the tokens into the symbol table, so that GDB and other debuggers
39
 
      know about them.  */
40
 
   enum yytokentype {
41
 
     T_VIRTUAL = 258,
42
 
     T_DISPLAY = 259,
43
 
     T_WALL = 260,
44
 
     T_OPTION = 261,
45
 
     T_PARAM = 262,
46
 
     T_STRING = 263,
47
 
     T_DIMENSION = 264,
48
 
     T_OFFSET = 265,
49
 
     T_ORIGIN = 266,
50
 
     T_COMMENT = 267,
51
 
     T_LINE_COMMENT = 268
52
 
   };
53
 
#endif
54
 
/* Tokens.  */
55
 
#define T_VIRTUAL 258
56
 
#define T_DISPLAY 259
57
 
#define T_WALL 260
58
 
#define T_OPTION 261
59
 
#define T_PARAM 262
60
 
#define T_STRING 263
61
 
#define T_DIMENSION 264
62
 
#define T_OFFSET 265
63
 
#define T_ORIGIN 266
64
 
#define T_COMMENT 267
65
 
#define T_LINE_COMMENT 268
66
 
 
67
 
 
68
 
 
69
 
 
70
 
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
71
 
typedef union YYSTYPE
72
 
{
73
 
 
74
 
/* Line 1685 of yacc.c  */
75
 
#line 56 "parser.y"
76
 
 
77
 
    DMXConfigTokenPtr      token;
78
 
    DMXConfigStringPtr     string;
79
 
    DMXConfigNumberPtr     number;
80
 
    DMXConfigPairPtr       pair;
81
 
    DMXConfigFullDimPtr    fdim;
82
 
    DMXConfigPartDimPtr    pdim;
83
 
    DMXConfigDisplayPtr    display;
84
 
    DMXConfigWallPtr       wall;
85
 
    DMXConfigOptionPtr     option;
86
 
    DMXConfigParamPtr      param;
87
 
    DMXConfigCommentPtr    comment;
88
 
    DMXConfigSubPtr        subentry;
89
 
    DMXConfigVirtualPtr    virtual;
90
 
    DMXConfigEntryPtr      entry;
91
 
 
92
 
 
93
 
 
94
 
/* Line 1685 of yacc.c  */
95
 
#line 96 "parser.h"
96
 
} YYSTYPE;
97
 
# define YYSTYPE_IS_TRIVIAL 1
98
 
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
99
 
# define YYSTYPE_IS_DECLARED 1
100
 
#endif
101
 
 
102
 
extern YYSTYPE yylval;
103
 
 
104