~ubuntu-branches/ubuntu/breezy/gettext/breezy

« back to all changes in this revision

Viewing changes to gettext-tools/examples/hello-objc-gnome/configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2004-03-14 17:40:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040314174002-p1ad5ldve1hqzhye
Tags: 0.14.1-2
* Added libexpat1-dev to Build-Depends, for glade support.
* Added libc0.1-dev to Build-Depends, for GNU/kFreeBSD.
* Removed special-casing of knetbsd-gnu in debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl Example for use of GNU gettext.
 
2
dnl Copyright (C) 2003-2004 Free Software Foundation, Inc.
 
3
dnl This file is in the public domain.
 
4
dnl
 
5
dnl Configuration file - processed by autoconf.
 
6
 
 
7
AC_INIT
 
8
AC_CONFIG_SRCDIR(hello.m)
 
9
AM_INIT_AUTOMAKE(hello-objc-gnome, 0)
 
10
 
 
11
AC_PROG_CC
 
12
OBJC=$CC
 
13
AC_SUBST([OBJC])
 
14
OBJCFLAGS=$CFLAGS
 
15
AC_SUBST([OBJCFLAGS])
 
16
 
 
17
GNOME_INIT
 
18
OBGNOME_INCLUDES=
 
19
obgnome_prefix=`obgnome-config --prefix`
 
20
if test -n "$obgnome_prefix"; then
 
21
  OBGNOME_INCLUDES="-I $obgnome_prefix/include"
 
22
fi
 
23
AC_SUBST([OBGNOME_INCLUDES])
 
24
 
 
25
AC_CHECK_HEADERS([unistd.h])
 
26
AM_GNU_GETTEXT([external])
 
27
AM_GNU_GETTEXT_VERSION(0.13.1)
 
28
 
 
29
AC_CONFIG_FILES([Makefile])
 
30
AC_CONFIG_FILES([m4/Makefile])
 
31
AC_CONFIG_FILES([po/Makefile.in])
 
32
AC_OUTPUT