View | Details | Raw Unified | Return to bug 152183
Collapse All | Expand All

(-)Makefile (-2 / +1 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	lzo2
8
PORTNAME=	lzo2
9
PORTVERSION=	2.03
9
PORTVERSION=	2.04
10
PORTREVISION=	2
11
CATEGORIES=	archivers devel
10
CATEGORIES=	archivers devel
12
MASTER_SITES=	http://www.oberhumer.com/opensource/lzo/download/ \
11
MASTER_SITES=	http://www.oberhumer.com/opensource/lzo/download/ \
13
		http://fresh.t-systems-sfr.com/unix/src/misc/ \
12
		http://fresh.t-systems-sfr.com/unix/src/misc/ \
(-)distinfo (-3 / +2 lines)
Lines 1-3 Link Here
1
MD5 (lzo-2.03.tar.gz) = 0c3d078c2e8ea5a88971089a2f02a726
1
SHA256 (lzo-2.04.tar.gz) = 4ee3a040facf39561f13e4ef2ab99a886fd68251a35d612486ed0625cc6ab428
2
SHA256 (lzo-2.03.tar.gz) = 8b1b0da8f757b9ac318e1c15a0eac8bdb56ca902a2dd25beda06c0f265f22591
2
SIZE (lzo-2.04.tar.gz) = 604424
3
SIZE (lzo-2.03.tar.gz) = 626042
(-)files/patch-silence-lzotest.c (-15 / +15 lines)
Lines 1-27 Link Here
1
This test reduces the lzotest verbosity so that it doesn't print anything
1
--- lzotest/lzotest.c.orig	2010-10-31 18:21:28.000000000 +0100
2
on success.
2
+++ lzotest/lzotest.c	2010-11-13 00:37:17.279807378 +0100
3
3
@@ -233,7 +233,7 @@
4
--- lzotest/lzotest.c.orig	2008-06-01 10:01:36.000000000 +0200
4
 // command line options
5
+++ lzotest/lzotest.c	2008-06-01 10:03:10.000000000 +0200
5
 **************************************************************************/
6
@@ -226,7 +226,7 @@
7
 
8
 struct corpus_entry_t;
9
 
6
 
10
-int opt_verbose = 2;
7
-int opt_verbose = 2;
11
+int opt_verbose = 1;
8
+int opt_verbose = 1;
12
 
9
 
13
 long opt_c_loops = 0;
10
 long opt_c_loops = 0;
14
 long opt_d_loops = 0;
11
 long opt_d_loops = 0;
15
@@ -1910,10 +1910,12 @@
12
@@ -1928,6 +1928,7 @@
16
 #elif defined(LZOTEST_USE_DYNLOAD)
13
         if ((*s == '/' || *s == '\\') && s[1])
17
 #  include "dynload/init.ch"
14
             progname = s + 1;
18
 #else
15
 
19
+#if 0
16
+#if 0
20
     printf("\nLZO real-time data compression library (v%s, %s).\n",
17
 #if defined(__LZO_PROFESSIONAL__)
18
     printf("\nLZO Professional real-time data compression library (v%s, %s).\n",
21
            lzo_version_string(), lzo_version_date());
19
            lzo_version_string(), lzo_version_date());
22
     printf("Copyright (C) 1996-2008 Markus Franz Xaver Johannes Oberhumer\nAll Rights Reserved.\n\n");
20
@@ -1937,6 +1938,7 @@
23
+#endif
21
            lzo_version_string(), lzo_version_date());
22
     printf("Copyright (C) 1996-2010 Markus Franz Xaver Johannes Oberhumer\nAll Rights Reserved.\n\n");
24
 #endif
23
 #endif
24
+#endif
25
 
25
 
26
 
26
 
27
 /*
27
 /*

Return to bug 152183