This repository has been archived on 2022-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
1999-12-02 18:07:38 -05:00
|
|
|
# process this file with autoconf to get a configure script
|
|
|
|
|
|
|
|
AC_INIT(Makefile.am)
|
2000-03-17 23:13:00 -05:00
|
|
|
AM_INIT_AUTOMAKE(libraw1394, 0.6)
|
2000-05-28 17:00:56 -04:00
|
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
|
|
|
|
# AC_CANONICAL_HOST
|
1999-12-02 18:07:38 -05:00
|
|
|
|
|
|
|
AC_PROG_CC
|
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
|
2000-05-28 17:00:56 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
])
|
|
|
|
|
2000-03-17 23:13:00 -05:00
|
|
|
AC_OUTPUT([ Makefile src/Makefile debian/Makefile ])
|