pkgsrc-Changes archive

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

CVS commit: pkgsrc/shells/tcsh



Module Name:    pkgsrc
Committed By:   mrg
Date:           Wed Jul  8 04:06:48 UTC 2020

Modified Files:
        pkgsrc/shells/tcsh: distinfo
        pkgsrc/shells/tcsh/patches: patch-ab

Log Message:
define SYSMALLOC on netbsd.  fixes standalone-tcsh link, which pulled
in libc malloc as well as tcsh malloc, and failed.

ok christos@


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 pkgsrc/shells/tcsh/distinfo
cvs rdiff -u -r1.12 -r1.13 pkgsrc/shells/tcsh/patches/patch-ab

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/shells/tcsh/distinfo
diff -u pkgsrc/shells/tcsh/distinfo:1.44 pkgsrc/shells/tcsh/distinfo:1.45
--- pkgsrc/shells/tcsh/distinfo:1.44    Sun Dec  8 22:08:55 2019
+++ pkgsrc/shells/tcsh/distinfo Wed Jul  8 04:06:48 2020
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.44 2019/12/08 22:08:55 leot Exp $
+$NetBSD: distinfo,v 1.45 2020/07/08 04:06:48 mrg Exp $
 
 SHA1 (tcsh-6.22.02.tar.gz) = d3c916c82eec7e20c49dedf660edd51a7971f8ab
 RMD160 (tcsh-6.22.02.tar.gz) = f6c7d6521e1e092dd2c68727e45fbadd54af82e4
 SHA512 (tcsh-6.22.02.tar.gz) = 32d271b568c63265ea4c98494f5e60b37c3a3fc2594e8763b8f6f0b09018ab9db7ef6f951120b37f7880ccf04ba3a2559e30dc08d24f4ba9dc36853238d55980
 Size (tcsh-6.22.02.tar.gz) = 1006405 bytes
 SHA1 (patch-aa) = 6ec2bcee6029e733743a73d267aa51bfcc898843
-SHA1 (patch-ab) = 8cf26988778b5331360eb1aab98bfcc920c71ac2
+SHA1 (patch-ab) = 715d939e8a8f4917bd219dccd91d5c49ae502939
 SHA1 (patch-configure) = 6970c041a66910325d1fb53ebf8ab3627d764778
 SHA1 (patch-nls_Makefile.in) = 58d859e8a50e6436b9bc6514497eb876426d92d7
 SHA1 (patch-sh.h) = ac6211ddd5e552e9baec2d35aed5e7e573cab04e

Index: pkgsrc/shells/tcsh/patches/patch-ab
diff -u pkgsrc/shells/tcsh/patches/patch-ab:1.12 pkgsrc/shells/tcsh/patches/patch-ab:1.13
--- pkgsrc/shells/tcsh/patches/patch-ab:1.12    Fri May 25 20:01:31 2012
+++ pkgsrc/shells/tcsh/patches/patch-ab Wed Jul  8 04:06:48 2020
@@ -1,10 +1,11 @@
-$NetBSD: patch-ab,v 1.12 2012/05/25 20:01:31 he Exp $
+$NetBSD: patch-ab,v 1.13 2020/07/08 04:06:48 mrg Exp $
 
 Special adaptation for different NetBSD versions and for OpenBSD.
+Turn on SYSMALLOC for NetBSD until tc.alloc.c gets better.
 
---- config_f.h.orig    2006-08-28 10:53:04.000000000 -0400
-+++ config_f.h 2007-04-09 20:02:34.000000000 -0400
-@@ -44,7 +44,18 @@
+--- config_f.h.orig    2019-12-04 09:51:54.000000000 -0800
++++ config_f.h 2020-07-06 15:21:46.122410962 -0700
+@@ -47,7 +47,18 @@
   *             of nls...
   *
   */
@@ -24,3 +25,12 @@ Special adaptation for different NetBSD 
  
  /*
   * WIDE_STRINGS       Represent strings using wide characters
+@@ -138,7 +149,7 @@
+  *            This can be much slower and no memory statistics will be
+  *            provided.
+  */
+-#if defined(__MACHTEN__) || defined(PURIFY) || defined(MALLOC_TRACE) || defined(_OSD_POSIX) || defined(__MVS__) || defined (__CYGWIN__) || defined(__GLIBC__) || defined(__OpenBSD__) || 
defined(__APPLE__) || defined (__ANDROID__)
++#if defined(__MACHTEN__) || defined(PURIFY) || defined(MALLOC_TRACE) || defined(_OSD_POSIX) || defined(__MVS__) || defined (__CYGWIN__) || defined(__GLIBC__) || defined(__OpenBSD__) || 
defined(__APPLE__) || defined (__ANDROID__) || defined(__NetBSD__)
+ # define SYSMALLOC
+ #else
+ # undef SYSMALLOC



Home | Main Index | Thread Index | Old Index