-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
203 lines (159 loc) · 4.73 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# Copyright (C) 2022 Lukas Derendinger
AC_INIT([log-trawly],m4_esyscmd([tr -d '\n' < VERSION]),[lukas@])
AC_PREREQ([2.59])
AC_CONFIG_AUX_DIR(conftools)
MJ_CLASS=LogTrawly
MJ_SCRIPT=log-trawly
QX_CLASS=log_trawly
AC_SUBST(MJ_CLASS)
AC_SUBST(MJ_SCRIPT)
AC_SUBST(QX_CLASS)
# need this to allow long path names
AM_INIT_AUTOMAKE([1.9 tar-ustar foreign])
AM_MAINTAINER_MODE
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_PREFIX_DEFAULT(/opt/$PACKAGE_NAME-$PACKAGE_VERSION)
AC_ARG_VAR(PERL, [Path to local perl binary])
AC_PATH_PROG(PERL, perl, no)
AC_PATH_PROG(CURL, curl, no)
AC_PATH_PROG(WGET, wget, no)
AC_ARG_VAR(NODE, [Path to local node binary])
AC_PATH_PROG(NODE, node, no)
AC_PATH_PROG(NPM, npm, npm-not-found)
AC_PATH_PROG(NPX, npx, npx-not-found)
AC_PATH_PROG(XGETTEXT, xgettext, xgettext-not-found)
AC_PATH_PROG(MSGMERGE, msgmerge, msgmerge-not-found)
URL_CAT="neither curl nor wget found"
if test -x "$CURL"; then
URL_CAT="$CURL --location --insecure"
else
if test -x "$WGET"; then
URL_CAT="$WGET -O -"
fi
fi
AC_SUBST(URL_CAT)
ac_perl_version="5.22.0"
if test -x "$PERL"; then
AC_MSG_CHECKING(for perl version greater than or equal to $ac_perl_version)
$PERL -e "use $ac_perl_version;" >/dev/null 2>&1
if test $? -ne 0; then
AC_MSG_RESULT(no);
AC_MSG_ERROR(at least version ${ac_perl_version} is required to run mojolicious)
else
AC_MSG_RESULT(ok);
fi
else
AC_MSG_ERROR(could not find perl)
fi
ac_node_version="10"
if test -x "$NODE"; then
AC_MSG_CHECKING(make sure we have at least node ${ac_node_version})
case `$NODE --version` in
v10*)
AC_MSG_RESULT(ok v10)
;;
v12*)
AC_MSG_RESULT(ok v12)
;;
v14*)
AC_MSG_RESULT(ok v14)
;;
v16*)
AC_MSG_RESULT(ok v16)
;;
*)
AC_MSG_RESULT(no);
NODE=old-node
esac
fi
AM_CONDITIONAL(BUILD_QOOXDOO_APP,[test -x $NODE])
AC_PATH_PROG(OPENSSL, openssl, no)
if test -x "$OPENSSL"; then
:
else
AC_MSG_ERROR(could not find openssl binary)
fi
AC_MSG_CHECKING(is perl reasonably complete)
if $PERL -MExtUtils::MakeMaker -e '' 2>/dev/null; then
AC_MSG_RESULT(yes. ExtUtils::MakeMaker is available);
else
AC_MSG_RESULT(no)
AC_MSG_ERROR([a complete perl ('perl-core' in the redhat world) installation is required])
fi
AC_MSG_CHECKING([if we require a c compiler to get perl modules compiled])
if $PERL -MIO::Socket::IP -e 'exit($IO::Socket::IP::VERSION >= 0.37)' 2>/dev/null; then
AC_MSG_RESULT(no)
else
AC_MSG_RESULT(yes)
perl_cc=`$PERL -MConfig -e 'print $Config{cc}'`
AC_PATH_PROG(PERL_CC_PATH, $perl_cc, no)
AC_MSG_CHECKING(is perls favorite c compiler ($perl_cc) available)
if test x$PERL_CC_PATH = xno; then
AC_MSG_RESULT(no)
AC_MSG_ERROR([perl needs the '$perl_cc' compiler package to build dependencies])
else
AC_MSG_RESULT(yes)
fi
fi
AC_PROG_GREP
AC_ARG_VAR(GMAKE, [Path to local GNU Make binary])
AC_PATH_PROGS(GMAKE, [gmake gnumake make])
AC_MSG_CHECKING([for gnu make availablility])
if ( $GMAKE --version 2> /dev/null | $GREP GNU > /dev/null 2>&1 ); then
AC_MSG_RESULT([$GMAKE is GNU make])
else
AC_MSG_ERROR([GNU make not found. Try setting the GMAKE environment variable.])
fi
AC_ARG_ENABLE(pkgonly,
AC_HELP_STRING([--enable-pkgonly],
[Skip all checking]))
AC_SUBST(enable_pkgonly)
actual_prefix=$prefix
if test "$actual_prefix" = "NONE"; then
actual_prefix=$ac_default_prefix
fi
AC_MSG_CHECKING([Checking Install Prefix])
if test -f "$actual_prefix/configure"; then
AC_MSG_ERROR([The install prefix must NOT point to the directory where you unpacked the source.])
else
AC_MSG_RESULT([install Prefix is fine])
fi
AC_ARG_VAR(CALLBACKERY_QX, [Alternate CallBackery/qooxdoo folder location])
if test "$CALLBACKERY_QX" = ""; then
script_path=`dirname "$0"`
script_path=`cd $script_path;pwd`
# Absolute path this script is in, thus /home/user/bin
CALLBACKERY_QX="$script_path"/thirdparty/lib/perl5/CallBackery/qooxdoo
fi
AC_SUBST(CALLBACKERY_QX)
AC_ARG_VAR(PERL5LIB, [Colon separated list of perl library directories])
AC_SUBST(PERL5LIB)
AC_CONFIG_FILES([
Makefile
etc/Makefile
lib/Makefile
bin/Makefile
frontend/Makefile
thirdparty/Makefile
])
AC_SUBST(VERSION)
AC_OUTPUT
if test -x "$NODE"; then
:
else
cat <<NOTES
** WARNING ***********************************************
To run the qooxdoo compiler, at least node v10 is required.
Use nvm to setup your local, up to date copy of node.
Go to https://github.com/nvm-sh/nvm for futher information
NOTES
fi
cat <<NOTES
** CONFIGURE DONE **********************************************
Settings:
PERL5LIB = ${PERL5LIB:-"not set"}
PERL = $PERL
The Makefiles use GNU make functionality.
Continue installation with
$GMAKE install
NOTES