]> sigrok.org Git - libsigrok.git/commit
configure.ac: Fix the order of some entries.
authorUwe Hermann <redacted>
Tue, 9 Apr 2013 10:32:30 +0000 (12:32 +0200)
committerUwe Hermann <redacted>
Tue, 9 Apr 2013 15:49:13 +0000 (17:49 +0200)
commitae4c3d0431571346f489be3a370a9bb431a6ec59
tree52574c3b465f32ef0e9f0be2e8aeb7eaf3d40598
parentaba692624593131b9f1ea7cd63d1f88b9e09b668
configure.ac: Fix the order of some entries.

In order for lib autodetection and disabling of drivers (which require
libs that cannot be found) to work, the order of AC_ARG_ENABLEs,
AM_CONDITIONALs, and AC_DEFINEs needs to be changed.

All drivers start out enabled or disabled (depending on whether
the --disable-drivers option was supplied or not). Then, any driver can
be enabled or disabled explicitly via --enable-<drivername> or the
resp. --disable-<drivername> option. Finally, pkg-config checks for all
libraries are performed, and all drivers which require a library that
cannot be found are disabled explicitly (regardless of any
--enable-<drivername> option that might have been supplied).
configure.ac