diff -Nur PRIME/Makefile PRIME-patched/Makefile --- PRIME/Makefile 2012-03-03 19:05:27.000000000 +0100 +++ PRIME-patched/Makefile 2012-04-05 22:57:44.860501062 +0200 @@ -29,7 +29,7 @@ OSXFLAGS= LIBS=-lpanel -lcurses -LDFLAGS=$(LDPATH) -flat_namespace $(OSXFLAGS) +LDFLAGS=$(LDPATH) $(OSXFLAGS) CXX=c++ Binary files PRIME/support/encyclopedia2c and PRIME-patched/support/encyclopedia2c differ diff -Nur PRIME/Util.h PRIME-patched/Util.h --- PRIME/Util.h 2012-03-02 18:33:23.000000000 +0100 +++ PRIME-patched/Util.h 2012-04-05 22:49:54.635531741 +0200 @@ -262,7 +262,7 @@ int i; if (++this->mCount == this->mCapacity) { - grow (this->mCapacity * 2); + this->grow (this->mCapacity * 2); } i = this->mCount - 1; while (i > 0 &&