You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
44 lines
1.5 KiB
15 years ago
|
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
|