~ubuntu-core-dev/update-notifier/ubuntu

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: mvo
  • Date: 2004-11-02 00:58:06 UTC
  • Revision ID: gustavo@niemeyer.net-20041102005806-9118e041eaa0ebc8
* inital checkin

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
 
 
3
AC_INIT(configure.in)
 
4
AM_INIT_AUTOMAKE(upgrade-notifier, 0.32)
 
5
AM_CONFIG_HEADER(config.h)
 
6
AM_MAINTAINER_MODE
 
7
 
 
8
AC_ISC_POSIX
 
9
AC_PROG_CC
 
10
AM_PROG_CC_STDC
 
11
AC_HEADER_STDC
 
12
 
 
13
pkg_modules="gtk+-2.0 >= 2.0.0 libgnomeui-2.0 >= 2.0.0 libglade-2.0 >= 2.0.0"
 
14
PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
 
15
AC_SUBST(PACKAGE_CFLAGS)
 
16
AC_SUBST(PACKAGE_LIBS)
 
17
 
 
18
GETTEXT_PACKAGE=upgrade-notifier
 
19
AC_SUBST(GETTEXT_PACKAGE)
 
20
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.])
 
21
 
 
22
dnl Add the languages which your application supports here.
 
23
ALL_LINGUAS=""
 
24
AM_GLIB_GNU_GETTEXT
 
25
 
 
26
AC_OUTPUT([
 
27
Makefile
 
28
src/Makefile
 
29
data/Makefile
 
30
pixmaps/Makefile
 
31
po/Makefile.in
 
32
])
 
33