stopmotion 0.5.0

April 18th, 2006

I was compiling stopmotion 0.5.0 on my Fedora Core 5 machine and ran into a make problem:

src/technical/util.cpp: In static member function 'static const char* Util::checkCommand(const char*)':
src/technical/util.cpp:32: error: 'assert' was not declared in this scope
make: *** [util.o] Error 1

This problem was easily solved with this patch:

--- src/technical/util.cpp	2006-04-18 14:16:14.000000000 -0400
+++ ../util.cpp	2006-04-18 23:21:26.000000000 -0400
@@ -23,6 +23,7 @@
 #include <istream>
 #include <stdio.h>
 #include <stdlib.h>
+#include <cassert>

 using namespace std;