Browse Source

update to latest stable version

Waldemar Brodkorb 15 years ago
parent
commit
91c5b0a6ff
2 changed files with 2 additions and 14 deletions
  1. 2 2
      package/haserl/Makefile
  2. 0 12
      package/haserl/patches/patch-src_haserl_c

+ 2 - 2
package/haserl/Makefile

@@ -4,9 +4,9 @@
 include ${TOPDIR}/rules.mk
 
 PKG_NAME:=		haserl
-PKG_VERSION:=		0.8.0
+PKG_VERSION:=		0.9.26
 PKG_RELEASE:=		1
-PKG_MD5SUM:=		bd9195d086566f56634c0bcbbbcbebea
+PKG_MD5SUM:=		8cd64e591209751a062ad4e08f1d10dd
 PKG_DESCR:=		a CGI wrapper to embed shell scripts in HTML documents
 PKG_SECTION:=		lang
 PKG_URL:=		http://haserl.sourceforge.net

+ 0 - 12
package/haserl/patches/patch-src_haserl_c

@@ -1,12 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- haserl-0.8.0.orig/src/haserl.c	2004-11-10 18:59:35.000000000 +0100
-+++ haserl-0.8.0/src/haserl.c	2008-10-09 14:21:28.000000000 +0200
-@@ -131,7 +131,7 @@ int myputenv (char *newbuf, char *prefix
- 	if (strlen(prefix)) { memcpy (entry, prefix, strlen(prefix)); }
- 	memcpy ((char *) (entry + strlen(prefix)), newbuf, strlen(newbuf));
- 
--	keylen = (size_t) (index (entry, '=') - entry);
-+	keylen = (size_t) (strchr (entry, '=') - entry);
- 	
- 	if ( keylen <= 0 ) {
- 			free (entry);