Ubuntu Pastebin

Paste from DevNope at Sun, 1 May 2016 10:14:10 +0000

Download as text
 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
MONO=$ac_cv_path_MONO
if test -n "$MONO"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MONO" >&5
$as_echo "$MONO" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi




	if test "x$MONO" = "xno"; then
		as_fn_error $? "You need to install 'mono'" "$LINENO" 5
	fi




	for asm in $(echo "mono,2.0,Mono.Posix
	ICSharpCode.SharpZipLib
" | cut -d, -f3- | sed 's/\,/ /g')
	do
		{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Mono 2.0 GAC for $asm.dll" >&5
$as_echo_n "checking for Mono 2.0 GAC for $asm.dll... " >&6; }
		if test \
			-e "$($PKG_CONFIG --variable=libdir mono)/mono/2.0/$asm.dll" -o \
			-e "$($PKG_CONFIG --variable=prefix mono)/lib/mono/2.0/$asm.dll"; \
			then \
			{ $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5
$as_echo "found" >&6; }
		else
			{ $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
$as_echo "not found" >&6; }
			as_fn_error $? "missing required Mono 2.0 assembly: $asm.dll" "$LINENO" 5
		fi
	done
Download as text