pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/guile Use a pointer, instead of an array, to avoi...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/77c822224963
branches:  trunk
changeset: 507881:77c822224963
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Fri Feb 10 19:09:13 2006 +0000

description:
Use a pointer, instead of an array, to avoid an error on Darwin.
Patch from DarwinPorts.

diffstat:

 lang/guile/distinfo         |   3 ++-
 lang/guile/patches/patch-aa |  13 +++++++++++++
 2 files changed, 15 insertions(+), 1 deletions(-)

diffs (31 lines):

diff -r c470046263b9 -r 77c822224963 lang/guile/distinfo
--- a/lang/guile/distinfo       Fri Feb 10 17:51:50 2006 +0000
+++ b/lang/guile/distinfo       Fri Feb 10 19:09:13 2006 +0000
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.26 2005/10/30 14:55:46 gdt Exp $
+$NetBSD: distinfo,v 1.27 2006/02/10 19:09:13 minskim Exp $
 
 SHA1 (guile-1.6.7.tar.gz) = 00a82dc4c7c19f9b791e116a2baf83e7d0c0856d
 RMD160 (guile-1.6.7.tar.gz) = 63d45e8143834c641d4a4732cfbb34e8984f55dd
 Size (guile-1.6.7.tar.gz) = 3039294 bytes
+SHA1 (patch-aa) = 7c85a08bcba460cf75aa02cfe8008fe7d92ed0f5
 SHA1 (patch-ad) = a1e59d8569ddbd0ccfdc96423e377f39836e6f21
 SHA1 (patch-ae) = 4aaadd1df36540117bef4128f607b6a1bbcaaf28
 SHA1 (patch-af) = 96b50d3cff86a7ba7a76551723192ad99a07b971
diff -r c470046263b9 -r 77c822224963 lang/guile/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/lang/guile/patches/patch-aa       Fri Feb 10 19:09:13 2006 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.9 2006/02/10 19:09:13 minskim Exp $
+
+--- libguile/guile.c.orig      2002-12-07 14:41:32.000000000 -0800
++++ libguile/guile.c
+@@ -88,7 +88,7 @@ main (int argc, char **argv)
+ {
+ #ifdef DYNAMIC_LINKING
+   /* libtool automagically inserts this variable into your executable... */
+-  extern const scm_lt_dlsymlist lt_preloaded_symbols[];
++  extern const scm_lt_dlsymlist *lt_preloaded_symbols;
+   scm_lt_dlpreload_default (lt_preloaded_symbols);
+ #endif
+   scm_boot_guile (argc, argv, inner_main, 0);



Home | Main Index | Thread Index | Old Index