Opened 10 years ago
Closed 10 years ago
#3865 closed task (fixed)
Clean up Eudev configure options
| Reported by: | Owned by: | ||
|---|---|---|---|
| Priority: | normal | Milestone: | 7.9 |
| Component: | Book | Version: | SVN |
| Severity: | normal | Keywords: | |
| Cc: |
Description
I believe these options are not needed for Eudev:
--disable-gudev --disable-gtk-doc-html --enable-split-usr --enable-hwdb --disable-introspection
I know the first 2 are definitely not needed, as the strings "gudev" and "gtk-doc" no longer even exist anywhere in Eudev's source tree.
The split-usr option is automatically enabled if rootprefix!=prefix.
if test "x${ac_default_prefix}" != "x${with_rootprefix}" && test "x${with_rootprefix}" != "x\${prefix}"; then :
enable_split_usr=yes
The hwdb seems to be enabled by default.
# Check whether --enable-hwdb was given.
if test "${enable_hwdb+set}" = set; then :
enableval=$enable_hwdb;
else
enable_hwdb=yes
fi
Finally, I would need to double-check, but a quick read of the configure script seems to indicate that introspection support is checked for and automatically disabled if it's not found, without the whole build failing.
Note:
See TracTickets
for help on using tickets.

Fixed at revision 10974.
Thanks for the report.