Update package: perl-Crypt-Rijndael-1.13_2 - Patch for musl.

This commit is contained in:
Kevin Berry 2015-06-15 21:39:28 +00:00
parent 4450cf169b
commit 6e4202b9e6
2 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,14 @@
--- rijndael.h
+++ rijndael.h
@@ -72,6 +72,11 @@
typedef u_char UINT8;
#endif
+#include <stdint.h>
+#define _CRYPT_RIJNDAEL_H_TYPES
+typedef uint32_t UINT32;
+typedef uint8_t UINT8;
+
/* I expect this to be the usual case */
#if ! defined(_CRYPT_RIJNDAEL_H_TYPES) && ( defined(_SYS_TYPES_H) || defined(_SYS_TYPES_H_) )
#define _CRYPT_RIJNDAEL_H_TYPES

View file

@ -1,7 +1,7 @@
# Template file for 'perl-Crypt-Rijndael'
pkgname=perl-Crypt-Rijndael
version=1.13
revision=1
revision=2
wrksrc="${pkgname/perl-/}-${version}"
build_style=perl-module
hostmakedepends="perl"