X-Git-Url: http://git.annexia.org/?p=qemu-sanity-check.git;a=blobdiff_plain;f=configure.ac;h=c42c19301414b6657cfaa3f03908951245176ac8;hp=664f47ba58b281e1f263b8b110b11ec4c50c4b63;hb=b1dcf280b829474c8bce6c0143bebc4c463bd0b2;hpb=aee03601ac923906391b438bc4040c4a4265112d diff --git a/configure.ac b/configure.ac index 664f47b..c42c193 100644 --- a/configure.ac +++ b/configure.ac @@ -11,11 +11,11 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -AC_INIT([qemu-sanity-check],[1.1.1]) +AC_INIT([qemu-sanity-check],[1.1.5]) AM_INIT_AUTOMAKE([foreign]) dnl Check for basic C environment. @@ -28,6 +28,22 @@ test "x$U" != "x" && AC_MSG_ERROR([Compiler not ANSI compliant]) AM_PROG_CC_C_O +AC_CHECK_HEADERS([sys/reboot.h]) + +dnl Allow the package to override the default list of qemu binary +dnl names which are tried, since this heavily depends on how qemu +dnl has been packaged in the downstream distro. +dnl +dnl Note that "$canonical_arch" and "$arch" are variables in the +dnl qemu-sanity-check shell script. Absolute paths could be used +dnl here as well. +AC_ARG_WITH([qemu-list], + [AS_HELP_STRING([--with-qemu-list], + [list of qemu binaries to try @<:@default=qemu-kvm qemu-system-\$canonical_arch qemu kvm@:>@])], + [QEMU_LIST="$withval"], + [QEMU_LIST="qemu-kvm qemu-system-\$canonical_arch qemu kvm"]) +AC_SUBST([QEMU_LIST]) + AC_PROG_SED AC_MSG_CHECKING([that a static binary can be built])