You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
639 B
33 lines
639 B
10 years ago
|
dnl Process this file with autoconf to produce a configure script.
|
||
|
dnl Created by Anjuta application wizard.
|
||
|
|
||
|
AC_INIT(smssender_gtk, 0.1)
|
||
|
|
||
|
AC_CONFIG_HEADERS([config.h])
|
||
|
|
||
|
AM_INIT_AUTOMAKE([1.11])
|
||
|
|
||
|
AM_PATH_PYTHON
|
||
|
|
||
|
|
||
|
dnl ***************************************************************************
|
||
|
dnl Internationalization
|
||
|
dnl ***************************************************************************
|
||
|
IT_PROG_INTLTOOL([0.35.0])
|
||
|
|
||
|
GETTEXT_PACKAGE=smssender_gtk
|
||
|
AC_SUBST(GETTEXT_PACKAGE)
|
||
|
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [GETTEXT package name])
|
||
|
AM_GLIB_GNU_GETTEXT
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
AC_OUTPUT([
|
||
|
Makefile
|
||
|
src/Makefile
|
||
|
po/Makefile.in
|
||
|
])
|