aboutsummaryrefslogtreecommitdiffstats
path: root/main/py3-libvirt/musl-gnuc-prereq.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/py3-libvirt/musl-gnuc-prereq.patch')
-rw-r--r--main/py3-libvirt/musl-gnuc-prereq.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/main/py3-libvirt/musl-gnuc-prereq.patch b/main/py3-libvirt/musl-gnuc-prereq.patch
deleted file mode 100644
index 2e3c95e3f4..0000000000
--- a/main/py3-libvirt/musl-gnuc-prereq.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- libvirt-python-1.2.0.orig/libvirt-utils.h
-+++ libvirt-python-1.2.0/libvirt-utils.h
-@@ -28,6 +28,15 @@
- # define MIN(a,b) (((a) < (b)) ? (a) : (b))
- # endif
-
-+# ifndef __GNUC_PREREQ
-+# if defined __GNUC__ && defined __GNUC_MINOR__
-+# define __GNUC_PREREQ(maj, min) \
-+ ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
-+# else
-+# define __GNUC_PREREQ(maj, min) 0
-+# endif
-+#endif
-+
- /**
- * libvirt.h provides this as of version 1.2.0, but we want to be able
- * to support older versions of libvirt so copy and paste the macro from