blob: f38862fac98c5a5935185e035165137b3e9c8634 [file] [log] [blame]
Andrew Geisslerc60845c2021-01-29 15:55:05 -06001From 96f204df74f7dde5f4c9ad6e6eefc2d46219ccd9 Mon Sep 17 00:00:00 2001
Andrew Geissler84ad7c52020-06-27 00:00:16 -05002From: Jeremy Puhlman <jpuhlman@mvista.com>
3Date: Thu, 19 Mar 2020 11:54:26 -0700
4Subject: [PATCH] Add enable/disable libudev
5
6Upstream-Status: Pending
7Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
Andrew Geisslerc60845c2021-01-29 15:55:05 -06008
9%% original patch: 0001-Add-enable-disable-udev.patch
Andrew Geissler84ad7c52020-06-27 00:00:16 -050010---
11 configure | 4 ++++
12 1 file changed, 4 insertions(+)
13
14diff --git a/configure b/configure
Andrew Geisslerc60845c2021-01-29 15:55:05 -060015index c9a4e73..75f9773 100755
Andrew Geissler84ad7c52020-06-27 00:00:16 -050016--- a/configure
17+++ b/configure
Andrew Geisslerc60845c2021-01-29 15:55:05 -060018@@ -1606,6 +1606,10 @@ for opt do
Andrew Geissler84ad7c52020-06-27 00:00:16 -050019 ;;
Andrew Geisslerc60845c2021-01-29 15:55:05 -060020 --gdb=*) gdb_bin="$optarg"
Andrew Geissler84ad7c52020-06-27 00:00:16 -050021 ;;
22+ --enable-libudev) libudev="yes"
23+ ;;
24+ --disable-libudev) libudev="no"
25+ ;;
26 *)
27 echo "ERROR: unknown option $opt"
28 echo "Try '$0 --help' for more information"
29--
Andrew Geisslerc60845c2021-01-29 15:55:05 -0600302.7.4
Andrew Geissler84ad7c52020-06-27 00:00:16 -050031