mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
- Update to 0.4.4
Approved by: jadawin@ (mentor)
This commit is contained in:
parent
1e195bd7ec
commit
f83bf6e8a8
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=271935
archivers/py-lzma
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= lzma
|
||||
PORTVERSION= 0.4.3
|
||||
PORTVERSION= 0.4.4
|
||||
CATEGORIES= archivers python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (pylzma-0.4.3.tar.gz) = ddfc7fc7bfe1d4b84c88c981ce0c508a96766fdcdf53c415b63b3ca8f60a4239
|
||||
SIZE (pylzma-0.4.3.tar.gz) = 104857
|
||||
SHA256 (pylzma-0.4.4.tar.gz) = ba65fbeee504bd10af275399df10e5603a33226a3e22d393dfa59ae99765cff1
|
||||
SIZE (pylzma-0.4.4.tar.gz) = 106537
|
||||
|
@ -1,26 +0,0 @@
|
||||
--- ./src/7zip/C/CpuArch.c.orig 2010-07-21 22:13:50.000000000 +0200
|
||||
+++ ./src/7zip/C/CpuArch.c 2011-01-27 02:31:44.000000000 +0100
|
||||
@@ -72,14 +72,15 @@
|
||||
|
||||
#else
|
||||
|
||||
- __asm__ __volatile__ (
|
||||
- "cpuid"
|
||||
- : "=a" (*a) ,
|
||||
- "=b" (*b) ,
|
||||
- "=c" (*c) ,
|
||||
- "=d" (*d)
|
||||
- : "0" (function)) ;
|
||||
-
|
||||
+ /* fix GCC build error with -fPIC by storing ebx value before calling cpuid */
|
||||
+ __asm__ __volatile__(
|
||||
+ "pushl %%ebx \n\t"
|
||||
+ "cpuid \n\t"
|
||||
+ "movl %%ebx, %1 \n\t"
|
||||
+ "popl %%ebx \n\t"
|
||||
+ : "=a"(*a), "=r"(*b), "=c"(*c), "=d"(*d)
|
||||
+ : "a"(function)
|
||||
+ : "cc");
|
||||
#endif
|
||||
|
||||
#else
|
Loading…
Reference in New Issue
Block a user