blob: 65656c629bc898eb66bfdb6b5d5af42ea24075f4 (
plain)
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
|
dnl put here things which have to be done as very last part of configure
all_tests=fine
if test -z "$CSC_NAME"; then
echo ""
echo "A C# compiler wasn't found. The Qt# bindings need either Mono, Portable.NET or Rotor."
echo "You will need three things to compile the Qt# bindings:"
echo ""
echo "1. A C# compiler -- Mono's mcs, DotGNU/Portable.NET's cscc, or Rotors csc."
echo ""
echo "2. A CLR JIT. Mono's works the best right now. Qt# will work somewhat with"
echo "DotGNU/Portable.NET's ilrun and with Rotor's JIT."
echo ""
echo "3. Portable.NET's csant tool. This is a Java ANT like build tool for C#"
echo "programs. You can find these tools at the following locations:"
echo ""
echo "http://www.southern-storm.com.au/portable_net.html"
echo "http://go-mono.org"
echo "http://msdn.microsoft.com/downloads/default.asp?url=/downloads/topic.asp?URL=/MSDN-FILES/028/000/123/topic.xml"
all_tests=bad
fi
if test "x$kde_cv_java_bindir" = "xno"; then
echo ""
echo "Java wasn't found. The Java bindings need javac, javah and jni."
echo "Try using --with-java=/your/java/dir. Typing 'make' now will skip the java bindings."
echo ""
all_tests=bad
fi
if test -z "$LIBPYTHON" || test -z "$PYTHONINC"; then
echo ""
echo "Python or it's development files were not found. Qt and KDE bindings for Python will not be built."
echo ""
all_tests=bad
fi
if test "$all_tests" = "fine"; then
echo ""
echo "Good - your configure finished. Start make now"
echo ""
fi
|