~ubuntu-branches/ubuntu/trusty/electricsheep/trusty-proposed

« back to all changes in this revision

Viewing changes to flam3/configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Alexis Sukrieh
  • Date: 2005-06-17 18:28:17 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050617182817-3ju56pnktawusjt8
Tags: 2.6.2-1
* New upstream release: 2.6.2.
  (closes: #309852)
* Added myself as maintainer (Sander Smeenk offered it to me).
* Added dpatch for handling changes applied on upstream sources.
* Added all missing manpages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl $Id: configure.in,v 1.6 2005/05/07 01:45:32 spotspot Exp $
 
2
dnl Process this file with autoconf to produce a configure script.
 
3
 
 
4
AC_INIT(flam3-animate.c)
 
5
AM_CONFIG_HEADER(config.h)
 
6
AM_INIT_AUTOMAKE(flam3,"2.6")
 
7
AC_PROG_CC
 
8
AC_PROG_INSTALL
 
9
AC_PROG_MAKE_SET
 
10
AC_PROG_RANLIB
 
11
AC_HEADER_STDC
 
12
AC_C_CONST
 
13
AC_TYPE_SIZE_T
 
14
AC_HEADER_TIME
 
15
AC_CHECK_LIB([z],[deflateInit_],,[AC_MSG_ERROR([zlib is required.])])
 
16
AC_CHECK_LIB([png],[png_write_image],,[AC_MSG_ERROR([The png library is required.])])
 
17
AC_CHECK_LIB([expat],[XML_ParserCreate],,[AC_MSG_ERROR([The expat xml library is required.])])
 
18
AC_CHECK_LIB([jpeg],[jpeg_start_compress],,[AC_MSG_ERROR([The jpeg library is required.])])
 
19
 
 
20
AC_OUTPUT([
 
21
Makefile
 
22
flam3.pc
 
23
])