[SCM] taopm/master: build-depends on libaudiofile-dev

tiago at users.alioth.debian.org tiago at users.alioth.debian.org
Fri Apr 19 15:27:13 UTC 2013


The following commit has been merged in the master branch:
commit 819bc70d6cbc2a66bc4050a112859be92ef52dd4
Author: Tiago Bortoletto Vaz <tiago at debian.org>
Date:   Fri Apr 19 10:44:21 2013 -0400

    build-depends on libaudiofile-dev

diff --git a/debian/control b/debian/control
index 492263e..486cfd5 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Maintainer: Debian Multimedia Maintainers <pkg-multimedia-maintainers at lists.alioth.debian.org>
 Uploaders: Tiago Bortoletto Vaz <tiago at debian.org>
 DM-Upload-Allowed: yes
-Build-Depends: debhelper (>=9), dh-exec (>=0.3)
+Build-Depends: debhelper (>=9), dh-exec (>=0.3), libaudiofile-dev
 Standards-Version: 3.9.3
 Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/taopm.git
 Vcs-Git: git://git.debian.org/git/pkg-multimedia/taopm.git
diff --git a/doc/ClassReference/tao.doxy.cnf b/doc/ClassReference/tao.doxy.cnf
deleted file mode 100644
index 274ba21..0000000
--- a/doc/ClassReference/tao.doxy.cnf
+++ /dev/null
@@ -1,265 +0,0 @@
-# This file describes the settings to be used by doxygen for a project
-#
-# All text after a hash (#) is considered a comment and will be ignored
-# The format is:
-#       TAG = value [value, ...]
-# Values that contain spaces should be placed between quotes (" ")
-
-#---------------------------------------------------------------------------
-# General configuration options
-#---------------------------------------------------------------------------
-
-# The PROJECT_NAME tag is a single word (or a sequence of word surrounded
-# by quotes) that should identify the project. 
-
-PROJECT_NAME         = Tao
-
-# The PROJECT_NUMBER tag can be used to enter a project or revision number.
-# This could be handy for archiving the generated documentation or 
-# if some version control system is used.
-
-PROJECT_NUMBER       = 1.0-beta-19Apr2013
-
-# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
-# base path where the generated documentation will be put. 
-# If a relative path is entered, it will be relative to the location 
-# where doxygen was started. If left blank the current directory will be used.
-
-OUTPUT_DIRECTORY     = 
-
-# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be
-# put in front of it. If left blank `html' will be used as the default path.
-
-HTML_OUTPUT          = html
-
-# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be
-# put in front of it. If left blank `latex' will be used as the default path.
-
-LATEX_OUTPUT          = latex
-
-# The HTML_HEADER tag can be used to specify a personal HTML header for 
-# each generated HTML page. If it is left blank doxygen will generate a 
-# standard header.
-
-HTML_HEADER          = 
-
-# The HTML_FOOTER tag can be used to specify a personal HTML footer for 
-# each generated HTML page. If it is left blank doxygen will generate a 
-# standard footer.
-
-HTML_FOOTER          =
-
-# The QUIET tag can be used to turn on/off the messages that are generated
-# by doxygen. Possible values are YES and NO. If left blank NO is used.
-
-QUIET                = NO
-
-# The WARNINGS tag can be used to turn on/off the warning messages that are
-# generated by doxygen. Possible values are YES and NO. If left blank
-# NO is used.
-
-WARNINGS             = YES
-
-# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
-# top of each page. A value of NO (the default) enables the index and the
-# value YES disables it.
-
-DISABLE_INDEX        = NO
-
-# If the EXTRACT_ALL tag is set to YES all classes and functions will be
-# included in the documentation, even if no documentation was available.
-
-EXTRACT_ALL          = YES
-
-# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
-# will be included in the documentation.
-
-EXTRACT_PRIVATE      = NO
-
-# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
-# undocumented members inside documented classes or files.
-
-HIDE_UNDOC_MEMBERS   = NO
-
-# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
-# generate Latex output.
-
-GENERATE_LATEX       = YES
-
-# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
-# generate HTML output
-
-GENERATE_HTML        = YES
-
-# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
-# include brief member descriptions after the members that are listed in 
-# the file and class documentation (similar to JavaDoc).
-# Set to NO to disable this.
-
-BRIEF_MEMBER_DESC = YES
-
-# If the FULL_PATH_NAMES tag is set to YES Doxygen will prepend the full
-# path before files name in the file list and in the header files. If set
-# to NO the shortest path that makes the file name unique will be used
-
-FULL_PATH_NAMES = NO
-
-#---------------------------------------------------------------------------
-# configuration options related to the input files
-#---------------------------------------------------------------------------
-
-# The INPUT tag is used to specify the files and/or directories that contain 
-# documented source files. You may enter file names like "myfile.cpp" or 
-# directories like "/usr/src/myproject". Separate the files or directories 
-# with spaces.
-
-INPUT            = ../../include ../../libtao ../../taoparse ../../tao2aiff
-
-# If the value of the INPUT tag contains directories, you can use the 
-# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp 
-# and *.h) to filter out the source-files in the directories. If left 
-# blank all files are included.
-
-FILE_PATTERNS    = *.cc *.h *.hh *.yy *.ll
-
-# The EXAMPLE_PATH tag can be used to specify one or more files or 
-# directories that contain example code fragments that are included (see 
-# the \include command).
-
-EXAMPLE_PATH     =
-
-# The RECURSIVE tag can be used to turn specify whether or not subdirectories
-# should be searched for input files as well. Possible values are YES and NO.
-# If left blank NO is used.
-
-RECURSIVE        = NO
-
-# The INPUT_FILTER tag can be used to specify a program that doxygen should
-# invoke to filter for each input file. Doxygen will invoke the filter program 
-# by executing (via popen()) the command <filter> <input-file>, where <filter>
-# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
-# input file. Doxygen will then use the output that the filter program writes
-# to standard output.
-
-INPUT_FILTER     = 
-
-#---------------------------------------------------------------------------
-# Configuration options related to the preprocessor 
-#---------------------------------------------------------------------------
-
-# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
-# evaluate all C-preprocessor directives found in the sources and include
-# files.
-
-ENABLE_PREPROCESSING = YES
-
-# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
-# names in the source code. If set to NO (the default) only conditional 
-# compilation will be performed.
-
-MACRO_EXPANSION = NO
-
-# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
-# in the INCLUDE_PATH (see below) will be search if a #include is found.
-
-SEARCH_INCLUDES = YES
-
-# The INCLUDE_PATH tag can be used to specify one or more directories that
-# contain include files that are not input files but should be processed by
-# the preprocessor.
-
-INCLUDE_PATH = ../../include
-
-# The PREDEFINED tag can be used to specify one or more macro names that
-# are defined before the preprocessor is started (similar to the -D option of
-# gcc). The argument of the tag is a list of macros of the form: name
-# or name=definition (no spaces). In the former case 1 is used as the
-# definition.
-
-PREDEFINED =
-
-# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
-# then the macro expansion is limited to the macros specified with the
-# PREDEFINED tag.
-
-EXPAND_ONLY_PREDEF = NO
-
-#---------------------------------------------------------------------------
-# Configuration options related to external references 
-#---------------------------------------------------------------------------
-
-# The TAGFILES tag can be used to specify one or more tagfiles. 
-
-TAGFILES         =
-
-# When a file name is specified after GENERATE_TAGFILE, doxygen will create
-# a tag file that is based on the input files it reads.
-
-GENERATE_TAGFILE =
-
-# If the ALLEXTERNALS tag is set to YES all external classes will be listed
-# in the class index. If set to NO only the inherited external classes
-# will be listed.
-
-ALLEXTERNALS     = NO
-
-# The PERL_PATH should be the absolute path and name of the perl script
-# interpreter (i.e. the result of `which perl').
-
-PERL_PATH        = /usr/bin/perl
-
-#---------------------------------------------------------------------------
-# Configuration options related to the search engine 
-#---------------------------------------------------------------------------
-
-# The SEARCHENGINE tag specifies whether or not a search engine should be 
-# used. If set to NO the values of all tags below this one will be ignored.
-
-SEARCHENGINE     = NO
-
-# The CGI_NAME tag should be the name of the CGI script that
-# starts the search engine (doxysearch) with the correct parameters.
-# A script with this name will be generated by doxygen.
-
-CGI_NAME         = search.cgi
-
-# The CGI_URL tag should be the absolute URL to the directory where the
-# cgi binaries are located. See the documentation of your http daemon for 
-# details.
-
-CGI_URL          =
-
-# The DOC_URL tag should be the absolute URL to the directory where the
-# documentation is located. If left blank the absolute path to the 
-# documentation, with file:// prepended to it, will be used.
-
-DOC_URL          =
-
-# The DOC_ABSPATH tag should be the absolute path to the directory where the
-# documentation is located. If left blank the directory on the local machine
-# will be used.
-
-DOC_ABSPATH      =
-
-# The BIN_ABSPATH tag must point to the directory where the doxysearch binary
-# is installed.
-
-BIN_ABSPATH      = /usr/local/bin/
-
-# The EXT_DOC_PATHS tag can be used to specify one or more paths to 
-# documentation generated for other projects. This allows doxysearch to search
-# the documentation for these projects as well.
-
-EXT_DOC_PATHS    =
-
-
-
-
-
-
-
-
-
-
diff --git a/doc/UserManual/introduction.tex b/doc/UserManual/introduction.tex
deleted file mode 100644
index e44ccbc..0000000
--- a/doc/UserManual/introduction.tex
+++ /dev/null
@@ -1,121 +0,0 @@
-\chapter{Introduction}
-Welcome to the \tao\ user manual. This manual is for version
-1.0-beta-19Apr2013 built on Fri Apr 19 10:31:15 EDT 2013.
-
-\tao\ is a software package for sound synthesis
-using physical modelling techniques. It is written in C++ and provides
-a kind of virtual material consisting of masses and springs, which can be
-used to construct a wide variety of virtual musical instruments. New
-instruments are described using a text-based synthesis language (contained
-in what is referred to as a \tao\ \index{script} script). When a script is
-invoked \tao\ carries out the synthesis described and automatically
-produces 3-D animated visualisations of the instruments. The animations
-show the actual acoustic waves propagating through the instruments
-and play a central role in \tao's user interface. In particular they
-make it much easier to think of the instruments as tangible physical
-objects rather than abstract synthesis algorithms.
-
-\tao\ will eventually come with full documentation for the C++ class
-library API (application programming interface) so that it can also
-be used by those who wish to write their own C++ applications
-incorporating \tao's capabilities. This is not complete at the present
-time.
-
-\section{Where to find \tao}
-\tao\ is available from the download section of \TaoWebSite
-
-This user manual is also available for separate download either as a
-tar'd gzip'd archive of HTML files or a gzip'd postscript file.
-
-\section{Who was it designed for?}
-\tao\ was conceived as a compositional tool for electroacoustic and
-computer music. Therefore more emphasis has been placed on its ability
-to produce a wide range of interesting and complex sounds than on
-catering for traditional music based on scales, rhythms, harmony etc.
-From a personal perspective I wanted to design a synthesis program
-which would allow me to deal with tangible physical instruments
-rather than abstract synthesis algorithms. I wanted to be able to
-construct virtual musical instruments with very complex behaviours and
-experiment with them in an intuitive physical manner.
-
-\section{How \tao\ is structured}
-\tao\ consists of a library of C++ classes for building synthesis
-scenarios. The classes provide the means for creating
-primitive acoustic building blocks, coupling these building blocks together
-into more complex instruments, applying external excitations, and
-generating sound output from the instruments. \tao's synthesis language
-provides the same functionality as the C++ API but is easier to use. In
-addition to providing a language for creating virtual instruments it
-also provides an algorithmic score language for playing them. 
-
-From the user's perspective the synthesis language appears to be interpreted
-rather than compiled since a script may be invoked with a simple one-line
-command. In reality though this process involves translating the \tao\
-script into C++ first, linking it with the C++ \tao\ library
-\Filename{libtao.so} and then invoking the executable produced. You
-shouldn't have to worry about the details of this process when using the
-synthesis language interface though.
-
-\section{What this manual contains}
-This user manual is divided into eight chapters as follows:
-
-\begin{description}
-\item[1. Introduction] This introductory chapter.
-\item[2. Building and Installing \tao] Instructions on where
-to obtain the \tao\ distribution and how to build and install it.
-\item[3. Conceptual Overview] Introduces the main concepts which should
-be understood before attempting to use \tao.
-\item[4. Getting Started] Skips the details and goes straight to
-a practical example session using \tao.
-\item[5. Tao's User Interface] Self-explanatory.
-\item[5. \tao's Synthesis Language in Detail] Gives a detailed description
-of the synthesis language provided.
-\item[6. Object Method Reference] A detailed reference for all of \tao's
-classes which are available within the synthesis language. 
-\item[7. Tutorial] Gives lots of example scripts describing what they
-do and how.
-\item[8. Closing Comments] General comments about the current state
-of \tao\ and areas for future development. 
-\end{description}
-
-\section{Typographic conventions used}
-This manual adopts a number of typographic conventions
-\index{typographic conventions} which are described below.
-
-The \texttt{monospace} font indicates shell window output,
-filenames and names of environment variables; keywords, functions
-and operators in \tao's synthesis language; and finally verbatim
-examples which should be typed exactly as shown.
-
-The \textbf{\texttt{monospace bold}} font is used in the index to highlight
-entries for keywords, functions and operators in \tao's synthesis language.
-
-The \emph{italic} font indicates important terminology being introduced for
-the first time.
-
-In addition to the above conventions sometimes it is necessary to indicate
-where the user needs to supply some values in a \tao\ script. For example
-in the following script fragment \verb|<pitch>| and \verb|<decay time>| would
-need to be replaced with appropriate values by the user:
-
-\begin{verbatim}
-    String myString(<pitch>, <decay time>);
-\end{verbatim}
-
-Finally \tao\ refers to the entire software package whereas \verb|tao|
-refers to the name of the shell command used for executing a \tao\ script.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/taoparse/taoparser.h b/taoparse/taoparser.h
deleted file mode 100644
index de572b8..0000000
--- a/taoparse/taoparser.h
+++ /dev/null
@@ -1,314 +0,0 @@
-/* A Bison parser, made by GNU Bison 1.875d.  */
-
-/* Skeleton parser for Yacc-like parsing with Bison,
-   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
-
-   This program is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2, or (at your option)
-   any later version.
-
-   This program is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
-
-/* As a special exception, when this file is copied by Bison into a
-   Bison output file, you may use that output file without restriction.
-   This special exception was added by the Free Software Foundation
-   in version 1.24 of Bison.  */
-
-/* Tokens.  */
-#ifndef YYTOKENTYPE
-# define YYTOKENTYPE
-   /* Put the tokens into the symbol table, so that GDB and other debuggers
-      know about them.  */
-   enum yytokentype {
-     INTLIT = 258,
-     FLOATLIT = 259,
-     PITCH = 260,
-     ACCESSPOINT = 261,
-     PARAM = 262,
-     INTEGER = 263,
-     COUNTER = 264,
-     LEFT = 265,
-     RIGHT = 266,
-     TOP = 267,
-     STRING = 268,
-     RECTANGLE = 269,
-     CIRCLE = 270,
-     ELLIPSE = 271,
-     TRIANGLE = 272,
-     BOW = 273,
-     HAMMER = 274,
-     STOP = 275,
-     BOTTOM = 276,
-     CENTRE = 277,
-     CONNECTOR = 278,
-     OUTPUT = 279,
-     ID = 280,
-     STRLIT = 281,
-     AUDIO = 282,
-     RATE = 283,
-     MATHFUNC1 = 284,
-     MATHFUNC2 = 285,
-     STRENGTH = 286,
-     SIGNAL = 287,
-     FLAG = 288,
-     AT = 289,
-     ATFOR = 290,
-     ELLIPSIS = 291,
-     SCORE = 292,
-     FROM = 293,
-     TO = 294,
-     BEFORE = 295,
-     AFTER = 296,
-     EVERY = 297,
-     CONTROLRATE = 298,
-     IF = 299,
-     ELSE = 300,
-     PRINT = 301,
-     NEWLINEKWD = 302,
-     OUTPUTCH = 303,
-     FRACTION = 304,
-     POSITIONKWD = 305,
-     LINEAR = 306,
-     EXPON = 307,
-     PLACEAT = 308,
-     PLACEABOVE = 309,
-     PLACEBELOW = 310,
-     JOIN = 311,
-     LABEL = 312,
-     START = 313,
-     END = 314,
-     STEREO = 315,
-     MONO = 316,
-     QUAD = 317,
-     PLACELEFTOF = 318,
-     PLACERIGHTOF = 319,
-     REMOVE = 320,
-     ACTIVATE = 321,
-     DEACTIVATE = 322,
-     SETMASS = 323,
-     SETPOSITION = 324,
-     SETVELOCITY = 325,
-     SETGRAVITY = 326,
-     SETHEIGHT = 327,
-     SETHARDNESS = 328,
-     SETMAXIMPACTS = 329,
-     RESET = 330,
-     DROP = 331,
-     SETFORCE = 332,
-     GETINSTRUMENT = 333,
-     APPLYFORCE = 334,
-     CLEAR = 335,
-     TRUE = 336,
-     FALSE = 337,
-     INIT = 338,
-     FOR = 339,
-     INCDEC = 340,
-     GETMAGNIFICATION = 341,
-     GETVELOCITY = 342,
-     GETPOSITION = 343,
-     GETMASS = 344,
-     GETNAME = 345,
-     GETGRAVITY = 346,
-     GETHEIGHT = 347,
-     GETDAMPING = 348,
-     GETHARDNESS = 349,
-     GETMAXIMPACTS = 350,
-     NUMBEROFIMPACTS = 351,
-     GETFORCE = 352,
-     ASPITCH = 353,
-     ASOCTAVE = 354,
-     ASFREQUENCY = 355,
-     ASNAME = 356,
-     SETMAGNIFICATION = 357,
-     SETDAMPING = 358,
-     RESETDAMPING = 359,
-     SETDECAY = 360,
-     RESETDECAY = 361,
-     LOCKLEFT = 362,
-     LOCKRIGHT = 363,
-     LOCKTOP = 364,
-     LOCKBOTTOM = 365,
-     LOCKPERIMETER = 366,
-     LOCKCORNERS = 367,
-     LOCKENDS = 368,
-     LOCK = 369,
-     IN = 370,
-     ELSEIF = 371,
-     TIME = 372,
-     TICK = 373,
-     GETINITVELOCITY = 374,
-     SETINITVELOCITY = 375,
-     GETAMOUNT = 376,
-     SETAMOUNT = 377,
-     GETXFREQUENCY = 378,
-     GETYFREQUENCY = 379,
-     ASSIGNOP = 380,
-     OR = 381,
-     AND = 382,
-     EQUALITY = 383,
-     RELOP = 384,
-     SHIFTOP = 385,
-     PITCHUNITS = 386,
-     TIMEUNITS = 387,
-     UPERCENT = 388,
-     UMINUS = 389,
-     NOT = 390
-   };
-#endif
-#define INTLIT 258
-#define FLOATLIT 259
-#define PITCH 260
-#define ACCESSPOINT 261
-#define PARAM 262
-#define INTEGER 263
-#define COUNTER 264
-#define LEFT 265
-#define RIGHT 266
-#define TOP 267
-#define STRING 268
-#define RECTANGLE 269
-#define CIRCLE 270
-#define ELLIPSE 271
-#define TRIANGLE 272
-#define BOW 273
-#define HAMMER 274
-#define STOP 275
-#define BOTTOM 276
-#define CENTRE 277
-#define CONNECTOR 278
-#define OUTPUT 279
-#define ID 280
-#define STRLIT 281
-#define AUDIO 282
-#define RATE 283
-#define MATHFUNC1 284
-#define MATHFUNC2 285
-#define STRENGTH 286
-#define SIGNAL 287
-#define FLAG 288
-#define AT 289
-#define ATFOR 290
-#define ELLIPSIS 291
-#define SCORE 292
-#define FROM 293
-#define TO 294
-#define BEFORE 295
-#define AFTER 296
-#define EVERY 297
-#define CONTROLRATE 298
-#define IF 299
-#define ELSE 300
-#define PRINT 301
-#define NEWLINEKWD 302
-#define OUTPUTCH 303
-#define FRACTION 304
-#define POSITIONKWD 305
-#define LINEAR 306
-#define EXPON 307
-#define PLACEAT 308
-#define PLACEABOVE 309
-#define PLACEBELOW 310
-#define JOIN 311
-#define LABEL 312
-#define START 313
-#define END 314
-#define STEREO 315
-#define MONO 316
-#define QUAD 317
-#define PLACELEFTOF 318
-#define PLACERIGHTOF 319
-#define REMOVE 320
-#define ACTIVATE 321
-#define DEACTIVATE 322
-#define SETMASS 323
-#define SETPOSITION 324
-#define SETVELOCITY 325
-#define SETGRAVITY 326
-#define SETHEIGHT 327
-#define SETHARDNESS 328
-#define SETMAXIMPACTS 329
-#define RESET 330
-#define DROP 331
-#define SETFORCE 332
-#define GETINSTRUMENT 333
-#define APPLYFORCE 334
-#define CLEAR 335
-#define TRUE 336
-#define FALSE 337
-#define INIT 338
-#define FOR 339
-#define INCDEC 340
-#define GETMAGNIFICATION 341
-#define GETVELOCITY 342
-#define GETPOSITION 343
-#define GETMASS 344
-#define GETNAME 345
-#define GETGRAVITY 346
-#define GETHEIGHT 347
-#define GETDAMPING 348
-#define GETHARDNESS 349
-#define GETMAXIMPACTS 350
-#define NUMBEROFIMPACTS 351
-#define GETFORCE 352
-#define ASPITCH 353
-#define ASOCTAVE 354
-#define ASFREQUENCY 355
-#define ASNAME 356
-#define SETMAGNIFICATION 357
-#define SETDAMPING 358
-#define RESETDAMPING 359
-#define SETDECAY 360
-#define RESETDECAY 361
-#define LOCKLEFT 362
-#define LOCKRIGHT 363
-#define LOCKTOP 364
-#define LOCKBOTTOM 365
-#define LOCKPERIMETER 366
-#define LOCKCORNERS 367
-#define LOCKENDS 368
-#define LOCK 369
-#define IN 370
-#define ELSEIF 371
-#define TIME 372
-#define TICK 373
-#define GETINITVELOCITY 374
-#define SETINITVELOCITY 375
-#define GETAMOUNT 376
-#define SETAMOUNT 377
-#define GETXFREQUENCY 378
-#define GETYFREQUENCY 379
-#define ASSIGNOP 380
-#define OR 381
-#define AND 382
-#define EQUALITY 383
-#define RELOP 384
-#define SHIFTOP 385
-#define PITCHUNITS 386
-#define TIMEUNITS 387
-#define UPERCENT 388
-#define UMINUS 389
-#define NOT 390
-
-
-
-
-#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
-typedef int YYSTYPE;
-# define yystype YYSTYPE /* obsolescent; will be withdrawn */
-# define YYSTYPE_IS_DECLARED 1
-# define YYSTYPE_IS_TRIVIAL 1
-#endif
-
-extern YYSTYPE yylval;
-
-
-

-- 
taopm packaging



More information about the pkg-multimedia-commits mailing list