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)
|
2001-02-04 21:38:03 -05:00
|
|
|
AM_INIT_AUTOMAKE(libraw1394, 0.8.99)
|
2000-05-28 17:00:56 -04:00
|
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
|
1999-12-02 18:07:38 -05:00
|
|
|
AC_PROG_CC
|
|
|
|
AM_PROG_LIBTOOL
|
2000-06-11 13:48:43 -04:00
|
|
|
AC_PROG_INSTALL
|
1999-12-02 18:07:38 -05:00
|
|
|
|
2000-09-10 18:18:49 -04:00
|
|
|
AC_CHECK_SIZEOF(void *, 8)
|
2001-01-18 20:11:48 -05:00
|
|
|
AC_C_CONST
|
|
|
|
AC_C_BIGENDIAN
|
2000-09-10 18:18:49 -04:00
|
|
|
|
2000-06-22 12:22:00 -04:00
|
|
|
# set the libtool so version numbers
|
2000-11-23 20:11:24 -05:00
|
|
|
lt_major=5
|
2001-01-18 20:11:48 -05:00
|
|
|
lt_revision=1
|
|
|
|
lt_age=0
|
2000-06-22 12:22:00 -04:00
|
|
|
|
|
|
|
AC_SUBST(lt_major)
|
|
|
|
AC_SUBST(lt_revision)
|
|
|
|
AC_SUBST(lt_age)
|
|
|
|
|
|
|
|
|
|
|
|
CFLAGS="$CFLAGS -Wall -Wunused"
|
2001-02-27 20:21:15 -05:00
|
|
|
AC_OUTPUT([
|
|
|
|
Makefile
|
|
|
|
src/Makefile
|
|
|
|
doc/Makefile
|
|
|
|
doc/testlibraw.1
|
|
|
|
debian/Makefile
|
|
|
|
])
|