Advertisement
Guest User

Untitled

a guest
Apr 5th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. diff -Nur PRIME/Makefile PRIME-patched/Makefile
  2. --- PRIME/Makefile 2012-03-03 19:05:27.000000000 +0100
  3. +++ PRIME-patched/Makefile 2012-04-05 22:57:44.860501062 +0200
  4. @@ -29,7 +29,7 @@
  5. OSXFLAGS=
  6.  
  7. LIBS=-lpanel -lcurses
  8. -LDFLAGS=$(LDPATH) -flat_namespace $(OSXFLAGS)
  9. +LDFLAGS=$(LDPATH) $(OSXFLAGS)
  10.  
  11. CXX=c++
  12.  
  13. Binary files PRIME/support/encyclopedia2c and PRIME-patched/support/encyclopedia2c differ
  14. diff -Nur PRIME/Util.h PRIME-patched/Util.h
  15. --- PRIME/Util.h 2012-03-02 18:33:23.000000000 +0100
  16. +++ PRIME-patched/Util.h 2012-04-05 22:49:54.635531741 +0200
  17. @@ -262,7 +262,7 @@
  18. int i;
  19.  
  20. if (++this->mCount == this->mCapacity) {
  21. - grow (this->mCapacity * 2);
  22. + this->grow (this->mCapacity * 2);
  23. }
  24. i = this->mCount - 1;
  25. while (i > 0 &&
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement