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

(-)files/patch-set (-6 / +6 lines)
Lines 209-217 Link Here
209
 
209
 
210
+ifeq ($(PLATFORM), bsd)
210
+ifeq ($(PLATFORM), bsd)
211
+  # Settings specific to BSD
211
+  # Settings specific to BSD
212
+  CC             = $(COMPILER_PATH)gcc
212
+  CC             ?= $(COMPILER_PATH)gcc
213
+  CPP            = $(COMPILER_PATH)gcc -E
213
+  CPP            ?= $(COMPILER_PATH)gcc -E
214
+  CXX            = $(COMPILER_PATH)g++
214
+  CXX            ?= $(COMPILER_PATH)g++
215
+  REQUIRED_CC_VER = 3.3
215
+  REQUIRED_CC_VER = 3.3
216
+  REQUIRED_GCC_VER = 3.3.*
216
+  REQUIRED_GCC_VER = 3.3.*
217
+
217
+
Lines 6732-6740 Link Here
6732
+ifeq ($(PLATFORM), bsd)
6732
+ifeq ($(PLATFORM), bsd)
6733
+
6733
+
6734
+  # Settings specific to BSD
6734
+  # Settings specific to BSD
6735
+  CC             = $(COMPILER_PATH)gcc
6735
+  CC             ?= $(COMPILER_PATH)gcc
6736
+  CPP            = $(COMPILER_PATH)gcc -E
6736
+  CPP            ?= $(COMPILER_PATH)gcc -E
6737
+  CXX            = $(COMPILER_PATH)g++
6737
+  CXX            ?= $(COMPILER_PATH)g++
6738
+  REQUIRED_CC_VER = 3.2
6738
+  REQUIRED_CC_VER = 3.2
6739
+
6739
+
6740
+  # Option used to create a shared library
6740
+  # Option used to create a shared library

Return to bug 151042