File: configure.ac

package info (click to toggle)
gnome-video-effects 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,324 kB
  • sloc: sh: 639; makefile: 39
file content (33 lines) | stat: -rw-r--r-- 922 bytes parent folder | download
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
30
31
32
33
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.64])
AC_INIT([gnome-video-effects],
	[0.4.0],
	[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-video-effects],
	[gnome-video-effects],
	[http://live.gnome.org/GnomeVideoEffects])

AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_SRCDIR([gnome-video-effects.pc.in])
AC_CONFIG_MACRO_DIR([m4])

AM_INIT_AUTOMAKE([1.11.1 -Wall dist-xz no-define no-dist-gzip nostdinc subdir-objects])

AM_SILENT_RULES([yes])


#*******************************************************************************
# Internationalization
#*******************************************************************************
AC_SUBST([GETTEXT_PACKAGE], [$PACKAGE_TARNAME])
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], ["$GETTEXT_PACKAGE"], [GETTEXT package name])

IT_PROG_INTLTOOL([0.40.0])

AC_PROG_LN_S

AC_CONFIG_FILES([
Makefile
gnome-video-effects.pc
po/Makefile.in
])
AC_OUTPUT