just trying to build in a clean OS install on FreeBSD 8.1 Had a few errors:
The first two are likely compiler issues, not blender issues, but in case anyone else is having this error: /usr/local/include/GL/glu.h:287 and /usr/local/include/GL/glew.h:15266 both declare functions with no arguments, which the compiler now doesn't like. Simply adding (void) rather than just () fixes that error. also, in seqeffects.c: y used on 2750 and x used on 2751 are declared on 2733 and 2734 which are both commented out... this throws obvious errors since the vars are not declared. uncommenting 2733 and 2734 seemed to fix the issue. cheers, Pete _______________________________________________ Bf-committers mailing list [email protected] http://lists.blender.org/mailman/listinfo/bf-committers
