Merge pull request #11353 from kvuorine/fwknop-fixes
[feed/packages.git] / utils / qemu / patches / 0002-configure-allow-enabling-disabling-libudev-from-comm.patch
1 From 608b183335725bcc1c2dd8b615551c49ec3b9c88 Mon Sep 17 00:00:00 2001
2 From: Yousong Zhou <yszhou4tech@gmail.com>
3 Date: Mon, 11 May 2020 10:46:37 +0800
4 Subject: [PATCH] configure: allow enabling/disabling libudev from command line
5
6 ---
7 configure | 4 ++++
8 1 file changed, 4 insertions(+)
9
10 diff --git a/configure b/configure
11 index c8d2ac1c3e..cf3f8ffdd7 100755
12 --- a/configure
13 +++ b/configure
14 @@ -1601,6 +1601,10 @@ for opt do
15 ;;
16 --gdb=*) gdb_bin="$optarg"
17 ;;
18 + --enable-libudev) libudev=yes
19 + ;;
20 + --disable-libudev) libudev=no
21 + ;;
22 --disable-fortify-source) fortify_source="no"
23 ;;
24 *)