blob: a579257dee3a383d94ffc4a33e26d42f376e5641 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# process this file with autoconf to get a configure script
AC_INIT(Makefile.am)
AM_INIT_AUTOMAKE(libraw1394, 0.6)
AM_CONFIG_HEADER(config.h)
# AC_CANONICAL_HOST
AC_PROG_CC
AM_PROG_LIBTOOL
AC_ARG_ENABLE(32-64,
[ --enable-32-64 support systems with 64 bit kernel and 32 bit userland],
[
case $enableval in
yes) AC_DEFINE(KERNEL64_USER32) ;;
no) ;;
*) AC_MSG_ERROR([ Invalid arg for --enable-32-64 ])
esac
])
AC_OUTPUT([ Makefile src/Makefile debian/Makefile ])
|