diff options
author | marcus <marcus@FreeBSD.org> | 2006-05-07 07:01:08 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2006-05-07 07:01:08 +0800 |
commit | 0c3c8074d6572ead373578b01f96e9bd4fa6ffe3 (patch) | |
tree | fb18d5b3b73c4f040724fc1cdcca18f19d02e838 /net | |
parent | 985b8848dc46900a4d8d067d4c53dd6f5e5b7827 (diff) | |
download | freebsd-ports-graphics-0c3c8074d6572ead373578b01f96e9bd4fa6ffe3.tar.gz freebsd-ports-graphics-0c3c8074d6572ead373578b01f96e9bd4fa6ffe3.tar.zst freebsd-ports-graphics-0c3c8074d6572ead373578b01f96e9bd4fa6ffe3.zip |
Now that they re-broke pthread usage in 0.6.10, resurrect a patch to fix
it.
Reported by: Yasuda Keisuke <kysd@po.harenet.ne.jp>
Diffstat (limited to 'net')
-rw-r--r-- | net/avahi/Makefile | 1 | ||||
-rw-r--r-- | net/avahi/files/patch-configure | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/net/avahi/Makefile b/net/avahi/Makefile index 1ece050d483..e824e6649ed 100644 --- a/net/avahi/Makefile +++ b/net/avahi/Makefile @@ -7,6 +7,7 @@ PORTNAME= avahi PORTVERSION= 0.6.10 +PORTREVISION?= 1 CATEGORIES?= net dns MASTER_SITES= http://www.avahi.org/download/ diff --git a/net/avahi/files/patch-configure b/net/avahi/files/patch-configure new file mode 100644 index 00000000000..37b3b17483e --- /dev/null +++ b/net/avahi/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Sat May 6 18:58:28 2006 ++++ configure Sat May 6 18:59:05 2006 +@@ -19179,7 +19179,7 @@ fi + # this is useful + echo "$as_me:$LINENO: checking whether to check for GCC pthread/shared inconsistencies" >&5 + echo $ECHO_N "checking whether to check for GCC pthread/shared inconsistencies... $ECHO_C" >&6 +- if test x"" = x1; then ++ if test x1"" = x1; then + echo "$as_me:$LINENO: result: no" >&5 + echo "${ECHO_T}no" >&6 + else |