Skip to content

Commit

Permalink
Fixed bug with udev support reporting
Browse files Browse the repository at this point in the history
Joshua Bodine

I'm going to reopen this because configure should still accurately report whether libudev will be used. Right now it just tests whether it's enabled as an argument, not whether configure was successful in finding it.
  • Loading branch information
slouken committed Nov 1, 2016
1 parent 539afc5 commit 077d6e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions configure
Expand Up @@ -23490,7 +23490,7 @@ fi
CheckDummyVideo
CheckDiskAudio
CheckDummyAudio
CheckDLOPEN
CheckDLOPEN
CheckHaikuVideo
CheckHaikuGL
CheckPTHREAD
Expand Down Expand Up @@ -24038,7 +24038,7 @@ if test x$have_x = xyes; then
SUMMARY="${SUMMARY}X11 libraries :${SUMMARY_video_x11}\n"
fi
SUMMARY="${SUMMARY}Input drivers :${SUMMARY_input}\n"
if test x$enable_libudev = xyes; then
if test x$have_libudev_h_hdr = xyes; then
SUMMARY="${SUMMARY}Using libudev : YES\n"
else
SUMMARY="${SUMMARY}Using libudev : NO\n"
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -3713,7 +3713,7 @@ if test x$have_x = xyes; then
SUMMARY="${SUMMARY}X11 libraries :${SUMMARY_video_x11}\n"
fi
SUMMARY="${SUMMARY}Input drivers :${SUMMARY_input}\n"
if test x$enable_libudev = xyes; then
if test x$have_libudev_h_hdr = xyes; then
SUMMARY="${SUMMARY}Using libudev : YES\n"
else
SUMMARY="${SUMMARY}Using libudev : NO\n"
Expand Down

0 comments on commit 077d6e6

Please sign in to comment.