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-06-15 18:28:22 -04:00
|
|
|
AM_INIT_AUTOMAKE(libraw1394, 0.7)
|
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)
|
|
|
|
|
2000-06-22 12:22:00 -04:00
|
|
|
# set the libtool so version numbers
|
|
|
|
lt_major=4
|
|
|
|
lt_revision=0
|
|
|
|
lt_age=0
|
|
|
|
|
|
|
|
AC_SUBST(lt_major)
|
|
|
|
AC_SUBST(lt_revision)
|
|
|
|
AC_SUBST(lt_age)
|
|
|
|
|
|
|
|
|
|
|
|
CFLAGS="$CFLAGS -Wall -Wunused"
|
2000-03-17 23:13:00 -05:00
|
|
|
AC_OUTPUT([ Makefile src/Makefile debian/Makefile ])
|