MidnightBSD Magus

graphics/vindaloo

PDF Reader for GNUstep

Flavor Version Run OSVersion Arch License Restricted Status
0.2_2 318 0.7 i386 gpl2 0 fail

Events

Machine Type Time Message
defianti386 info 2016-03-09 07:27:05.711921 Test Started
defianti386 fail 2016-03-09 07:40:37.751887 make build returned non-zero: 1
defianti386 fail 2016-03-09 07:40:37.899432 Test complete.

Log

===>  Building for vindaloo-0.2_2
This is gnustep-make 2.6.7. Type 'gmake print-gnustep-make-help' for help.
Making all in Frameworks ...
Making all in UnitKit ...
rm -f /magus/work/usr/mports/graphics/vindaloo/work/Etoile-0.4.1/Frameworks/UnitKit/Source/UnitKit
ln -s /magus/work/usr/mports/graphics/vindaloo/work/Etoile-0.4.1/Frameworks/UnitKit/Source/FrameworkSource /magus/work/usr/mports/graphics/vindaloo/work/Etoile-0.4.1/Frameworks/UnitKit/Source/UnitKit
Making all in Source/FrameworkSource ...
Making build-headers for framework UnitKit...
 Creating UnitKit.framework/Versions/1/Headers...
 Creating UnitKit.framework/Versions/1/Headers/UKRunner.h...
 Creating UnitKit.framework/Versions/1/Headers/UKTest.h...
 Creating UnitKit.framework/Versions/1/Headers/UKTestHandler.h...
 Creating UnitKit.framework/Versions/1/Headers/UKTask.h...
 Creating UnitKit.framework/Versions/1/Headers/UnitKit.h...
 Creating derived_src/.stamp...
 Creating UnitKit.framework/Versions/1/Resources...
 Updating Version/Current symlink...
Making all for framework UnitKit...
 Compiling file UKRunner.m ...
 Compiling file UKTask.m ...
 Compiling file UKTestHandler.m ...
UKRunner.m:268:17: warning: implicit declaration of function 'object_is_class' is invalid in C99 [-Wimplicit-function-declaration]
        BOOL isClass = object_is_class(testObject);
                       ^
UKRunner.m:353:21: warning: instance method '-initForTest' not found (return type defaults to 'id') [-Wobjc-method-access]
                        object = [object initForTest];
                                         ^~~~~~~~~~~
UKRunner.m:393:15: warning: instance method '-releaseForTest' not found (return type defaults to 'id') [-Wobjc-method-access]
                    [object releaseForTest];
                            ^~~~~~~~~~~~~~
UKRunner.m:429:46: warning: implicit declaration of function 'object_get_meta_class' is invalid in C99 [-Wimplicit-function-declaration]
    testMethods = UKTestMethodNamesFromClass(object_get_meta_class(testClass));
                                             ^
UKRunner.m:429:46: warning: incompatible integer to pointer conversion passing 'int' to parameter of type 'Class' [-Wint-conversion]
    testMethods = UKTestMethodNamesFromClass(object_get_meta_class(testClass));
                                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./UKRunner.h:50:43: note: passing argument to parameter 'c' here
NSArray *UKTestMethodNamesFromClass(Class c);
                                          ^
UKRunner.m:489:72: error: incomplete definition of type 'struct objc_class'
        struct objc_protocol_list* protocol_list =((struct objc_class*)aClass)->protocols;
                                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
/usr/local/include/objc/runtime.h:77:16: note: forward declaration of 'struct objc_class'
typedef struct objc_class *Class;
               ^
UKRunner.m:493:41: error: incomplete definition of type 'struct objc_protocol_list'
                for(unsigned int i=0 ; icount ; i++)
                                         ~~~~~~~~~~~~~^
UKRunner.m:489:9: note: forward declaration of 'struct objc_protocol_list'
        struct objc_protocol_list* protocol_list =((struct objc_class*)aClass)->protocols;
               ^
UKRunner.m:495:21: error: incomplete definition of type 'struct objc_protocol_list'
                        if([protocol_list->list[i] conformsTo:aProtocol])
                            ~~~~~~~~~~~~~^
UKRunner.m:489:9: note: forward declaration of 'struct objc_protocol_list'
        struct objc_protocol_list* protocol_list =((struct objc_class*)aClass)->protocols;
               ^
UKRunner.m:500:32: error: incomplete definition of type 'struct objc_protocol_list'
                protocol_list = protocol_list->next;
                                ~~~~~~~~~~~~~^
UKRunner.m:489:9: note: forward declaration of 'struct objc_protocol_list'
        struct objc_protocol_list* protocol_list =((struct objc_class*)aClass)->protocols;
               ^
UKRunner.m:502:40: error: incomplete definition of type 'struct objc_class'
        if(Nil != ((struct objc_class*)aClass)->super_class)
                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
/usr/local/include/objc/runtime.h:77:16: note: forward declaration of 'struct objc_class'
typedef struct objc_class *Class;
               ^
UKRunner.m:504:57: error: incomplete definition of type 'struct objc_class'
                return conformsToProtocol(((struct objc_class*)aClass)->super_class, aProtocol);
                                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
/usr/local/include/objc/runtime.h:77:16: note: forward declaration of 'struct objc_class'
typedef struct objc_class *Class;
               ^
UKRunner.m:559:17: warning: 'objc_next_class' is deprecated [-Wdeprecated-declarations]
    while ((c = objc_next_class (&es)) != Nil)
                ^
/usr/local/include/objc/runtime-deprecated.h:45:7: note: 'objc_next_class' declared here
Class objc_next_class(void **enum_state);
      ^
UKRunner.m:625:2: error: use of undeclared identifier 'MethodList_t'
        MethodList_t methods = c->methods;      
        ^
UKRunner.m:626:9: error: use of undeclared identifier 'methods'
        while (methods != NULL) {
               ^
UKRunner.m:628:19: error: use of undeclared identifier 'methods'
                for (i = 0; i < methods->method_count; i++) {
                                ^
UKRunner.m:629:4: error: unknown type name 'Method_t'; did you mean 'Method'?
                        Method_t method = &(methods->method_list[i]);                   
                        ^~~~~~~~
                        Method
/usr/local/include/objc/runtime.h:119:29: note: 'Method' declared here
typedef struct objc_method *Method;
                            ^
UKRunner.m:629:24: error: use of undeclared identifier 'methods'; did you mean 'method'?
                        Method_t method = &(methods->method_list[i]);                   
                                            ^~~~~~~
                                            method
UKRunner.m:629:13: note: 'method' declared here
                        Method_t method = &(methods->method_list[i]);                   
                                 ^
UKRunner.m:629:31: error: incomplete definition of type 'struct objc_method'
                        Method_t method = &(methods->method_list[i]);                   
                                            ~~~~~~~^
/usr/local/include/objc/runtime.h:119:16: note: forward declaration of 'struct objc_method'
typedef struct objc_method *Method;
               ^
UKRunner.m:630:18: error: use of undeclared identifier 'METHOD_NULL'
                        if (method == METHOD_NULL) {
                                      ^
UKRunner.m:633:20: error: incomplete definition of type 'struct objc_method'
                        SEL sel = method->method_name;
                                  ~~~~~~^
/usr/local/include/objc/runtime.h:119:16: note: forward declaration of 'struct objc_method'
typedef struct objc_method *Method;
               ^
UKRunner.m:639:3: error: use of undeclared identifier 'methods'
                methods = methods->method_next;
                ^
UKRunner.m:639:13: error: use of undeclared identifier 'methods'
                methods = methods->method_next;
                          ^
6 warnings and 16 errors generated.
/usr/local/GNUstep/System/Library/Makefiles/rules.make:479: recipe for target 'obj/UnitKit.obj/UKRunner.m.o' failed
gmake[5]: *** [obj/UnitKit.obj/UKRunner.m.o] Error 1
gmake[5]: *** Waiting for unfinished jobs....
/usr/local/GNUstep/System/Library/Makefiles/Instance/framework.make:613: recipe for target 'internal-framework-run-compile-submake' failed
gmake[4]: *** [internal-framework-run-compile-submake] Error 2
/usr/local/GNUstep/System/Library/Makefiles/Master/rules.make:311: recipe for target 'UnitKit.all.framework.variables' failed
gmake[3]: *** [UnitKit.all.framework.variables] Error 2
/usr/local/GNUstep/System/Library/Makefiles/Master/serial-subdirectories.make:53: recipe for target 'internal-all' failed
gmake[2]: *** [internal-all] Error 2
/usr/local/GNUstep/System/Library/Makefiles/Master/serial-subdirectories.make:53: recipe for target 'internal-all' failed
gmake[1]: *** [internal-all] Error 2
/usr/local/GNUstep/System/Library/Makefiles/Master/serial-subdirectories.make:53: recipe for target 'internal-all' failed
gmake: *** [internal-all] Error 2
===> Compilation failed unexpectedly.
Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to
the maintainer.
*** [do-build] Error code 1

Stop in /usr/mports/graphics/vindaloo.