View | Details | Raw Unified | Return to bug 204385
Collapse All | Expand All

(-)files/patch-Makefile (-11 lines)
Lines 1-11 Link Here
1
--- Makefile.orig	2016-01-21 03:17:01 UTC
2
+++ Makefile
3
@@ -30,7 +30,7 @@ objects = $(patsubst %.cc, %$(DLL), $(cp
4
 all: $(objects)
5
 
6
 %$(DLL): %.cc
7
-	g++ $(shared) $(dllname) -o $@ $(MOD_CXXFLAGS) $< $(MOD_LDFLAGS) $(LIBS)
8
+	$(CXX) $(shared) $(dllname) -o $@ $(MOD_CXXFLAGS) $< $(MOD_LDFLAGS) $(LIBS)
9
 
10
 clean:
11
 	rm -f *.o *$(DLL) examples/life *~
(-)files/patch-orddict.cc (+12 lines)
Line 0 Link Here
1
--- orddict.cc.orig	2016-01-21 05:57:24 UTC
2
+++ orddict.cc
3
@@ -1,6 +1,9 @@
4
 
5
 // This is completely analogous to hashdict.cc (which see).
6
 
7
+
8
+#include <stddef.h>
9
+#include <cstddef>
10
 #include <assert.h>
11
 #include <stdlib.h>
12
 #include <string.h>

Return to bug 204385