diff options
author | cheusov <cheusov> | 2012-07-22 15:36:03 +0000 |
---|---|---|
committer | cheusov <cheusov> | 2012-07-22 15:36:03 +0000 |
commit | c924d1e017345ef513985d27ad2883f4ebd64960 (patch) | |
tree | df8c0abab8252c9883ce4438743f4431f6635884 /devel | |
parent | 2de82c2af433c05928304e52ad0b0178bdc0c494 (diff) | |
download | pkgsrc-c924d1e017345ef513985d27ad2883f4ebd64960.tar.gz |
Update to 1.3.2
Build failure on cygwin was fixed (sf.net bug #3398121)
__inline__ directives were removed
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libmaa/Makefile | 4 | ||||
-rw-r--r-- | devel/libmaa/distinfo | 14 | ||||
-rw-r--r-- | devel/libmaa/patches/patch-debug.c | 13 | ||||
-rw-r--r-- | devel/libmaa/patches/patch-flags.c | 13 | ||||
-rw-r--r-- | devel/libmaa/patches/patch-maa.h | 22 |
5 files changed, 6 insertions, 60 deletions
diff --git a/devel/libmaa/Makefile b/devel/libmaa/Makefile index e1e7c4412cf..f78826a7b26 100644 --- a/devel/libmaa/Makefile +++ b/devel/libmaa/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2011/10/22 10:01:00 cheusov Exp $ +# $NetBSD: Makefile,v 1.7 2012/07/22 15:36:03 cheusov Exp $ -DISTNAME= libmaa-1.3.1 +DISTNAME= libmaa-1.3.2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dict/} diff --git a/devel/libmaa/distinfo b/devel/libmaa/distinfo index c4cb68a857b..1c03398b493 100644 --- a/devel/libmaa/distinfo +++ b/devel/libmaa/distinfo @@ -1,11 +1,5 @@ -$NetBSD: distinfo,v 1.6 2012/07/09 19:09:09 joerg Exp $ +$NetBSD: distinfo,v 1.7 2012/07/22 15:36:03 cheusov Exp $ -SHA1 (libmaa-1.3.1.tar.gz) = b14ae76ea2c39b42e1b269e1ea5b156d9c3cdc9b -RMD160 (libmaa-1.3.1.tar.gz) = 49230793034a2ec5b0b4756d8e7eb2fdd94c3c15 -Size (libmaa-1.3.1.tar.gz) = 287084 bytes -SHA1 (patch-debug.c) = e42d7702dab5463882e24b049d4f98a9e009429c -SHA1 (patch-flags.c) = 04b054ed652f16d31cf60ada860f56a4984b9e34 -SHA1 (patch-maa.h) = b49a58a9b394db4065202294ec2c17f734a19588 -SHA1 (patch-debug.c) = e42d7702dab5463882e24b049d4f98a9e009429c -SHA1 (patch-flags.c) = 04b054ed652f16d31cf60ada860f56a4984b9e34 -SHA1 (patch-maa.h) = b49a58a9b394db4065202294ec2c17f734a19588 +SHA1 (libmaa-1.3.2.tar.gz) = 4540374c9e66e3f456a8102e0ae75828b7892c6d +RMD160 (libmaa-1.3.2.tar.gz) = f3b091b8b5f8e8d7a69d192b25c70bf10cdf0d09 +Size (libmaa-1.3.2.tar.gz) = 287198 bytes diff --git a/devel/libmaa/patches/patch-debug.c b/devel/libmaa/patches/patch-debug.c deleted file mode 100644 index f0a9a125a90..00000000000 --- a/devel/libmaa/patches/patch-debug.c +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-debug.c,v 1.3 2012/07/11 10:07:54 joerg Exp $ - ---- debug.c.orig 2012-07-05 12:00:08.000000000 +0000 -+++ debug.c -@@ -173,7 +173,7 @@ void dbg_unset_flag( dbg_Type flag ) - /* \doc This inlined function tests the |flag|, returning non-zero if the - |flag| is set, and zero otherwise. */ - --__inline__ int dbg_test( dbg_Type flag ) -+int dbg_test( dbg_Type flag ) - { - return TEST( flag, setFlags ); - } diff --git a/devel/libmaa/patches/patch-flags.c b/devel/libmaa/patches/patch-flags.c deleted file mode 100644 index 85fbf2d5fdc..00000000000 --- a/devel/libmaa/patches/patch-flags.c +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-flags.c,v 1.3 2012/07/11 10:07:54 joerg Exp $ - ---- flags.c.orig 2012-07-05 12:01:24.000000000 +0000 -+++ flags.c -@@ -142,7 +142,7 @@ void flg_set( const char *name ) - /* \doc This inlined function tests the |flag|, returning non-zero if the - |flag| is set, and zero otherwise. */ - --__inline__ int flg_test( flg_Type flag ) -+int flg_test( flg_Type flag ) - { - return TEST( flag, setFlags ); - } diff --git a/devel/libmaa/patches/patch-maa.h b/devel/libmaa/patches/patch-maa.h deleted file mode 100644 index c6b20de7896..00000000000 --- a/devel/libmaa/patches/patch-maa.h +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-maa.h,v 1.3 2012/07/11 10:07:54 joerg Exp $ - ---- maa.h.orig 2012-07-05 12:00:48.000000000 +0000 -+++ maa.h -@@ -438,7 +438,7 @@ extern void dbg_destroy( void - extern void dbg_set( const char *name ); - extern void dbg_set_flag( dbg_Type flag ); - extern void dbg_unset_flag( dbg_Type flag ); --extern __inline__ int dbg_test( dbg_Type flag ); -+extern int dbg_test( dbg_Type flag ); - extern void dbg_list( FILE *stream ); - - #define PRINTF(flag,arg) if (dbg_test(flag)) { log_info arg; } -@@ -450,7 +450,7 @@ typedef unsigned long int flg_Type; - extern void flg_register( flg_Type flag, const char *name ); - extern void flg_destroy( void ); - extern void flg_set( const char *name ); --extern __inline__ int flg_test( flg_Type flag ); -+extern int flg_test( flg_Type flag ); - extern void flg_list( FILE *stream ); - extern const char *flg_name( flg_Type flag ); - |