File: configure.in

package info (click to toggle)
gmanedit 0.4.2-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,196 kB
  • ctags: 137
  • sloc: sh: 5,436; ansic: 2,038; makefile: 81; sed: 16
file content (29 lines) | stat: -rw-r--r-- 582 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
dnl Process this file with autoconf to produce a configure script.

AC_INIT(gmanedit, 0.4.2, pg4i@amsat.org)
AC_CONFIG_SRCDIR(src/main.c)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)

AC_ISC_POSIX
AC_PROG_CC
AM_PROG_CC_STDC
AC_HEADER_STDC

if test "${ac_cv_c_compiler_gnu}" = "yes"; then
  CFLAGS="${CFLAGS} -Wall"
fi

PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.10.0)
AC_SUBST(GTK_CFLAGS)
AC_SUBST(GTK_LIBS)

AM_GNU_GETTEXT([external])
dnl Add the languages which your application supports here.
ALL_LINGUAS="gl es ja ca sv"

AC_OUTPUT([
Makefile
src/Makefile
po/Makefile.in
])