diff options
Diffstat (limited to 'configure.in.bot')
-rw-r--r-- | configure.in.bot | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/configure.in.bot b/configure.in.bot new file mode 100644 index 00000000..65656c62 --- /dev/null +++ b/configure.in.bot @@ -0,0 +1,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 |