- Update to 0.10.1, fixing build with python 3.8
- Update WWW PR: 241809 Submitted by: amdmi3 Approved by: maintainer timeout (timur, 2 weeks)
This commit is contained in:
parent
a1c8d7a9fc
commit
9ea3c40af2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=518228
4 changed files with 10 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= tevent
|
||||
PORTVERSION= 0.10.0
|
||||
PORTVERSION= 0.10.1
|
||||
PORTREVISION= 0
|
||||
PORTEPOCH= 0
|
||||
CATEGORIES= devel
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1560369699
|
||||
SHA256 (tevent-0.10.0.tar.gz) = 33f39612cd6d1ae6a737245784581494846f5bb07827983d2f41f942446aa4e6
|
||||
SIZE (tevent-0.10.0.tar.gz) = 794845
|
||||
TIMESTAMP = 1573751183
|
||||
SHA256 (tevent-0.10.1.tar.gz) = 79a4da68b38b86ac71d8ac824ee3605ab22a6a91cfa83033a7db73f3dd6910b6
|
||||
SIZE (tevent-0.10.1.tar.gz) = 804125
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
--- buildtools/wafsamba/samba_autoconf.py.orig 2019-03-21 10:12:32 UTC
|
||||
--- buildtools/wafsamba/samba_autoconf.py.orig 2019-09-04 15:42:16 UTC
|
||||
+++ buildtools/wafsamba/samba_autoconf.py
|
||||
@@ -573,7 +573,7 @@ def library_flags(self, libs):
|
||||
|
||||
|
@ -26,11 +26,10 @@
|
|||
|
||||
if not res:
|
||||
if mandatory:
|
||||
@@ -925,6 +928,5 @@ def SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS(c
|
||||
@@ -949,5 +952,5 @@ def SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS(conf):
|
||||
conf.env.undefined_ldflags = conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True)
|
||||
|
||||
if not sys.platform.startswith("openbsd") and conf.env.undefined_ignore_ldflags == []:
|
||||
- if conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup']):
|
||||
+ if conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup'] + conf.env.WERROR_CFLAGS):
|
||||
if (conf.env.undefined_ignore_ldflags == [] and
|
||||
- conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup'])):
|
||||
+ conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup'] + conf.env.WERROR_CFLAGS)):
|
||||
conf.env.undefined_ignore_ldflags = ['-undefined', 'dynamic_lookup']
|
||||
-
|
||||
|
|
|
@ -5,4 +5,4 @@ descriptors becoming readable or writable and signals.
|
|||
Talloc is used for memory management, both internally and for private
|
||||
data provided by users of the library.
|
||||
|
||||
WWW: http://www.samba.org/
|
||||
WWW: https://tevent.samba.org/
|
||||
|
|
Loading…
Reference in a new issue