-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
82 lines (63 loc) · 1.76 KB
/
configure.ac
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
dnl Process this file with autoconf to produce a configure script.
dnl Created by Anjuta application wizard.
dnl For autotest
AC_PREREQ(2.62)
AC_INIT(projectparser, 0.1)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AC_CONFIG_HEADERS([config.h])
AM_MAINTAINER_MODE
GLIB_REQUIRED=2.16.0
GTK_REQUIRED=2.12.10
GCONF_REQUIRED=2.12.0
AC_SUBST(GLIB_REQUIRED)
AC_SUBST(GTK_REQUIRED)
AC_SUBST(GCONF_REQUIRED)
AC_ISC_POSIX
AC_PROG_CC
AM_PROG_CC_STDC
AC_PROG_LEX
AC_PROG_YACC
AC_HEADER_STDC
dnl ***************************************************************************
dnl Internatinalization
dnl ***************************************************************************
GETTEXT_PACKAGE=projectparser
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [GETTEXT package name])
AM_GLIB_GNU_GETTEXT
IT_PROG_INTLTOOL([0.35.0])
BISON_I18N
AM_PROG_LIBTOOL
PKG_CHECK_MODULES(GLIB, glib-2.0 >= $GLIB_REQUIRED gobject-2.0 >= $GLIB_REQUIRED gmodule-2.0 >= $GLIB_REQUIRED gthread-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED)
PKG_CHECK_MODULES(GTK, gtk+-2.0 >= $GTK_REQUIRED)
PKG_CHECK_MODULES(GCONF, gconf-2.0 >= $GCONF_REQUIRED)
dnl Check for function forkpty in libutil
AC_CHECK_LIB(util, forkpty)
AC_CONFIG_FILES([
Makefile
src/Makefile
libanjuta/Makefile
tests/Makefile
po/Makefile.in
])
AC_CONFIG_TESTDIR(tests)
AC_CONFIG_FILES([tests/atlocal])
AM_MISSING_PROG([AUTOM4TE], [autom4te])
#TESTLOGFILE=tests.log
#AC_SUBST(TESTLOGFILE)
#AC_CONFIG_FILES([
#tests/test0.sh
#tests/test1.sh
#tests/test2.sh
#tests/test3.sh
#tests/test4.sh
#tests/test5.sh
#tests/test6.sh], [
#chmod +x tests/test0.sh
#chmod +x tests/test1.sh
#chmod +x tests/test2.sh
#chmod +x tests/test3.sh
#chmod +x tests/test4.sh
#chmod +x tests/test5.sh
#chmod +x tests/test6.sh])
AC_OUTPUT