diff options
author | Rene Ladan <rene@FreeBSD.org> | 2020-12-17 10:52:12 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2020-12-17 10:52:12 +0000 |
commit | 228da4c6da759d64e435b6221fb66351e642fdde (patch) | |
tree | 1b40a7bb74b5bedbb8c30bedbbba8ac2655c8136 /net/avahi-app/files/patch-common_qt5-pie.m4 | |
parent | Add chinese/rime-data and its dependencies (diff) |
Update the Avahi ports to version 0.8
This switches the preferred GTK bindings to GTK3 and enable the GTK
options in the metaport.
This commit also switches the Python interface to Python3, thereby
un-deprecating net/py-avahi.
PR: 250354
Submitted by: Olivier Duchateu
Reviewed by: Greg V (earlier PR)
Notes
Notes:
svn path=/head/; revision=558281
Diffstat (limited to 'net/avahi-app/files/patch-common_qt5-pie.m4')
-rw-r--r-- | net/avahi-app/files/patch-common_qt5-pie.m4 | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/net/avahi-app/files/patch-common_qt5-pie.m4 b/net/avahi-app/files/patch-common_qt5-pie.m4 deleted file mode 100644 index 16300fbd816c..000000000000 --- a/net/avahi-app/files/patch-common_qt5-pie.m4 +++ /dev/null @@ -1,30 +0,0 @@ ---- common/qt5-pie.m4.orig 2018-12-22 20:56:34.850352000 +0100 -+++ common/qt5-pie.m4 2018-12-22 20:56:34.850515000 +0100 -@@ -0,0 +1,27 @@ -+AC_DEFUN([AC_AVAHI_QT_ADD_PIC_IF_NEEDED], -+[ -+ AC_LANG_PUSH([C++]) -+ save_CPPFLAGS="$CPPFLAGS" -+ CPPFLAGS="$CPPFLAGS $QT5_CFLAGS" -+ AC_MSG_CHECKING([whether Qt works without -fPIC]) -+ AC_PREPROC_IFELSE( -+ [AC_LANG_SOURCE([[#include <QtCore>]])], -+ [AC_MSG_RESULT(yes)], -+ [ -+ AC_MSG_RESULT(no) -+ AC_MSG_CHECKING([whether Qt works with -fPIC]) -+ CPPFLAGS="$CPPFLAGS -fPIC" -+ AC_PREPROC_IFELSE( -+ [AC_LANG_SOURCE([[#include <QtCore>]])], -+ [ -+ AC_MSG_RESULT(yes) -+ QT5_CFLAGS="$QT5_CFLAGS -fPIC" -+ ], -+ [ -+ AC_MSG_RESULT(no) -+ AC_MSG_ERROR(Couldn't compile Qt without -fPIC nor with -fPIC) -+ ]) -+ ]) -+ CPPFLAGS="$save_CPPFLAGS" -+ AC_LANG_POP([C++]) -+]) |