summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <fauli@gentoo.org>2008-05-29 10:05:25 +0000
committerChristian Faulhammer <fauli@gentoo.org>2008-05-29 10:05:25 +0000
commit4a8e869ea7102c86375a533a2dccc9ebd4491a9d (patch)
tree9dfb8ff01845c2f3f722fcdd6350b8de53cf6de2 /dev-lang/erlang/files
parentsparc stable wrt #223705, thanks to Friedrich Oslage for testing (diff)
downloadhistorical-4a8e869ea7102c86375a533a2dccc9ebd4491a9d.tar.gz
historical-4a8e869ea7102c86375a533a2dccc9ebd4491a9d.tar.bz2
historical-4a8e869ea7102c86375a533a2dccc9ebd4491a9d.zip
clean up
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'dev-lang/erlang/files')
-rw-r--r--dev-lang/erlang/files/erlang-10.2.6-export-TARGET.patch11
-rw-r--r--dev-lang/erlang/files/erlang-11.2.5-build.patch13
-rw-r--r--dev-lang/erlang/files/erlang-11.2.5-gethostbyname.patch20
-rw-r--r--dev-lang/erlang/files/erlang-11.2.5-hipe.patch12
-rw-r--r--dev-lang/erlang/files/erlang-11.2.5-odbc-support-amd64.patch17
5 files changed, 0 insertions, 73 deletions
diff --git a/dev-lang/erlang/files/erlang-10.2.6-export-TARGET.patch b/dev-lang/erlang/files/erlang-10.2.6-export-TARGET.patch
deleted file mode 100644
index 13a68021e8be..000000000000
--- a/dev-lang/erlang/files/erlang-10.2.6-export-TARGET.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.in
-+++ Makefile.in
-@@ -85,7 +85,7 @@
- MAKE = @MAKE_PROG@
-
- # This should be set to the target "arch-vendor-os"
--TARGET = @TARGET@
-+export TARGET = @TARGET@
-
- # A BSD compatible install program
- INSTALL = @INSTALL@
diff --git a/dev-lang/erlang/files/erlang-11.2.5-build.patch b/dev-lang/erlang/files/erlang-11.2.5-build.patch
deleted file mode 100644
index 3f68b32e78ba..000000000000
--- a/dev-lang/erlang/files/erlang-11.2.5-build.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-make sure errors actually get passed back up
-
---- make/otp_subdir.m
-+++ make/otp_subdir.mk
-@@ -44,7 +44,7 @@
- if test -f $$d/ignore_config_record.inf; then \
- xflag=$$tflag ; \
- fi ; \
-- (cd $$d && $(MAKE) $$xflag $@) ; \
-+ (cd $$d && $(MAKE) $$xflag $@) || exit $$? ; \
- fi ; \
- fi ; \
- done ; \
diff --git a/dev-lang/erlang/files/erlang-11.2.5-gethostbyname.patch b/dev-lang/erlang/files/erlang-11.2.5-gethostbyname.patch
deleted file mode 100644
index 8bef15046edc..000000000000
--- a/dev-lang/erlang/files/erlang-11.2.5-gethostbyname.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -Naur otp_src_R11B-4.orig/lib/erl_interface/src/connect/ei_resolve.c otp_src_R11B-4/lib/erl_interface/src/connect/ei_resolve.c
---- otp_src_R11B-4.orig/lib/erl_interface/src/connect/ei_resolve.c 2006-11-06 14:53:29 +0100
-+++ otp_src_R11B-4/lib/erl_interface/src/connect/ei_resolve.c 2007-06-13 23:14:06 +0200
-@@ -44,6 +44,7 @@
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
-+#include <sys/param.h>
- #endif
-
- /* common to all platforms */
-@@ -614,7 +615,7 @@
- #ifndef HAVE_GETHOSTBYNAME_R
- return my_gethostbyname_r(name,hostp,buffer,buflen,h_errnop);
- #else
--#ifdef __GLIBC__
-+#if (defined(__GLIBC__) || (__FreeBSD_version >= 602000))
- struct hostent *result;
-
- gethostbyname_r(name, hostp, buffer, buflen, &result, h_errnop);
diff --git a/dev-lang/erlang/files/erlang-11.2.5-hipe.patch b/dev-lang/erlang/files/erlang-11.2.5-hipe.patch
deleted file mode 100644
index 08cbbfec8c71..000000000000
--- a/dev-lang/erlang/files/erlang-11.2.5-hipe.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Fix duplicate entry in makefile
-
---- otp_src_R11B-5.orig/lib/hipe/regalloc/Makefile 2007-09-12 12:45:03.000000000 -0600
-+++ otp_src_R11B-5/lib/hipe/regalloc/Makefile 2007-09-12 12:46:01.000000000 -0600
-@@ -43,7 +43,6 @@
- hipe_temp_map \
- hipe_optimistic_regalloc \
- hipe_coalescing_regalloc \
-- hipe_optimistic_regalloc \
- hipe_graph_coloring_regalloc \
- hipe_regalloc_loop \
- hipe_ls_regalloc \ \ No newline at end of file
diff --git a/dev-lang/erlang/files/erlang-11.2.5-odbc-support-amd64.patch b/dev-lang/erlang/files/erlang-11.2.5-odbc-support-amd64.patch
deleted file mode 100644
index 243448744401..000000000000
--- a/dev-lang/erlang/files/erlang-11.2.5-odbc-support-amd64.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -urN otp_src_R11B-5/lib/odbc/c_src/Makefile.in otp_src_R11B-5.odbc/lib/odbc/c_src/Makefile.in
---- otp_src_R11B-5/lib/odbc/c_src/Makefile.in 2006-05-03 11:18:45.000000000 +0300
-+++ otp_src_R11B-5/lib/odbc/c_src/Makefile.in 2007-11-07 00:24:36.000000000 +0200
-@@ -57,11 +57,11 @@
- WIN32_TARGET = $(WIN_BIN_DIR)/odbcserver.exe
- EXE_TARGET = $(WIN32_TARGET)
- else
--ifneq ($(BITS64),yes)
-+#ifneq ($(BITS64),yes)
- EI_LIB = -lerl_interface -lei
- UNIX_TARGET = $(BIN_DIR)/odbcserver
- EXE_TARGET = $(UNIX_TARGET)
--endif
-+#endif
- endif
-
- C_FILES = odbcserver.c