diff options
author | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2022-01-04 09:11:07 -0500 |
---|---|---|
committer | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2022-01-04 09:11:07 -0500 |
commit | b8ba0f76ffc733a1f23140d59b5568c0cb386f2b (patch) | |
tree | b8c96332b5bb0b697bb8777f487bd244d4c8173c /dev-lang/uasm/files | |
parent | ee78a3a3d16565782208b9208a1c5f7858f56eda (diff) | |
download | gentoo-overlay-b8ba0f76ffc733a1f23140d59b5568c0cb386f2b.tar.xz gentoo-overlay-b8ba0f76ffc733a1f23140d59b5568c0cb386f2b.zip |
dev-lang/uasm: drop
Diffstat (limited to 'dev-lang/uasm/files')
-rw-r--r-- | dev-lang/uasm/files/151.patch | 23 | ||||
-rw-r--r-- | dev-lang/uasm/files/dbgcv.patch | 59 |
2 files changed, 0 insertions, 82 deletions
diff --git a/dev-lang/uasm/files/151.patch b/dev-lang/uasm/files/151.patch deleted file mode 100644 index 1b0befb..0000000 --- a/dev-lang/uasm/files/151.patch +++ /dev/null @@ -1,23 +0,0 @@ -From c090c3472677bd57bbfc27e74ebf05fdc5116320 Mon Sep 17 00:00:00 2001 -From: Dan <justdan96@gmail.com> -Date: Thu, 10 Jun 2021 11:04:19 +0100 -Subject: [PATCH] fix types.h guard - -Typo in the types.h define guard ---- - H/types.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/H/types.h b/H/types.h -index 7db8cc10..f7b076b8 100644 ---- a/H/types.h -+++ b/H/types.h -@@ -1,7 +1,7 @@ - - /* prototypes of TYPES.C */ - --#ifndef _TYPES_H_INCLUDED -+#ifndef _TYPES_H_INCLUDED_ - #define _TYPES_H_INCLUDED_ - - /* qualified_type us used for parsing a qualified type. */ diff --git a/dev-lang/uasm/files/dbgcv.patch b/dev-lang/uasm/files/dbgcv.patch deleted file mode 100644 index c523cd6..0000000 --- a/dev-lang/uasm/files/dbgcv.patch +++ /dev/null @@ -1,59 +0,0 @@ -diff '--color=auto' -Naur UASM-c612f83d97a0cb192dfd983676743dabf662ed51~/dbgcv.c UASM-c612f83d97a0cb192dfd983676743dabf662ed51/dbgcv.c ---- UASM-c612f83d97a0cb192dfd983676743dabf662ed51~/dbgcv.c 2021-04-02 17:57:14.000000000 +0200 -+++ UASM-c612f83d97a0cb192dfd983676743dabf662ed51/dbgcv.c 2021-07-20 14:31:39.634571179 +0200 -@@ -17,7 +17,24 @@ - #include <fixup.h> - #include <dbgcv.h> - #include <linnum.h> -+#ifdef _WIN32 - #include <direct.h> -+#endif -+#ifdef __UNIX__ -+#include <stdio.h> -+#include <unistd.h> -+#include <limits.h> -+#endif -+#ifndef PATH_MAX -+#define PATH_MAX 4096 -+#endif -+#define _MAX_PATH PATH_MAX -+#ifndef _getcwd -+#define _getcwd getcwd -+#endif -+#ifndef _pgmptr -+#define _pgmptr "uasm" -+#endif - #include <picohash.h> - - #define SIZE_CV_SEGBUF ( MAX_LINE_LEN * 4 ) -@@ -1252,7 +1269,9 @@ - #define USEMD5 - - #ifdef USEMD5 -+#ifndef BUFSIZ - #define BUFSIZ 1024*4 -+#endif - #define MD5_LENGTH ( sizeof( uint_32 ) + sizeof( uint_16 ) + 16 + sizeof( uint_16 ) ) - - static int calc_md5(const char* filename, unsigned char* sum) -@@ -1575,12 +1594,20 @@ - len = strlen(p) + 1; - s = strcpy(s, p) + len; - *s++ = '\0'; -+ #ifdef _WIN32 - EnvBlock->reclen = (unsigned short)(s - cv.ps - 2); -+ #else -+ EnvBlock->reclen = (unsigned short)(s - (char*)cv.ps - 2); -+ #endif - cv.ps = s; - - /* length needs to be added for each symbol */ - -+ #ifdef _WIN32 - cv.section->length += (s - start); -+ #else -+ cv.section->length += (s - (char*)start); -+ #endif - - } - else { |