summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-10-05 00:40:13 +0000
committerMike Frysinger <vapier@gentoo.org>2010-10-05 00:40:13 +0000
commit793d1a869a46f452b4f06f25f9371c5b23a52b9e (patch)
tree98a070bb8da9353e4b88fee5b3d62b0c70791b47 /dev-embedded/gputils/files
parentVersion bump (diff)
downloadgentoo-2-793d1a869a46f452b4f06f25f9371c5b23a52b9e.tar.gz
gentoo-2-793d1a869a46f452b4f06f25f9371c5b23a52b9e.tar.bz2
gentoo-2-793d1a869a46f452b4f06f25f9371c5b23a52b9e.zip
old
Diffstat (limited to 'dev-embedded/gputils/files')
-rw-r--r--dev-embedded/gputils/files/gputils-0.13.4-duplicate-label.patch83
-rw-r--r--dev-embedded/gputils/files/gputils-0.13.4-mapping.patch23
2 files changed, 0 insertions, 106 deletions
diff --git a/dev-embedded/gputils/files/gputils-0.13.4-duplicate-label.patch b/dev-embedded/gputils/files/gputils-0.13.4-duplicate-label.patch
deleted file mode 100644
index d457c4b4febc..000000000000
--- a/dev-embedded/gputils/files/gputils-0.13.4-duplicate-label.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-diff -ur gputils-0.13.4.orig/ChangeLog gputils-0.13.4/ChangeLog
---- gputils-0.13.4.orig/ChangeLog 2006-08-20 00:24:14.000000000 +0200
-+++ gputils-0.13.4/ChangeLog 2007-03-27 23:44:01.000000000 +0200
-@@ -1,3 +1,6 @@
-+2006-12-16 Scott Dattalo <scott@dattalo.com>
-+ * [gpasm] Patch from David Barnett to fix 'Duplicate Label' bug.
-+
- 2006-08-19 Craig Franklin <craigfranklin@users.sourceforge.net>
- * gputils 0.13.4 Released.
- * [gputils] Updated header files and linker scripts.
-diff -ur gputils-0.13.4.orig/gpasm/evaluate.c gputils-0.13.4/gpasm/evaluate.c
---- gputils-0.13.4.orig/gpasm/evaluate.c 2006-08-19 16:06:41.000000000 +0200
-+++ gputils-0.13.4/gpasm/evaluate.c 2007-03-27 23:49:38.000000000 +0200
-@@ -433,7 +433,8 @@
- if (strcmp(p->value.symbol, "$") == 0) {
- char buffer[BUFSIZ];
-
-- snprintf(buffer, sizeof(buffer), "_$_%06x", state.org << _16bit_core);
-+ snprintf(buffer, sizeof(buffer), "_%s_%06x", state.obj.new_sec_name,
-+ state.org << _16bit_core);
- set_global(buffer, state.org << _16bit_core, PERMANENT, gvt_static);
- s = get_symbol(state.stTop, buffer);
- } else {
-diff -ur gputils-0.13.4.orig/gpasm/Makefile.in gputils-0.13.4/gpasm/Makefile.in
---- gputils-0.13.4.orig/gpasm/Makefile.in 2006-08-20 00:20:43.000000000 +0200
-+++ gputils-0.13.4/gpasm/Makefile.in 2007-03-27 23:45:34.000000000 +0200
-@@ -15,6 +15,8 @@
- @SET_MAKE@
-
-
-+SOURCES = $(libgpasm_a_SOURCES) $(gpasm_SOURCES)
-+
- srcdir = @srcdir@
- top_srcdir = @top_srcdir@
- VPATH = @srcdir@
-diff -ur gputils-0.13.4.orig/gplink/Makefile.in gputils-0.13.4/gplink/Makefile.in
---- gputils-0.13.4.orig/gplink/Makefile.in 2006-08-20 00:20:43.000000000 +0200
-+++ gputils-0.13.4/gplink/Makefile.in 2007-03-27 23:50:19.000000000 +0200
-@@ -14,6 +14,8 @@
-
- @SET_MAKE@
-
-+SOURCES = $(gplink_SOURCES)
-+
- srcdir = @srcdir@
- top_srcdir = @top_srcdir@
- VPATH = @srcdir@
-diff -ur gputils-0.13.4.orig/gputils/Makefile.in gputils-0.13.4/gputils/Makefile.in
---- gputils-0.13.4.orig/gputils/Makefile.in 2006-08-20 00:20:43.000000000 +0200
-+++ gputils-0.13.4/gputils/Makefile.in 2007-03-27 23:50:53.000000000 +0200
-@@ -14,6 +14,8 @@
-
- @SET_MAKE@
-
-+SOURCES = $(gpdasm_SOURCES) $(gplib_SOURCES) $(gpstrip_SOURCES) $(gpvc_SOURCES) $(gpvo_SOURCES)
-+
- srcdir = @srcdir@
- top_srcdir = @top_srcdir@
- VPATH = @srcdir@
-diff -ur gputils-0.13.4.orig/libgputils/Makefile.in gputils-0.13.4/libgputils/Makefile.in
---- gputils-0.13.4.orig/libgputils/Makefile.in 2006-08-20 00:20:43.000000000 +0200
-+++ gputils-0.13.4/libgputils/Makefile.in 2007-03-27 23:51:45.000000000 +0200
-@@ -14,6 +14,8 @@
-
- @SET_MAKE@
-
-+SOURCES = $(libgputils_a_SOURCES)
-+
- srcdir = @srcdir@
- top_srcdir = @top_srcdir@
- VPATH = @srcdir@
-diff -ur gputils-0.13.4.orig/libiberty/Makefile.in gputils-0.13.4/libiberty/Makefile.in
---- gputils-0.13.4.orig/libiberty/Makefile.in 2006-08-20 00:20:44.000000000 +0200
-+++ gputils-0.13.4/libiberty/Makefile.in 2007-03-27 23:52:36.000000000 +0200
-@@ -14,6 +14,8 @@
-
- @SET_MAKE@
-
-+SOURCES = $(libiberty_a_SOURCES)
-+
- srcdir = @srcdir@
- top_srcdir = @top_srcdir@
- VPATH = @srcdir@
diff --git a/dev-embedded/gputils/files/gputils-0.13.4-mapping.patch b/dev-embedded/gputils/files/gputils-0.13.4-mapping.patch
deleted file mode 100644
index fc940e34c08d..000000000000
--- a/dev-embedded/gputils/files/gputils-0.13.4-mapping.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -ur gputils-0.13.4.orig/gplink/lst.c gputils-0.13.4/gplink/lst.c
---- gputils-0.13.4.orig/gplink/lst.c 2005-01-03 23:21:20.000000000 +0100
-+++ gputils-0.13.4/gplink/lst.c 2007-03-28 00:07:16.000000000 +0200
-@@ -101,9 +101,9 @@
- if ((line->symbol == symbol) &&
- (line->line_number == line_number)) {
- if (section != line_section) {
-- /* switching sections, so update was_org with the new section
-+ /* switching sections, so update was_org with the new
- address */
-- state.lst.was_org = section->address >> state.byte_addr;
-+ state.lst.was_org = line->address >> state.byte_addr;
- line_section = section;
- }
- return line;
-@@ -179,6 +179,7 @@
- data & 0xffff,
- dasmbuf,
- linebuf);
-+ state.lst.was_org = org;
- cod_lst_line(COD_NORMAL_LST_LINE);
- org++;
- if (num_words != 1) {