diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-08-30 14:44:02 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-08-30 14:44:02 +0000 |
commit | 8de428290af2048235c774f9fceb89f333034e26 (patch) | |
tree | 3a780df8841f094700345a1770fa27c66d0adc49 /devel | |
parent | 32f8b439a5f7c7120c3512d079ce8436fdcfe1fc (diff) | |
download | pkgsrc-8de428290af2048235c774f9fceb89f333034e26.tar.gz |
Update to 0.8.0 (I'm back! ;-):
version 0.8.0:
- g++ v3 abi demangler
- x86 disasm: added undocumented ffreep (df c0) instruction
- compiles with gcc 3.4
- fixed buggy blockop-progress indicator
- fixed ugly segfault with elf symbol loading
- ppc disassebler updated (altivec instructions)
- removed stefan's email address (dead)
version 0.8.0pre1:
- disassembler:
- IBM/Motorola PowerPC (PPC) (new)
- file formats:
- XBE (X-Box executable) support by Stefan Esser (experimental)
- Mach-O header and image support for PPC and x86 (experimental)
- FLT (Flat) support (experimental)
- PEF support (experimental)
- XCOFF32 support
- COFF support for coff files without optional header
- COFF big-endian support
- ELF PPC support
- ELF relocatable file support (experimental)
- fixed buggy ELF reading code partially (thanks rpm28)
- eval dialog: added function help
- eval: not ('~') and logical-not ('!') operators
- disassembler interface (int maxlen, not byte maxlen)
- Win32: fixed access to native windows clipboard
- Win32: high CPU usage problems fixed (sys_suspend() bugged)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/ht/Makefile | 4 | ||||
-rw-r--r-- | devel/ht/distinfo | 7 | ||||
-rw-r--r-- | devel/ht/patches/patch-aa | 35 |
3 files changed, 5 insertions, 41 deletions
diff --git a/devel/ht/Makefile b/devel/ht/Makefile index e23c9c9cfa7..2c55242d908 100644 --- a/devel/ht/Makefile +++ b/devel/ht/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1.1.1 2004/04/02 09:23:35 jmmv Exp $ +# $NetBSD: Makefile,v 1.2 2004/08/30 14:44:02 jmmv Exp $ # -DISTNAME= ht-0.7.5 +DISTNAME= ht-0.8.0 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hte/} EXTRACT_SUFX= .tar.bz2 diff --git a/devel/ht/distinfo b/devel/ht/distinfo index 85e3d5b1881..422f610db8b 100644 --- a/devel/ht/distinfo +++ b/devel/ht/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.2 2004/06/08 22:10:04 jmmv Exp $ +$NetBSD: distinfo,v 1.3 2004/08/30 14:44:02 jmmv Exp $ -SHA1 (ht-0.7.5.tar.bz2) = 9fef242c37dea48d6afdfaae3edc7687b8822afe -Size (ht-0.7.5.tar.bz2) = 649346 bytes -SHA1 (patch-aa) = 7832f4247c0288bdf4a993bbe89a3f6862b05e39 +SHA1 (ht-0.8.0.tar.bz2) = 86bd53b2c37c1e637ea2f1e1eaa89affda018767 +Size (ht-0.8.0.tar.bz2) = 731401 bytes diff --git a/devel/ht/patches/patch-aa b/devel/ht/patches/patch-aa deleted file mode 100644 index 32a7ff105a3..00000000000 --- a/devel/ht/patches/patch-aa +++ /dev/null @@ -1,35 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2004/06/08 22:10:04 jmmv Exp $ - ---- io/posix/htsys.cc.orig 2003-04-25 00:22:38.000000000 +0200 -+++ io/posix/htsys.cc -@@ -157,7 +157,11 @@ int sys_filename_cmp(const char *a, cons - - static int child_pid = -1; - -+#ifdef SA_SIGINFO - void SIGCHLD_sigaction(int i, siginfo_t *info, void *v) -+#else -+void SIGCHLD_signal(int i) -+#endif - { - int j; - waitpid(child_pid, &j, WNOHANG); -@@ -241,6 +245,8 @@ int sys_get_caps() - bool init_system() - { - setuid( getuid() ); -+ -+#ifdef SA_SIGINFO - struct sigaction sa; - - sa.sa_sigaction = SIGCHLD_sigaction; -@@ -248,6 +254,9 @@ bool init_system() - sa.sa_flags = SA_SIGINFO; - - sigaction(SIGCHLD, &sa, NULL); -+#else -+ (void)signal(SIGCHLD, SIGCHLD_signal); -+#endif - return true; - } - |