ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libukcprog/configure.in
Revision: 1.1
Committed: Sat Mar 29 16:30:31 2003 UTC (21 years, 1 month ago) by tdb
Branch: MAIN
Log Message:
libukcprog is now a seperate package. I doubt this will be much use to
anyone other than us, but I see no reason why we can't package it up
and distribute it. Obviously we can't attach the GPL to this, as we
don't own it.

File Contents

# User Rev Content
1 tdb 1.1 # -*- Autoconf -*-
2     # Process this file with autoconf to produce a configure script.
3     #
4     # configure.in for libukcprog
5     # $Id$
6     #
7    
8     # Change these to change the package name and version
9     AC_INIT(libukcprog, 1.0, dev@i-scream.org.uk)
10     AM_INIT_AUTOMAKE(libukcprog, 1.0)
11    
12     # Revision number (automatically updated)
13     AC_REVISION($Revision$)
14    
15     # Might work with older autoconfs... but tested on 2.57
16     AC_PREREQ(2.57)
17    
18     # Checks for programs
19     AC_PROG_CC
20     AC_PROG_INSTALL
21     AC_PROG_LIBTOOL
22    
23     # Checks for header files
24     AC_HEADER_STDC
25    
26     # Checks for typedefs, structures, and compiler characteristics
27     AC_C_CONST
28    
29     # And finish by changing these files
30     AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile])
31    
32     AC_OUTPUT