0

Output of nant is:

Buildfile: file:///root/opensim-0.6.8-release/OpenSim.build
Target framework: Mono 2.0 Profile
Target(s) specified: build 

     [echo] Using 'mono-2.0' Framework

init:


Debug:

     [echo] Platform unix

build:

     [nant] /root/opensim-0.6.8-release/OpenSim/Framework/Servers/HttpServer/OpenSim.Framework.Servers.HttpServer.dll.build build
            Buildfile: file:///root/opensim-0.6.8-release/OpenSim/Framework/Servers/HttpServer/OpenSim.Framework.Servers.HttpServer.dll.build
            Target framework: Mono 2.0 Profile
            Target(s) specified: build 


            build:

                 [echo] Build Directory is /root/opensim-0.6.8-release/OpenSim/Framework/Servers/HttpServer/bin/Debug
                  [csc] Compiling 29 files to '/root/opensim-0.6.8-release/OpenSim/Framework/Servers/HttpServer/bin/Debug/OpenSim.Framework.Servers.HttpServer.dll'.
                  [csc] /root/opensim-0.6.8-release/OpenSim/Framework/Servers/HttpServer/AsynchronousRestObjectRequester.cs(103,41): error CS0246: The type or namespace name `TResponse' could not be found. Are you missing a using directive or an assembly reference?
                  [csc] Compilation failed: 1 error(s), 0 warnings

            BUILD FAILED - 0 non-fatal error(s), 1 warning(s)

            /root/opensim-0.6.8-release/OpenSim/Framework/Servers/HttpServer/OpenSim.Framework.Servers.HttpServer.dll.build(14,6):
            External Program Failed: /usr/lib/pkgconfig/../../lib/mono/2.0/gmcs.exe (return code was 1)

            Total time: 1.2 seconds.


BUILD FAILED

Nested build failed.  Refer to build log for exact reason.

Total time: 1.3 seconds.

OS is Fedora 7. Any ideas appreciated. :)

Gary
  • 141
  • 1
  • 2

1 Answers1

1

This probably belongs on SO, but a quick search on the error code yields a couple things to look at.

Holocryptic
  • 5,665
  • 2
  • 28
  • 37
  • Hmm, doing mono --version tells me I have Mono 1.2.3 installed, yet it is trying to compile with Mono 2, does this matter? – Gary May 09 '10 at 12:57
  • @Gary Yes, because that means you have a dependency missing. Upgrade the mono framework and try to compile again. Their [current version](http://www.go-mono.com/mono-downloads/download.html) is 2.6.4. I imagine you either need 2.0 or higher, but I'm not sure if a higher one will work either, depending on the changes they made. – Holocryptic May 09 '10 at 13:58