~ubuntu-branches/ubuntu/hoary/bbdb/hoary

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Joerg Jaspert
  • Date: 2004-08-11 23:12:05 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040811231205-ri3o8t37gusxbvma
Tags: 2.35.cvs20040528-1
* CVS co - last changes there are from 28.05.2004
* Bug fix: "fails to load : missing bbdb-vm.el". (Closes: #179821, #180024, #210248, #233904).
* Removed | emacs20 from Depends. (Closes: #232731)
* Removed old w3-el-e{20|19} Suggests.
* Bug fix: "bbdb: Include /usr/share/emacs/site-lisp/bbdb/tex/", thanks
  to Mario Lang (Closes: #243211).

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
dnl Author:        Didier Verna <didier@xemacs.org>
4
4
dnl Maintainer:    Didier Verna <didier@xemacs.org>, Waider <waider@waider.ie>
5
5
dnl Created:       Tue Nov 14 18:28:52 2000
6
 
dnl Last Revision: $Date: 2002/03/20 20:10:03 $
 
6
dnl Last Revision: $Date: 2003/08/05 11:54:01 $
7
7
 
8
8
dnl Copyright (C) 2000-2001 Didier Verna
9
9
 
30
30
AC_INIT([BBDB], [BBDB_VERSION], [bbdb-info@lists.sourceforge.net])
31
31
 
32
32
AC_COPYRIGHT([Copyright (C) 2000-2001 Didier Verna <didier@xemacs.org>.])
33
 
AC_REVISION([$Revision: 2.4 $])
 
33
AC_REVISION([$Revision: 2.7 $])
34
34
 
35
35
AC_CONFIG_SRCDIR([configure.ac])
36
36
dnl We only have install-sh right now, so it's not worth adding an aux
42
42
                 lisp/Makefile
43
43
                 texinfo/Makefile
44
44
                 tex/Makefile
45
 
                 utils/Makefile
46
 
                 testing/Makefile])
 
45
                 utils/Makefile])
 
46
 
 
47
dnl Make sure we don't accidentally try to configure a testing directory if
 
48
dnl one doesn't exist.
 
49
if [[ -d testing ]]
 
50
then
 
51
  AC_CONFIG_FILES([testing/Makefile])
 
52
fi
47
53
 
48
54
dnl Common system utilities checking:
49
55
AC_PROG_MAKE_SET
50
56
AC_PROG_INSTALL
51
57
AC_PROG_LN_S
52
58
AC_PATH_PROG(RM, rm, /bin/rm)
 
59
AC_PATH_PROG(GREP, grep, /bin/grep)
53
60
 
54
61
dnl ah ah ah.
55
62
AC_MSG_CHECKING([for my keys])
126
133
  RM="${RM} -f"
127
134
fi
128
135
 
 
136
dnl More Hacky. Figure out the correct way to get contextual grep.
 
137
dnl FIXME this should only be switched on for developers since it's
 
138
dnl only required by the test stuff.
 
139
if ${GREP} -C foo configure.ac > /dev/null 2>&1; then
 
140
   GREPCONTEXT="-C"
 
141
else
 
142
   GREPCONTEXT="-C5"
 
143
fi
 
144
 
 
145
AC_SUBST(GREPCONTEXT)
 
146
 
129
147
AC_OUTPUT
130
148
 
131
149
dnl configure.ac ends here