summaryrefslogtreecommitdiff
path: root/devel/kdevelop-base/patches/patch-bi
diff options
context:
space:
mode:
Diffstat (limited to 'devel/kdevelop-base/patches/patch-bi')
-rw-r--r--devel/kdevelop-base/patches/patch-bi50
1 files changed, 50 insertions, 0 deletions
diff --git a/devel/kdevelop-base/patches/patch-bi b/devel/kdevelop-base/patches/patch-bi
new file mode 100644
index 00000000000..8141c4ea7cc
--- /dev/null
+++ b/devel/kdevelop-base/patches/patch-bi
@@ -0,0 +1,50 @@
+$NetBSD: patch-bi,v 1.1 2007/03/24 14:01:31 markd Exp $
+
+--- buildtools/lib/parsers/qmake/qmake_lex.h.orig 2007-03-22 00:44:35.000000000 +1200
++++ buildtools/lib/parsers/qmake/qmake_lex.h
+@@ -0,0 +1,45 @@
++/* KDevelop QMake Support
++ *
++ * Copyright 2007 Andreas Pakulat <apaku@gmx.de>
++ *
++ * 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
++ * of the License, 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., 51 Franklin Street, Fifth Floor, Boston, MA
++ * 02110-1301, USA.
++ */
++#ifndef QMAKE_LEX_H
++#define QMAKE_LEX_H
++
++#include "qmake_yacc.hpp"
++#include <iostream>
++
++#ifndef DONT_INCLUDE_FLEXLEXER
++#include "FlexLexer.h"
++#endif
++
++namespace QMake
++{
++ class Lexer : public yyFlexLexer
++ {
++ public:
++ Lexer( std::istream* argin = 0, std::ostream* argout = 0 );
++ int yylex( QMake::Parser::semantic_type* yylval );
++ int yylex();
++ private:
++ QMake::Parser::semantic_type* mylval;
++ };
++}
++
++#endif
++
++// kate: space-indent on; indent-width 4; tab-width: 4; replace-tabs on; auto-insert-doxygen on