[packages/guile1: 110/172] - obsolete
jajcus
jajcus at pld-linux.org
Sat Dec 12 13:48:02 CET 2015
commit 9117422364c36ac394532888266732607c0dc108
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Tue Nov 2 00:05:34 2004 +0000
- obsolete
Changed files:
guile-ac_alloca_test.patch -> 1.2
guile-mktemp.patch -> 1.2
guile-realloc.patch -> 1.3
guile-stack-end.patch -> 1.2
guile-ac_alloca_test.patch | 14 --------------
guile-mktemp.patch | 11 -----------
guile-realloc.patch | 18 ------------------
guile-stack-end.patch | 26 --------------------------
4 files changed, 69 deletions(-)
---
diff --git a/guile-ac_alloca_test.patch b/guile-ac_alloca_test.patch
deleted file mode 100644
index 8a9ff36..0000000
--- a/guile-ac_alloca_test.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -durN -x '*~' guile-1.6.4.orig/configure.in guile-1.6.4/configure.in
---- guile-1.6.4.orig/configure.in 2004-12-30 10:06:25.000000000 +0000
-+++ guile-1.6.4/configure.in 2004-12-30 10:08:08.752570752 +0000
-@@ -462,7 +462,9 @@
- # explicitly to LIBOBJS to make sure that it is translated to
- # `alloca.lo' for libtool later on. This can and should be done more cleanly.
- AC_FUNC_ALLOCA
--if test "$ALLOCA" = "alloca.o"; then AC_LIBOBJ([alloca]); fi
-+if test "$ALLOCA" = "alloca.o"; then
-+ AC_LIBOBJ([alloca])
-+fi
-
- AC_CHECK_MEMBERS([struct stat.st_rdev])
- AC_CHECK_MEMBERS([struct stat.st_blksize])
diff --git a/guile-mktemp.patch b/guile-mktemp.patch
deleted file mode 100644
index b4ed403..0000000
--- a/guile-mktemp.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- libguile/guile-snarf.in
-+++ libguile/guile-snarf.in
-@@ -69,7 +69,7 @@
-
- # set vars and handler -- handle CPP override
- cpp_ok_p=false
--temp="/tmp/snarf.$$"
-+temp=$(mktemp -q "${TMPDIR:-/tmp}/snarf.XXXXXX") || { echo >&2 "guile-snarf: can not create temporary file"; exit 1; }
- if [ x"$CPP" = x ] ; then cpp="@CPP@" ; else cpp="$CPP" ; fi
-
- trap "rm -f $temp" 0 1 2 15
diff --git a/guile-realloc.patch b/guile-realloc.patch
deleted file mode 100644
index e034e57..0000000
--- a/guile-realloc.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- guile-1.6.4/libguile/gc.c.orig 2003-04-20 20:16:59.000000000 +0200
-+++ guile-1.6.4/libguile/gc.c 2004-05-31 23:21:10.807334759 +0200
-@@ -2048,9 +2048,14 @@
- scm_must_free() won't take NULL.
- */
- scm_mallocated += size - old_size;
-- SCM_SYSCALL (ptr = realloc (where, size));
-
-+ /*
-+ The realloc must be after check_mtrigger(), since realloc might
-+ munge the old block of memory, which will be scanned by GC.
-+ */
- check_mtrigger (what);
-+
-+ SCM_SYSCALL (ptr = realloc (where, size));
-
- if (NULL != ptr)
- {
diff --git a/guile-stack-end.patch b/guile-stack-end.patch
deleted file mode 100644
index f4e6c1a..0000000
--- a/guile-stack-end.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- guile-1.6.4/libguile/gc_os_dep.c.orig 2004-05-31 23:22:31.000000000 +0200
-+++ guile-1.6.4/libguile/gc_os_dep.c 2004-06-01 00:18:13.331037133 +0200
-@@ -1158,7 +1158,11 @@
- # define CPP_WORDSZ 64
- /* This should really be done through /proc, but that */
- /* requires we run on an IA64 kernel. */
-+#ifdef __x86_64__
-+# define STACKBOTTOM ((ptr_t) 0x7fc0000000l)
-+#else /* really IA64 */
- # define STACKBOTTOM ((ptr_t) 0xa000000000000000l)
-+#endif
- /* We also need the base address of the register stack */
- /* backing store. There is probably a better way to */
- /* get that, too ... */
-@@ -1865,8 +1869,11 @@
-
- #endif /* LINUX_STACKBOTTOM */
-
-+extern void *__libc_stack_end;
-+
- void *scm_get_stack_base()
- {
-+ return __libc_stack_end;
- word dummy;
- void *result = &dummy; /* initialize to silence compiler */
-
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/guile1.git/commitdiff/ebe6c26bec9cbe3813afc2be58f989889f8e944a
More information about the pld-cvs-commit
mailing list