forked from hean01/iscan-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
80 lines (55 loc) · 1.96 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
dnl configure.ac -- an -*- autoconf -*- template for configure
dnl Copyright (C) 2010--2013 SEIKO EPSON CORPORATION
dnl
dnl License: GPLv2+
dnl Authors: AVASYS CORPORATION
dnl
dnl This file is part of the 'iscan-data' package.
dnl This package is free software: you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation, either version 2 of the License or, at
dnl your option, any later version.
dnl
dnl This program is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
dnl GNU General Public License for more details.
dnl
dnl You ought to have received a copy of the GNU General Public License
dnl along with this package. If not, see <http://www.gnu.org/licenses/>.
dnl
dnl Process this file with autoconf to make a configure file.
dnl preamble
AC_PREREQ(2.60)
AC_INIT([iscan-data],
[1.26.0],
[linux-scanner@epson.jp],
[iscan-data])
SCM_INIT([-Wall -Werror])
AC_SUBST(COPYRIGHT_PERIOD, ["2010-2013"])
SCM_RELEASE([1])
SCM_VENDOR([SEIKO EPSON CORPORATION])
SCM_AUTHOR([AVASYS CORPORATION])
SCM_WEBSITE([http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX])
SCM_INFO(["Image Scan! for Linux data files"],["\
Provides the necessary support files for Image Scan! for Linux,\\
including device information and policy file generation logic.\
"],["\
Image Scan! for Linux will not function without this package.\
"])
AC_CONFIG_SRCDIR([iscan-data.spec])
AC_CONFIG_MACRO_DIR([include])
AM_INIT_AUTOMAKE([1.7 foreign -Wall -Werror])
dnl checks for programs
dnl checks for modules
dnl checks for libraries
dnl checks for header files
dnl checks for typedefs, structures, and compiler characteristics
dnl checks for library functions
dnl appendix
AC_CONFIG_FILES([
Makefile
policy/Makefile
policy/make-policy-file
])
AC_OUTPUT