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
|
dnl Process this file with autoconf to produce a configure script.
AC_INIT(simple-scan, 3.24.0)
AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz foreign])
AM_SILENT_RULES([yes])
AM_MAINTAINER_MODE
AC_CONFIG_MACRO_DIR([m4])
AM_PROG_VALAC([0.22.0], [], [AC_MSG_ERROR([Vala compiler not found])])
AM_PROG_CC_C_O
GLIB_GSETTINGS
AC_PATH_PROG(GLIB_COMPILE_RESOURCES, glib-compile-resources)
APPSTREAM_XML
dnl ###########################################################################
dnl Dependencies
dnl ###########################################################################
dnl Run-time dependencies:
dnl * gnome-icon-theme
dnl * xdg-utils (for xdg-email)
PKG_CHECK_MODULES(SIMPLE_SCAN, [
glib-2.0 >= 2.32
gtk+-3.0
gmodule-export-2.0
gthread-2.0
zlib
cairo
gdk-pixbuf-2.0
gusb
])
AC_ARG_ENABLE([colord],
AS_HELP_STRING([--enable-colord],
[Enable colord support[[default=auto]]]),
[enable_colord=$enableval],
[enable_colord=auto])
have_colord=no
if test x"$enable_colord" != "xno"; then
PKG_CHECK_MODULES(COLORD, [
colord
],
[have_colord=yes],
[if test x"$enable_colord" = xauto; then
AC_MSG_FAILURE([--enable-colord was given, but could not be found])
fi
])
fi
AM_CONDITIONAL(HAVE_COLORD, test $have_colord = yes)
AC_ARG_ENABLE([packagekit],
AS_HELP_STRING([--enable-packagekit],
[Enable packagekit support[[default=auto]]]),
[enable_packagekit=$enableval],
[enable_packagekit=auto])
have_packagekit=no
if test x"$enable_packagekit" != "xno"; then
PKG_CHECK_MODULES(PACKAGEKIT, [
packagekit-glib2
],
[have_packagekit=yes],
[if test x"$enable_packagekit" = xauto; then
AC_MSG_FAILURE([--enable-packagekit was given, but could not be found])
fi
])
fi
AM_CONDITIONAL(HAVE_PACKAGEKIT, test $have_packagekit = yes)
AC_CHECK_HEADERS([sane/sane.h],[],[AC_MSG_ERROR([SANE not found])])
AC_CHECK_HEADERS([sane/saneopts.h],[],[AC_MSG_ERROR([SANE not found])])
dnl ###########################################################################
dnl Documentation
dnl ###########################################################################
YELP_HELP_INIT
dnl ###########################################################################
dnl Internationalization
dnl ###########################################################################
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.19.7])
AC_SUBST([GETTEXT_PACKAGE], [simple-scan])
dnl ###########################################################################
dnl Files to generate
dnl ###########################################################################
AC_OUTPUT([
Makefile
data/Makefile
data/icons/Makefile
help/Makefile
po/Makefile.in
src/Makefile
])
dnl ###########################################################################
dnl Summary
dnl ###########################################################################
echo "
Simple Scan $VERSION
====================
prefix: $prefix
PackageKit support: $have_packagekit
Color management: $have_colord
"
|