File: configure.in

package info (click to toggle)
vbetool 1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 824 kB
  • ctags: 471
  • sloc: sh: 3,497; ansic: 1,221; makefile: 20
file content (17 lines) | stat: -rw-r--r-- 355 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

dnl Process this file with autoconf to produce a configure script.
 
AC_INIT(vbetool.c)
AM_INIT_AUTOMAKE(vbetool, 0.3)

dnl Checks for programs

AC_PROG_CC

dnl Simple, huh?

AC_ARG_WITH([x86emu], AC_HELP_STRING([--with-x86emu],[build with x86emu support]), [USEX86EMU=true])

AM_CONDITIONAL(WITH_X86EMU, test x$USEX86EMU = xtrue)

AC_OUTPUT([Makefile])