projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
cfa5877
)
configure: Don't fail if gudev is not present
author
Olivier Crête
<tester@tester.ca>
Mon, 17 Mar 2014 03:19:55 +0000
(23:19 -0400)
committer
Olivier Crête
<tester@tester.ca>
Mon, 17 Mar 2014 03:19:55 +0000
(23:19 -0400)
PKG_CHECK_MODULES has the bad habit of failing the build if it doesn't
get what it wants, prevent that.
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index f05434c56fc79b48071c482fd8c465c1d4cfdbae..282f511fdb88e990267df09922635202ab3c3c21 100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-522,7
+522,8
@@
if test x$with_gudev != xno; then
PKG_CHECK_MODULES(GUDEV, [ gudev-1.0 >= 147 ],
[ AC_DEFINE(HAVE_GUDEV, 1,
[Whether gudev is available for device detection])
- ])
+ ],
+ [true])
fi
AC_SUBST(GUDEV_CFLAGS)