Andrew Geissler | 84ad7c5 | 2020-06-27 00:00:16 -0500 | [diff] [blame] | 1 | From a471cf4e4c73350e090eb2cd87ec959d138012e5 Mon Sep 17 00:00:00 2001 |
| 2 | From: Jeremy Puhlman <jpuhlman@mvista.com> |
| 3 | Date: Thu, 19 Mar 2020 11:54:26 -0700 |
| 4 | Subject: [PATCH] Add enable/disable libudev |
| 5 | |
| 6 | Upstream-Status: Pending |
| 7 | Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com> |
| 8 | --- |
| 9 | configure | 4 ++++ |
| 10 | 1 file changed, 4 insertions(+) |
| 11 | |
| 12 | diff --git a/configure b/configure |
| 13 | index cac271c..bd116eb 100755 |
| 14 | --- a/configure |
| 15 | +++ b/configure |
| 16 | @@ -1539,6 +1539,10 @@ for opt do |
| 17 | ;; |
| 18 | --disable-plugins) plugins="no" |
| 19 | ;; |
| 20 | + --enable-libudev) libudev="yes" |
| 21 | + ;; |
| 22 | + --disable-libudev) libudev="no" |
| 23 | + ;; |
| 24 | *) |
| 25 | echo "ERROR: unknown option $opt" |
| 26 | echo "Try '$0 --help' for more information" |
| 27 | -- |
| 28 | 1.8.3.1 |
| 29 | |