summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVirgil Dupras <vdupras@gentoo.org>2018-10-29 20:49:00 -0400
committerVirgil Dupras <vdupras@gentoo.org>2018-10-29 20:50:23 -0400
commite9aabe50eeb1ae673c9ad99ad03b83284350cdfb (patch)
tree0e85e3d24554b2159b3064fe8c422b2f2f2a180e /dev-lang/mujs/files
parentdev-python/pynacl: stable 1.2.1 for ia64, bug #667782 (diff)
downloadgentoo-e9aabe50eeb1ae673c9ad99ad03b83284350cdfb.tar.gz
gentoo-e9aabe50eeb1ae673c9ad99ad03b83284350cdfb.tar.bz2
gentoo-e9aabe50eeb1ae673c9ad99ad03b83284350cdfb.zip
dev-lang/mujs: remove old and vulnerable
Bug: https://bugs.gentoo.org/646784 Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'dev-lang/mujs/files')
-rw-r--r--dev-lang/mujs/files/mujs-1.0.1-gentoo.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-lang/mujs/files/mujs-1.0.1-gentoo.patch b/dev-lang/mujs/files/mujs-1.0.1-gentoo.patch
deleted file mode 100644
index c6c7977ac75d..000000000000
--- a/dev-lang/mujs/files/mujs-1.0.1-gentoo.patch
+++ /dev/null
@@ -1,37 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -2,7 +2,7 @@
-
- build ?= release
-
--prefix ?= /usr/local
-+prefix ?= /usr
- bindir ?= $(prefix)/bin
- incdir ?= $(prefix)/include
- libdir ?= $(prefix)/lib
-@@ -11,7 +11,7 @@
-
- # Compiler flags for various configurations:
-
--CFLAGS := -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter
-+CFLAGS += -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter
-
- ifeq "$(CC)" "clang"
- CFLAGS += -Wunreachable-code
-@@ -22,16 +22,6 @@
- LDFLAGS += -Wl,--gc-sections
- endif
-
--ifeq "$(build)" "debug"
--CFLAGS += -g
--else ifeq "$(build)" "sanitize"
--CFLAGS += -pipe -g -fsanitize=address -fno-omit-frame-pointer
--LDFLAGS += -fsanitize=address
--else
--CFLAGS += -Os
--LDFLAGS += -Wl,-s
--endif
--
- # You shouldn't need to edit anything below here.
-
- OUT := build/$(build)