~ubuntu-branches/debian/sid/menu/sid

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Bill Allombert
  • Date: 2005-05-24 10:34:47 UTC
  • mfrom: (1.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050524103447-9zu50so5d0nte3o9
Tags: 2.1.24
* The "head or tail" release 
* Fix .menus typo in menufile.5. Closes: #306564. Thanks Sean Finney.
* Add Vietnamese menu messages and menu sections translations.
  Thanks Clytie Siddall. Closes: #307450, #308953.
* Update Esperanto menu sections translation. Thanks MJ Ray.
* Add Esperanto menu messages translation. Thanks MJ Ray.
* Unfuzzy Norwegian Bokmål menu messages translation.

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_INIT(update-menus/update-menus.cc)
3
 
 
4
 
AC_ISC_POSIX
5
 
 
6
 
AM_INIT_AUTOMAKE(menu,[`sed -n '1s/dpkg (\([0-9.]\+\)).*/\1/p' ${srcdir}/debian/changelog`])
7
 
#AM_INIT_AUTOMAKE(menu,2.0.1)
8
 
 
9
 
dnl Checks for programs.
10
 
dnl AM_PROG_LIBTOOL
11
 
AC_PROG_CC
12
 
AC_PROG_CXX
13
 
 
14
 
AC_PROG_INSTALL
15
 
 
16
 
dnl Checks for libraries.
17
 
 
18
 
dnl Checks for header files.
19
 
AC_HEADER_DIRENT
20
 
AC_HEADER_STDC
21
 
AC_HEADER_SYS_WAIT
22
 
AC_CHECK_HEADERS(fcntl.h sys/file.h syslog.h unistd.h)
23
 
 
24
 
dnl gettext
25
 
 
26
 
ALL_LINGUAS="en eo"
27
 
AM_GNU_GETTEXT
28
 
#AC_OUTPUT_COMMANDS([sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])
29
 
 
30
 
 
31
 
dnl Checks for typedefs, structures, and compiler characteristics.
32
 
AC_C_CONST
33
 
AC_TYPE_OFF_T
34
 
 
35
 
dnl Checks for library functions.
36
 
AC_TYPE_SIGNAL
37
 
AC_CHECK_FUNCS(mkdir strdup strerror)
38
 
 
39
 
AC_OUTPUT(po/Makefile.in intl/Makefile update-menus/Makefile install-menu/Makefile Makefile)
40