~ubuntu-branches/ubuntu/warty/dejagnu/warty

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Jacobowitz
  • Date: 2004-02-09 15:07:58 UTC
  • Revision ID: james.westby@ubuntu.com-20040209150758-oaj7r5zrop60v8sb
Tags: upstream-1.4.4
ImportĀ upstreamĀ versionĀ 1.4.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl Process this file with autoconf to produce a configure script.
 
2
AC_PREREQ(2.13)
 
3
AC_INIT(runtest.exp)
 
4
dnl AC_CONFIG_AUX_DIR(..)
 
5
 
 
6
dnl These are required by automake
 
7
AM_INIT_AUTOMAKE(dejagnu, 1.4.4)
 
8
AM_MAINTAINER_MODE
 
9
AC_PROG_MAKE_SET
 
10
 
 
11
AC_PROG_CC
 
12
AC_NO_EXECUTABLES
 
13
AC_PROG_CXX
 
14
AC_PROG_INSTALL
 
15
AC_EXEEXT
 
16
 
 
17
AC_PROG_YACC
 
18
dnl AM_PROG_LEX
 
19
 
 
20
dnl we need the path to Docbook so we can build packages.
 
21
DJ_AC_PATH_DOCBOOK
 
22
 
 
23
dnl we need the path to the tcl shell to build a release
 
24
DJ_AC_PATH_TCLSH
 
25
 
 
26
dnl Level of indirection for automake macro (baseboards:boards_DATA)
 
27
BOARDS='$(boards)'
 
28
AC_SUBST(BOARDS)
 
29
CONFIG='$(config)'
 
30
AC_SUBST(CONFIG)
 
31
 
 
32
AC_CONFIG_SUBDIRS(example/calc example/hello)
 
33
 
 
34
AC_OUTPUT(Makefile doc/Makefile testsuite/Makefile example/Makefile
 
35
testsuite/libdejagnu/Makefile)
 
36