summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2016-10-29 11:30:51 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2016-10-29 11:34:40 +0100
commit7e2bd3a587a5adee7d7482310ff93ce0fdc7a0b2 (patch)
tree3ee4022bb7b4b389d6df65db508301bcf69483e8 /app-emulation/dosemu/files
parentapp-emulation/dosemu: amd64/x86 stable, bug #597880 (diff)
downloadgentoo-7e2bd3a587a5adee7d7482310ff93ce0fdc7a0b2.tar.gz
gentoo-7e2bd3a587a5adee7d7482310ff93ce0fdc7a0b2.tar.bz2
gentoo-7e2bd3a587a5adee7d7482310ff93ce0fdc7a0b2.zip
app-emulation/dosemu: drop old
Package-Manager: portage-2.3.2
Diffstat (limited to 'app-emulation/dosemu/files')
-rw-r--r--app-emulation/dosemu/files/dosemu-1.4.1_pre20091009-fix-glibc.patch35
-rw-r--r--app-emulation/dosemu/files/dosemu-1.4.1_pre20091009-flex.patch45
2 files changed, 0 insertions, 80 deletions
diff --git a/app-emulation/dosemu/files/dosemu-1.4.1_pre20091009-fix-glibc.patch b/app-emulation/dosemu/files/dosemu-1.4.1_pre20091009-fix-glibc.patch
deleted file mode 100644
index 62a4319c1a47..000000000000
--- a/app-emulation/dosemu/files/dosemu-1.4.1_pre20091009-fix-glibc.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-The patch is a subset of
-
- commit b028d3fd33b004ac61583927884a64577e2d64c3
- Author: Bart Oldeman <bartoldeman@users.sourceforge.net>
- Date: Sun Dec 23 22:08:11 2012 -0500
-
-to fix glibc detection for
-Bug: https://bugs.gentoo.org/597880
-diff --git a/configure.ac b/configure.ac
-index 70bc154..b8da5e2 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -644,19 +640,9 @@ if test "$GCC" = "yes" ; then
- fi
-
- AC_MSG_CHECKING(for glibc...)
-- set `printf '%b\n' '#include <features.h>\nXXAaZZ __GLIBC__ XXBbZZ __GLIBC_MINOR__'|${CC-cc} -E -|awk '/XXAaZZ/ {print $2 " " $4}'`
-- major=$1; minor=$2
-- if test "$major" = "__GLIBC__"; then
-- AC_MSG_ERROR([Sorry, you need glibc-2.1.3 or newer.])
-- else
-- if test "$minor" = "__GLIBC_MINOR__"; then
-- minor=0;
-- fi
-- GLIBC_VERSION_CODE=$((($major * 1000) + $minor))
-- AC_MSG_RESULT([yes, version code $GLIBC_VERSION_CODE])
-- if test $GLIBC_VERSION_CODE -lt 2001; then
-- AC_MSG_ERROR([Sorry, you need glibc-2.1.3 or newer.])
-- fi
-+ set `printf '%b\n' '#include <features.h>\nXXAaZZ __GLIBC__'|${CC-cc} -E -|awk '/XXAaZZ/ {print $2}'`
-+ if test "$1" = "__GLIBC__"; then
-+ AC_MSG_ERROR([Sorry, you need glibc.])
- fi
- fi
-
diff --git a/app-emulation/dosemu/files/dosemu-1.4.1_pre20091009-flex.patch b/app-emulation/dosemu/files/dosemu-1.4.1_pre20091009-flex.patch
deleted file mode 100644
index 7e8e291ef1b8..000000000000
--- a/app-emulation/dosemu/files/dosemu-1.4.1_pre20091009-flex.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-Gentoo-bug: http://bugs.gentoo.org/437074
-
-commit 81232816b90e85488d7f11f96b8fcdc5f4988c93
-Author: Stas Sergeev <stsp@users.sourceforge.net>
-Date: Sun Oct 14 19:51:09 2012 +0400
-
- remove prototypes for lex-generated functions
-
-diff --git a/src/base/init/lexer.h b/src/base/init/lexer.h
-index 65b3ab8..082f08c 100644
---- a/src/base/init/lexer.h
-+++ b/src/base/init/lexer.h
-@@ -1,4 +1,4 @@
--/*
-+/*
- * (C) Copyright 1992, ..., 2007 the "DOSEMU-Development-Team".
- *
- * for details see file COPYING.DOSEMU in the DOSEMU distribution
-@@ -6,7 +6,9 @@
-
- /*
- * We are intercepting the yylex() function calls from the parser
-- */
-+ */
-+#ifndef LEXER_H
-+#define LEXER_H
- #define OUR_YY_DECL int yylex (YYSTYPE* yylval)
- OUR_YY_DECL;
-
-@@ -27,14 +29,4 @@ extern int include_lines[];
- extern int line_count;
- extern int last_include;
-
--extern int yyget_lineno(void);
--extern void yyset_lineno(int line_number);
--extern void yyset_out(FILE * out_str);
--extern void yyset_in(FILE * out_str);
--extern void yyset_debug(int bdebug );
--extern int yyget_debug(void);
--extern int yylex_destroy(void);
--extern FILE* yyget_in(void);
--extern FILE* yyget_out(void);
--extern int yyget_leng(void);
--extern char *yyget_text(void);
-+#endif