summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2014-11-06 12:25:36 +0000
committerjoerg <joerg@pkgsrc.org>2014-11-06 12:25:36 +0000
commit8ae5fef52e30602ed32b82c74468d1035c03a50e (patch)
treef713cfd9fcb9f9fc191ad92c6bd4f69e63dae96d /shells
parent7af64deb9c12acb1587215022edf712eb4ab9f14 (diff)
downloadpkgsrc-8ae5fef52e30602ed32b82c74468d1035c03a50e.tar.gz
Rename memalign and posix_memalign similar to malloc/free to fix static
linkage. Reduce hackery in static-ast-ksh/Makefile.
Diffstat (limited to 'shells')
-rw-r--r--shells/ast-ksh/Makefile4
-rw-r--r--shells/ast-ksh/distinfo8
-rw-r--r--shells/ast-ksh/patches/patch-src_lib_libast_features_lib13
-rw-r--r--shells/ast-ksh/patches/patch-src_lib_libast_features_map.c16
-rw-r--r--shells/ast-ksh/patches/patch-src_lib_libast_features_sys12
-rw-r--r--shells/ast-ksh/patches/patch-src_lib_libast_features_vmalloc13
-rw-r--r--shells/ast-ksh/patches/patch-src_lib_libast_include_vmalloc.h45
-rw-r--r--shells/ast-ksh/patches/patch-src_lib_libast_vmalloc_malloc.c91
-rw-r--r--shells/static-ast-ksh/Makefile6
9 files changed, 204 insertions, 4 deletions
diff --git a/shells/ast-ksh/Makefile b/shells/ast-ksh/Makefile
index c874f619114..96c01fc9589 100644
--- a/shells/ast-ksh/Makefile
+++ b/shells/ast-ksh/Makefile
@@ -1,5 +1,7 @@
-# $NetBSD: Makefile,v 1.21 2014/07/03 15:00:41 wiz Exp $
+# $NetBSD: Makefile,v 1.22 2014/11/06 12:25:36 joerg Exp $
.include "../../shells/ast-ksh/Makefile.common"
+PKGREVISION= 1
+
.include "../../mk/bsd.pkg.mk"
diff --git a/shells/ast-ksh/distinfo b/shells/ast-ksh/distinfo
index 8561349c5be..65bb2e24b6c 100644
--- a/shells/ast-ksh/distinfo
+++ b/shells/ast-ksh/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.14 2012/10/06 12:23:36 ryoon Exp $
+$NetBSD: distinfo,v 1.15 2014/11/06 12:25:36 joerg Exp $
SHA1 (INIT.2012-08-01.tgz) = 0b472a615db384fe707042baaa3347dc1aa1c81e
RMD160 (INIT.2012-08-01.tgz) = 48f1830bc85a26125dd986256d38be435668d445
@@ -8,3 +8,9 @@ RMD160 (ast-ksh.2012-08-01.tgz) = 74bf4735182a6b527e3eb5c5ae6d7854ea72d78b
Size (ast-ksh.2012-08-01.tgz) = 2053532 bytes
SHA1 (patch-ab) = 98ec5d5e90f3f9bf45bdbd7199f85e932e07eada
SHA1 (patch-ad) = a85c7ac72c3443e4c140ee36bbc35b2a4eb42062
+SHA1 (patch-src_lib_libast_features_lib) = 28bee8d00364a415c46bef63899329bc3326fe34
+SHA1 (patch-src_lib_libast_features_map.c) = efc25164d5e153ee3fc3b519d4d2abbc7c3f2f6b
+SHA1 (patch-src_lib_libast_features_sys) = 32a3f793395bb06e23c58e31ef534415da0d626b
+SHA1 (patch-src_lib_libast_features_vmalloc) = 714b1437cac8f49618581c6284a362163b37feba
+SHA1 (patch-src_lib_libast_include_vmalloc.h) = 165a39666a4f9c155e8c1af6220e351ac3b8189a
+SHA1 (patch-src_lib_libast_vmalloc_malloc.c) = 1256ade4a1bee59dccde6c549736a84bf14f0ae4
diff --git a/shells/ast-ksh/patches/patch-src_lib_libast_features_lib b/shells/ast-ksh/patches/patch-src_lib_libast_features_lib
new file mode 100644
index 00000000000..6a6cbc3a1d3
--- /dev/null
+++ b/shells/ast-ksh/patches/patch-src_lib_libast_features_lib
@@ -0,0 +1,13 @@
+$NetBSD: patch-src_lib_libast_features_lib,v 1.1 2014/11/06 12:25:36 joerg Exp $
+
+--- src/lib/libast/features/lib.orig 2014-11-06 01:38:59.000000000 +0000
++++ src/lib/libast/features/lib
+@@ -28,7 +28,7 @@ lib getopt,getsubopt,getopt_long,getopt_
+ lib glob,index,iswblank,iswctype,killpg,link,localeconv,madvise
+ lib mbtowc,mbrtowc,memalign,memchr,memcpy,memdup,memmove,memset
+ lib mkdir,mkfifo,mktemp,mktime
+-lib mount,on_exit,onexit,opendir,pathconf
++lib mount,on_exit,onexit,opendir,pathconf,posix_memalign
+ lib readlink,remove,rename,rewinddir,rindex,rmdir,setlocale
+ lib setpgid,setpgrp,setpgrp2,setreuid,setsid,setuid,sigaction
+ lib sigprocmask,sigsetmask,sigunblock,sigvec,socketpair
diff --git a/shells/ast-ksh/patches/patch-src_lib_libast_features_map.c b/shells/ast-ksh/patches/patch-src_lib_libast_features_map.c
new file mode 100644
index 00000000000..2bdaef226df
--- /dev/null
+++ b/shells/ast-ksh/patches/patch-src_lib_libast_features_map.c
@@ -0,0 +1,16 @@
+$NetBSD: patch-src_lib_libast_features_map.c,v 1.1 2014/11/06 12:25:36 joerg Exp $
+
+--- src/lib/libast/features/map.c.orig 2010-06-25 16:59:08.000000000 +0000
++++ src/lib/libast/features/map.c
+@@ -432,6 +432,11 @@ main()
+ printf("#define memalign _ast_memalign\n");
+ printf("extern void* memalign(size_t, size_t);\n");
+ #endif
++#if _lib_posix_memalign
++ printf("#undef posix_memalign\n");
++ printf("#define posix_memalign _ast_posix_memalign\n");
++ printf("extern int posix_memalign(void **, size_t, size_t);\n");
++#endif
+ #if _lib_mstats
+ printf("#undef mstats\n");
+ printf("#define mstats _ast_mstats\n");
diff --git a/shells/ast-ksh/patches/patch-src_lib_libast_features_sys b/shells/ast-ksh/patches/patch-src_lib_libast_features_sys
new file mode 100644
index 00000000000..33808ed1a25
--- /dev/null
+++ b/shells/ast-ksh/patches/patch-src_lib_libast_features_sys
@@ -0,0 +1,12 @@
+$NetBSD: patch-src_lib_libast_features_sys,v 1.1 2014/11/06 12:25:36 joerg Exp $
+
+--- src/lib/libast/features/sys.orig 2012-06-15 02:11:26.000000000 +0000
++++ src/lib/libast/features/sys
+@@ -224,6 +224,7 @@ extern memset void* (void*, int, size_
+ extern pathconf long (const char*, int)
+ extern pause int (void)
+ extern pipe int (int[])
++extern posix_memalign int (void**,size_t, size_t)
+ extern pvalloc void* (size_t)
+ extern qsort void (void*, size_t, size_t, int(*)(const void*, const void*))
+ extern rand int (void)
diff --git a/shells/ast-ksh/patches/patch-src_lib_libast_features_vmalloc b/shells/ast-ksh/patches/patch-src_lib_libast_features_vmalloc
new file mode 100644
index 00000000000..04354ede1e9
--- /dev/null
+++ b/shells/ast-ksh/patches/patch-src_lib_libast_features_vmalloc
@@ -0,0 +1,13 @@
+$NetBSD: patch-src_lib_libast_features_vmalloc,v 1.1 2014/11/06 12:25:36 joerg Exp $
+
+--- src/lib/libast/features/vmalloc.orig 2014-11-06 01:39:22.000000000 +0000
++++ src/lib/libast/features/vmalloc
+@@ -9,7 +9,7 @@
+ ref -D_def_map_ast=1
+
+ lib atexit,getpagesize,mallinfo,mallopt,memalign,mstats
+-lib onexit,pvalloc,strdup,valloc,vmalloc
++lib onexit,posix_memalign,pvalloc,strdup,valloc,vmalloc
+ lib _malloc,__malloc,__libc_malloc
+ hdr alloca,malloc,stat,stdlib,unistd
+ mem mallinfo.arena,mstats.bytes_total malloc.h
diff --git a/shells/ast-ksh/patches/patch-src_lib_libast_include_vmalloc.h b/shells/ast-ksh/patches/patch-src_lib_libast_include_vmalloc.h
new file mode 100644
index 00000000000..b6b13ff3a01
--- /dev/null
+++ b/shells/ast-ksh/patches/patch-src_lib_libast_include_vmalloc.h
@@ -0,0 +1,45 @@
+$NetBSD: patch-src_lib_libast_include_vmalloc.h,v 1.1 2014/11/06 12:25:36 joerg Exp $
+
+--- src/lib/libast/include/vmalloc.h.orig 2014-11-06 00:44:20.000000000 +0000
++++ src/lib/libast/include/vmalloc.h
+@@ -199,6 +199,7 @@ extern void free _ARG_(( Void_t* ));
+ extern void cfree _ARG_(( Void_t* ));
+ extern Void_t* calloc _ARG_(( size_t, size_t ));
+ extern Void_t* memalign _ARG_(( size_t, size_t ));
++extern int posix_memalign _ARG_(( Void_t **, size_t, size_t ));
+ extern Void_t* valloc _ARG_(( size_t ));
+ #endif
+ extern int setregmax _ARG_(( int ));
+@@ -247,6 +248,7 @@ _END_EXTERNS_
+ #undef calloc
+ #undef free
+ #undef memalign
++#undef posix_memalign
+ #undef valloc
+
+ #if _map_malloc
+@@ -256,6 +258,7 @@ _END_EXTERNS_
+ #define calloc(n,s) (_VMFL_(Vmregion), _ast_calloc((size_t)n, (size_t)(s)) )
+ #define free(d) (_VMFL_(Vmregion), _ast_free((Void_t*)(d)) )
+ #define memalign(a,s) (_VMFL_(Vmregion), _ast_memalign((size_t)(a),(size_t)(s)) )
++#define posix_memalign(p,a,s) (_VMFL_(Vmregion), _ast_posix_memalign((Void_t**)(p),(size_t)(a),(size_t)(s)) )
+ #define valloc(s) (_VMFL_(Vmregion), _ast_valloc((size_t)(s) )
+
+ #else
+@@ -269,6 +272,7 @@ _END_EXTERNS_
+ #define calloc(n,s) (_VMFL_(Vmregion), calloc((size_t)n, (size_t)(s)) )
+ #define free(d) (_VMFL_(Vmregion), free((Void_t*)(d)) )
+ #define memalign(a,s) (_VMFL_(Vmregion), memalign((size_t)(a),(size_t)(s)) )
++#define posix_memalign(p,a,s) (_VMFL_(Vmregion), posix_memalign((Void_t**)(p),(size_t)(a),(size_t)(s)) )
+ #define valloc(s) (_VMFL_(Vmregion), valloc((size_t)(s) )
+ #ifndef strdup
+ #define strdup(s) ( _VMFL_(Vmregion), (strdup)((char*)(s)) )
+@@ -286,6 +290,8 @@ _END_EXTERNS_
+ #define free(d) (_VMFL_(Vmregion), _VMNM_(fre,/,*,*,/,e)((Void_t*)(d)) )
+ #define memalign(a,s) (_VMFL_(Vmregion), _VMNM_(memalig,/,*,*,/,n)\
+ ((size_t)(a),(size_t)(s)) )
++#define posix_memalign(p,a,s) (_VMFL_(Vmregion), _VMNM_(posix_memalig,/,*,*,/,n)\
++ ((Void_t**)(p),(size_t)(a),(size_t)(s)) )
+ #define valloc(s) (_VMFL_(Vmregion), _VMNM_(vallo,/,*,*,/,c)\
+ ((size_t)(s) )
+ #ifndef strdup
diff --git a/shells/ast-ksh/patches/patch-src_lib_libast_vmalloc_malloc.c b/shells/ast-ksh/patches/patch-src_lib_libast_vmalloc_malloc.c
new file mode 100644
index 00000000000..343353b5f11
--- /dev/null
+++ b/shells/ast-ksh/patches/patch-src_lib_libast_vmalloc_malloc.c
@@ -0,0 +1,91 @@
+$NetBSD: patch-src_lib_libast_vmalloc_malloc.c,v 1.1 2014/11/06 12:25:36 joerg Exp $
+
+--- src/lib/libast/vmalloc/malloc.c.orig 2012-06-28 06:52:46.000000000 +0000
++++ src/lib/libast/vmalloc/malloc.c
+@@ -61,6 +61,10 @@ extern char* getenv(const char*);
+ #undef mallinfo
+ typedef struct ______mallinfo Mallinfo_t;
+ #undef mallopt
++#undef memalign
++#define memalign _ast_memalign
++#undef posix_memalign
++#define posix_memalign _ast_posix_memalign
+ #undef mstats
+ typedef struct ______mstats Mstats_t;
+ #undef realloc
+@@ -153,6 +157,7 @@ static int _Vmpffd = -1;
+ #undef malloc
+ #undef mallopt
+ #undef memalign
++#undef posix_memalign
+ #undef mstats
+ #undef realloc
+ #undef valloc
+@@ -166,6 +171,7 @@ static int _Vmpffd = -1;
+ #undef free
+ #undef malloc
+ #undef memalign
++#undef posix_memalign
+ #undef realloc
+
+ #define calloc _ast_calloc
+@@ -173,6 +179,7 @@ static int _Vmpffd = -1;
+ #define free _ast_free
+ #define malloc _ast_malloc
+ #define memalign _ast_memalign
++#define posix_memalign _ast_posix_memalign
+ #define realloc _ast_realloc
+
+ #endif
+@@ -847,6 +854,9 @@ extern Void_t* F1(_malloc, size_t,n) { r
+ #if _lib_memalign
+ extern Void_t* F2(_memalign, size_t,a, size_t,n) { return memalign(a, n); }
+ #endif
++#if _lib_posix_memalign
++extern Void_t* F2(_posix_memalign, size_t,a, size_t,n) { return posix_memalign(a, n); }
++#endif
+ #if _lib_pvalloc
+ extern Void_t* F1(_pvalloc, size_t,n) { return pvalloc(n); }
+ #endif
+@@ -864,6 +874,9 @@ extern Void_t* F1(__malloc, size_t,n) {
+ #if _lib_memalign
+ extern Void_t* F2(__memalign, size_t,a, size_t,n) { return memalign(a, n); }
+ #endif
++#if _lib_posix_memalign
++extern Void_t* F2(__posix_memalign, size_t,a, size_t,n) { return posix_memalign(a, n); }
++#endif
+ #if _lib_pvalloc
+ extern Void_t* F1(__pvalloc, size_t,n) { return pvalloc(n); }
+ #endif
+@@ -881,6 +894,9 @@ extern Void_t* F1(__libc_malloc, size_t,
+ #if _lib_memalign
+ extern Void_t* F2(__libc_memalign, size_t,a, size_t,n) { return memalign(a, n); }
+ #endif
++#if _lib_posix_memalign
++extern Void_t* F2(__libc_posix_memalign, size_t,a, size_t,n) { return posix_memalign(a, n); }
++#endif
+ #if _lib_pvalloc
+ extern Void_t* F1(__libc_pvalloc, size_t,n) { return pvalloc(n); }
+ #endif
+@@ -1015,6 +1031,11 @@ extern Void_t* malloc _ARG_((size_t));
+ extern Void_t* memalign _ARG_((size_t, size_t));
+ #endif
+
++#if _lib_posix_memalign
++#undef posix_memalign
++extern Void_t* posix_memalign _ARG_((size_t, size_t));
++#endif
++
+ #if _lib_pvalloc
+ #undef pvalloc
+ extern Void_t* pvalloc _ARG_((size_t));
+@@ -1039,6 +1060,9 @@ extern Void_t* F1(_ast_malloc, size_t,n)
+ #if _lib_memalign
+ extern Void_t* F2(_ast_memalign, size_t,a, size_t,n) { return memalign(a, n); }
+ #endif
++#if _lib_posix_memalign
++extern Void_t* F2(_ast_posix_memalign, size_t,a, size_t,n) { return memalign(a, n); }
++#endif
+ extern Void_t* F2(_ast_realloc, Void_t*,p, size_t,n) { return realloc(p, n); }
+
+ #endif
diff --git a/shells/static-ast-ksh/Makefile b/shells/static-ast-ksh/Makefile
index 15fe106979f..f04f9583017 100644
--- a/shells/static-ast-ksh/Makefile
+++ b/shells/static-ast-ksh/Makefile
@@ -1,13 +1,15 @@
-# $NetBSD: Makefile,v 1.13 2014/01/09 12:24:41 jperkin Exp $
+# $NetBSD: Makefile,v 1.14 2014/11/06 12:25:36 joerg Exp $
#
.include "../../shells/ast-ksh/Makefile.common"
+PKGREVISION= 1
CONFLICTS= ast-ksh-[0-9]* # Override.
DISTINFO_FILE= ${.CURDIR}/../../shells/ast-ksh/distinfo
PATCHDIR= ${.CURDIR}/../../shells/ast-ksh/patches
-PKGDIR= ${.CURDIR}/../../shells/ast-ksh
+PLIST_SRC= ${.CURDIR}/../../shells/ast-ksh/PLIST
+DESCR_SRC?= ${.CURDIR}/../../shells/ast-ksh/DESCR
PKGNAME:= static-${PKGNAME}
COMMENT:= Statically-linked version of the ${COMMENT}