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

(-)splix/Makefile (+3 lines)
Lines 53-58 Link Here
53
53
54
.include "bsd.port.pre.mk"
54
.include "bsd.port.pre.mk"
55
55
56
post-patch:
57
	@${TOUCH} ${WRKSRC}/.defs.mk
58
56
post-configure:
59
post-configure:
57
60
58
.if !defined(WITHOUT_JBIG)
61
.if !defined(WITHOUT_JBIG)
(-)splix/files/patch-Makefile (+11 lines)
Line 0 Link Here
1
--- Makefile.orig	2012-09-03 15:38:14.697756578 -0400
2
+++ Makefile	2012-09-03 15:38:24.448760166 -0400
3
@@ -55,8 +55,6 @@
4
 # +--------------------------------------------------------------------------+
5
 LANGUAGES	:= cpp c
6
 
7
-CC		:= gcc
8
-CXX		:= g++
9
 RM		:= rm -f
10
 AR		:= ar crs
11
 LEX		:= flex
(-)splix/files/patch-rules.mk (+17 lines)
Line 0 Link Here
1
--- rules.mk.orig	2012-09-03 14:49:22.619758499 -0400
2
+++ rules.mk	2012-09-03 14:50:05.905758950 -0400
3
@@ -6,12 +6,12 @@
4
 
5
 $(rastertoqpdl_TARGET): $(rastertoqpdl_OBJ)
6
 	$(call printCmd, $(cmd_link))
7
-	$(Q)g++ -o $@ $^ $(rastertoqpdl_CXXFLAGS) $(rastertoqpdl_LDFLAGS) \
8
+	$(Q)$(CXX) -o $@ $^ $(rastertoqpdl_CXXFLAGS) $(rastertoqpdl_LDFLAGS) \
9
 		$(rastertoqpdl_LIBS)
10
 
11
 $(pstoqpdl_TARGET): $(pstoqpdl_OBJ)
12
 	$(call printCmd, $(cmd_link))
13
-	$(Q)g++ -o $@ $^ $(pstoqpdl_CXXFLAGS) $(pstoqpdl_LDFLAGS) \
14
+	$(Q)$(CXX) -o $@ $^ $(pstoqpdl_CXXFLAGS) $(pstoqpdl_LDFLAGS) \
15
 		$(pstoqpdl_LIBS)
16
 
17
 .PHONY: install installcms

Return to bug 171295