~ubuntu-branches/ubuntu/vivid/inform/vivid

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Jan Christoph Nordholz
  • Date: 2008-05-26 22:09:44 UTC
  • mfrom: (2.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080526220944-ba7phz0d1k4vo7wx
Tags: 6.31.1+dfsg-1
* Remove a considerable number of files from the package
  due to unacceptable licensing terms.
* Repair library symlinks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dnl Master configuration file for Inform, in -*- m4 -*- mode.
2
 
 
3
 
dnl Process this file with autoconf to produce a configure script.
4
 
 
5
 
dnl Initialize.
6
 
AC_INIT(inform, 6.30)
7
 
AC_CONFIG_SRCDIR(src/inform.c)
8
 
 
9
 
dnl Extra config files go in this directory.
10
 
AC_CONFIG_AUX_DIR(config)
11
 
 
12
 
dnl Set package info.
13
 
INFORM_VERSION=6.30
14
 
AC_SUBST(INFORM_VERSION)
15
 
 
16
 
PACKAGE_VERSION=1
17
 
AC_SUBST(PACKAGE_VERSION)
18
 
 
19
 
AM_INIT_AUTOMAKE(inform, ${INFORM_VERSION}.${PACKAGE_VERSION})
20
 
 
21
 
dnl Check host system.
22
 
AC_CANONICAL_HOST
23
 
 
24
 
case $host in
25
 
*linux*)        HOST=LINUX;;
26
 
*)              HOST=UNIX;;
27
 
esac
28
 
 
29
 
AC_SUBST(HOST)
30
 
 
31
 
dnl Checks for programs.
32
 
AC_PROG_CC
33
 
AC_PROG_LN_S
34
 
AC_PROG_INSTALL
35
 
 
36
 
dnl Check for Cygwin.
37
 
AC_CYGWIN
38
 
AC_EXEEXT
39
 
 
40
 
AM_CONDITIONAL(CYGWIN, test "$CYGWIN" = yes)
41
 
 
42
 
dnl Include common makefile stuff.
43
 
AC_SUBST_FILE(make_include)
44
 
make_include=$srcdir/config/commondefs
45
 
 
46
 
AC_OUTPUT(
47
 
Makefile
48
 
src/Makefile
49
 
lib/Makefile
50
 
include/Makefile
51
 
info/Makefile
52
 
html/Makefile
53
 
demos/Makefile
54
 
)