forked from mydlp/mydlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac.tmpl
78 lines (73 loc) · 2.47 KB
/
configure.ac.tmpl
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
###
### Copyright (C) 2010 Huseyin Kerem Cevahir <[email protected]>
###
###--------------------------------------------------------------------------
### This file is part of MyDLP.
###
### MyDLP is free software: you can redistribute it and/or modify
### it under the terms of the GNU General Public License as published by
### the Free Software Foundation, either version 3 of the License, or
### (at your option) any later version.
###
### MyDLP is distributed in the hope that it will be useful,
### but WITHOUT ANY WARRANTY; without even the implied warranty of
### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
### GNU General Public License for more details.
###
### You should have received a copy of the GNU General Public License
### along with MyDLP. If not, see <http://www.gnu.org/licenses/>.
###--------------------------------------------------------------------------
AC_INIT([mydlp], [%%%VERSION%%%], [[email protected]])
AC_PREREQ([2.64])
AC_COPYRIGHT([Copyright (C) 2010 Huseyin Kerem Cevahir])
AM_INIT_AUTOMAKE
AC_ERLANG_NEED_ERLC
AC_PREFIX_PROGRAM(erl)
AC_ERLANG_SUBST_ROOT_DIR
AC_ERLANG_SUBST_ERTS_VER
AC_ERLANG_SUBST_LIB_DIR
AC_ERLANG_CHECK_LIB([kernel])
AC_ERLANG_CHECK_LIB([stdlib])
AC_ERLANG_CHECK_LIB([edoc])
AC_ERLANG_CHECK_LIB([eunit])
AC_ERLANG_CHECK_LIB([mnesia])
AC_ERLANG_CHECK_LIB([xmerl])
AC_ERLANG_CHECK_LIB([ssl])
AC_ERLANG_CHECK_LIB([crypto])
AC_ERLANG_CHECK_LIB([public_key])
AC_ERLANG_CHECK_LIB([sasl])
AC_ERLANG_CHECK_LIB([thrift])
AC_ERLANG_CHECK_LIB([mysql_driver])
AC_ERLANG_SUBST_INSTALL_LIB_SUBDIR([mydlp], [%%%VERSION%%%])
AC_PATH_PROG(THRIFT, thrift, thrift, $PATH:/usr/local/bin:/usr/bin)
AC_PATH_PROG(MVN, mvn, mvn, $PATH:/usr/local/bin:/usr/bin:/opt/maven/bin)
AC_PATH_PROG(WGET, wget, wget, $PATH:/usr/local/bin:/usr/bin:/bin)
AC_PATH_PROG(TAR, tar, tar, $PATH:/usr/local/bin:/usr/bin:/bin)
AC_PROG_LN_S
AC_CONFIG_FILES([
Makefile
src/Makefile
src/mydlp/Makefile
src/mydlp/mydlp.app
src/mydlp/mydlp.rel
src/mydlp/overview.edoc
src/thrift/Makefile
src/lib/Makefile
src/lib/tika-xps/Makefile
src/backend/Makefile
src/ui/Makefile
src/script/Makefile
src/schema/Makefile
src/sysconf/Makefile
src/sysconf/apache/Makefile
src/sysconf/jetty/Makefile
src/sysconf/logrotate/Makefile
src/sysconf/rsyslog/Makefile
src/sysconf/solr/Makefile
src/sysconf/tomcat/Makefile
src/resources/Makefile
src/integration/Makefile
src/integration/seclore/Makefile
src/endpoint/Makefile
])
AC_OUTPUT