-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure.ac
154 lines (140 loc) · 4.34 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
m4_define([v_maj], [0])
m4_define([v_min], [6])
m4_define([v_mic], [0])
m4_define([v_rev], m4_esyscmd_s([git log -n1 --pretty=oneline 2> /dev/null | cut -d' ' -f1 ]))
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
m4_define([v_ver], [v_maj.v_min.v_mic])
m4_define([lt_rev], m4_eval(v_maj + v_min))
m4_define([lt_cur], v_mic)
m4_define([lt_age], v_min)
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
AC_PREREQ(2.57)
AC_INIT([shotgun],[v_ver],[[email protected]],[shotgun])
AC_CONFIG_SRCDIR([Makefile.am])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADER([config.h])
AC_GNU_SOURCE
AC_ISC_POSIX
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
m4_ifdef([v_rev], , [m4_define([v_rev], [0])])
m4_ifdef([v_rel], , [m4_define([v_rel], [])])
AC_DEFINE_UNQUOTED(VMAJ, [v_maj], [Major version])
AC_DEFINE_UNQUOTED(VMIN, [v_min], [Minor version])
AC_DEFINE_UNQUOTED(VMIC, [v_mic], [Micro version])
AC_DEFINE(VREV, ["v_rev"], [Revison])
version_info="lt_rev:lt_cur:lt_age"
release_info="v_rel"
AC_SUBST(version_info)
AC_SUBST(release_info)
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
VMAJ=v_maj
AC_SUBST(VMAJ)
AM_INIT_AUTOMAKE([foreign])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_PROG_LIBTOOL
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_MAKE_SET
AC_HEADER_STDC
AC_TYPE_SIZE_T
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T
AC_FUNC_MEMCMP
AC_FUNC_ALLOCA
AC_C___ATTRIBUTE__
CC_PIC="$lt_prog_compiler_pic"
CXX_PIC="$lt_prog_compiler_pic_CXX"
AC_SUBST([CC_PIC])
AC_SUBST([CXX_PIC])
AC_CHECK_HEADERS([limits.h])
AC_CHECK_FUNCS([memcpy])
##PKG_CHECK_MODULES([ELM], [$requirement_elm]))
PKG_CHECK_MODULES([ELM], [eina >= 1.0.999 eet >= 1.4.0 evas >= 1.0.999 ecore >= 1.0.999 ecore-evas >= 1.0.999 ecore-file >= 1.0.999 ecore-imf >= 1.0.999 ecore-con >= 1.0.999 edje >= 1.0.999 elementary efx])
AC_ARG_WITH([edje-cc],
[AC_HELP_STRING([--with-edje-cc=PATH],
[specify a specific path to edje_cc])],
[edje_cc=$withval;
AC_MSG_NOTICE([edje_cc explicitly set to $edje_cc])
],[edje_cc=$(pkg-config --variable=prefix edje)/bin/edje_cc])
AC_SUBST(edje_cc)
have_azy="no"
want_azy="auto"
AC_ARG_ENABLE([azy],
[AC_HELP_STRING([--disable-azy], [disable azy support. @<:@default=detect@:>@])],
[want_azy=$enableval], [])
if test "x$want_azy" != "xno"; then
PKG_CHECK_MODULES([AZY],
[azy >= 1.0.0],
[
AC_DEFINE(HAVE_AZY, 1, [Azy support])
have_azy="yes"
],
[have_azy="no"]
)
else
have_azy="no"
fi
if test "x$want_azy" = "xyes" -a "x$have_azy" = "xno"; then
AC_MSG_ERROR([azy support requested, but not found by pkg-config.])
fi
have_edbus="no"
want_edbus="auto"
AC_ARG_ENABLE([edbus],
[AC_HELP_STRING([--disable-edbus], [disable edbus support. @<:@default=detect@:>@])],
[want_edbus=$enableval], [])
if test "x$want_edbus" != "xno"; then
PKG_CHECK_MODULES([edbus],
[edbus >= 1.0.0],
[
AC_DEFINE(HAVE_DBUS, 1, [DBUS support])
have_edbus="yes"
],
[have_edbus="no"]
)
else
have_edbus="no"
fi
if test "x$want_edbus" = "xyes" -a "x$have_edbus" = "xno"; then
AC_MSG_ERROR([edbus support requested, but not found by pkg-config.])
fi
have_enotify="no"
want_enotify="auto"
AC_ARG_ENABLE([enotify],
[AC_HELP_STRING([--disable-enotify], [disable enotify support. @<:@default=detect@:>@])],
[want_enotify=$enableval], [])
if test "x$want_enotify" != "xno"; then
PKG_CHECK_MODULES([enotify],
[enotify >= 1.0.0],
[
AC_DEFINE(HAVE_NOTIFY, 1, [DBUS Notification support])
have_enotify="yes"
],
[have_enotify="no"]
)
else
have_enotify="no"
fi
if test "x$want_enotify" = "xyes" -a "x$have_enotify" = "xno"; then
AC_MSG_ERROR([enotify support requested, but not found by pkg-config.])
fi
#EFL_CHECK_DOXYGEN([build_doc="yes"], [build_doc="no"])
# write output
AC_CONFIG_FILES([
Makefile
data/Makefile
data/desktop/Makefile
data/theme/Makefile
src/Makefile
src/lib/Makefile
src/bin/Makefile
])
AC_OUTPUT