summaryrefslogtreecommitdiffstats
path: root/configure.in.bot
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit90825e2392b2d70e43c7a25b8a3752299a933894 (patch)
treee33aa27f02b74604afbfd0ea4f1cfca8833d882a /configure.in.bot
downloadtdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.tar.gz
tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'configure.in.bot')
-rw-r--r--configure.in.bot43
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