~ubuntu-branches/ubuntu/edgy/xorg-server/edgy-updates

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Parra Novo
  • Date: 2006-07-25 20:06:28 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060725200628-gjmmd9gxfxdc4ejs
Tags: 1:1.1.1-0ubuntu1
* New Upstream version
* Changed Build-Depends from mesa-swrast-source to mesa-swx11-source,
  following Debian package nomenclature
* Re-did 12_security_policy_in_etc.diff for 1.1.1
* Dropped 15_security_allocate_local.diff (applied upstream)
* Dropped 16_SECURITY_setuid.diff (applied upstream)
* Dropped 000_ubuntu_fix_read_kernel_mapping.patch (applied upstream)
* Dropped 002_ubuntu_fix_for_certain_intel_chipsets.patch (applied upstream)
* Updated versioned Build-Depends on mesa-swx11-source to version
  6.5.0.cvs.20060725-0ubuntu1
* Added arrayobj.c, arrayobj.h, bitset.h & rbadaptors.h to
  GL/symlink-mesa.sh (linked from mesa-swx11-source)
* Added arrayobj.c to default build target on GL/mesa/main

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* A Bison parser, made by GNU Bison 2.1.  */
 
1
/* A Bison parser, made from parser.y, by GNU bison 1.75.  */
2
2
 
3
3
/* Skeleton parser for Yacc-like parsing with Bison,
4
 
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 
4
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002 Free Software Foundation, Inc.
5
5
 
6
6
   This program is free software; you can redistribute it and/or modify
7
7
   it under the terms of the GNU General Public License as published by
15
15
 
16
16
   You should have received a copy of the GNU General Public License
17
17
   along with this program; if not, write to the Free Software
18
 
   Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
 
   Boston, MA 02110-1301, USA.  */
 
18
   Foundation, Inc., 59 Temple Place - Suite 330,
 
19
   Boston, MA 02111-1307, USA.  */
20
20
 
21
21
/* As a special exception, when this file is copied by Bison into a
22
22
   Bison output file, you may use that output file without restriction.
23
23
   This special exception was added by the Free Software Foundation
24
24
   in version 1.24 of Bison.  */
25
25
 
 
26
#ifndef BISON_PARSER_H
 
27
# define BISON_PARSER_H
 
28
 
26
29
/* Tokens.  */
27
30
#ifndef YYTOKENTYPE
28
31
# define YYTOKENTYPE
42
45
     T_LINE_COMMENT = 268
43
46
   };
44
47
#endif
45
 
/* Tokens.  */
46
48
#define T_VIRTUAL 258
47
49
#define T_DISPLAY 259
48
50
#define T_WALL 260
58
60
 
59
61
 
60
62
 
61
 
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
 
63
#ifndef YYSTYPE
62
64
#line 56 "parser.y"
63
 
typedef union YYSTYPE {
 
65
typedef union {
64
66
    DMXConfigTokenPtr      token;
65
67
    DMXConfigStringPtr     string;
66
68
    DMXConfigNumberPtr     number;
75
77
    DMXConfigSubPtr        subentry;
76
78
    DMXConfigVirtualPtr    virtual;
77
79
    DMXConfigEntryPtr      entry;
78
 
} YYSTYPE;
79
 
/* Line 1447 of yacc.c.  */
80
 
#line 81 "parser.h"
81
 
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
82
 
# define YYSTYPE_IS_DECLARED 1
83
 
# define YYSTYPE_IS_TRIVIAL 1
 
80
} yystype;
 
81
/* Line 1281 of /usr/local/share/bison/yacc.c.  */
 
82
#line 83 "parser.h"
 
83
# define YYSTYPE yystype
84
84
#endif
85
85
 
86
86
extern YYSTYPE yylval;
87
87
 
88
88
 
 
89
#endif /* not BISON_PARSER_H */
89
90