Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/6582b4e075e28d1734913...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/6582b4e075e28d17349132e...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/6582b4e075e28d17349132ed7...
The branch, master has been updated
via 6582b4e075e28d17349132ed77862f0a370a9119 (commit)
from 7c5f9ed8cd029dda34b6167520d6b65fbc40fc69 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commitdiff/6582b4e075e28d17349...
commit 6582b4e075e28d17349132ed77862f0a370a9119
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
fix change to CC_MAJOR for beos
diff --git a/Makefile b/Makefile
index 2d61411..b57dabf 100644
--- a/Makefile
+++ b/Makefile
@@ -605,7 +605,7 @@ endef
# 1 = Source file
# 2 = obj filename, no prefix
# 3 = dep filename, no prefix
-ifeq ($(GCCVER),2)
+ifeq ($(CC_MAJOR),2)
# simpler deps tracking for gcc2...
define compile_target_c
$$(DEPROOT)/$(3) $$(OBJROOT)/$(2): $$(OBJROOT)/created
diff --git a/beos/Makefile.target b/beos/Makefile.target
index 9a7e79a..4edde01 100644
--- a/beos/Makefile.target
+++ b/beos/Makefile.target
@@ -62,7 +62,7 @@
NETLDFLAGS := -lnetwork
endif
LDFLAGS += -lbe -ltranslation -ltracker $(NETLDFLAGS)
- ifeq ($(GCCVER),2)
+ ifeq ($(CC_MAJOR),2)
LDFLAGS += -lstdc++.r4
else
LDFLAGS += -lstdc++ -lsupc++
-----------------------------------------------------------------------
Summary of changes:
Makefile | 2 +-
beos/Makefile.target | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 2d61411..b57dabf 100644
--- a/Makefile
+++ b/Makefile
@@ -605,7 +605,7 @@ endef
# 1 = Source file
# 2 = obj filename, no prefix
# 3 = dep filename, no prefix
-ifeq ($(GCCVER),2)
+ifeq ($(CC_MAJOR),2)
# simpler deps tracking for gcc2...
define compile_target_c
$$(DEPROOT)/$(3) $$(OBJROOT)/$(2): $$(OBJROOT)/created
diff --git a/beos/Makefile.target b/beos/Makefile.target
index 9a7e79a..4edde01 100644
--- a/beos/Makefile.target
+++ b/beos/Makefile.target
@@ -62,7 +62,7 @@
NETLDFLAGS := -lnetwork
endif
LDFLAGS += -lbe -ltranslation -ltracker $(NETLDFLAGS)
- ifeq ($(GCCVER),2)
+ ifeq ($(CC_MAJOR),2)
LDFLAGS += -lstdc++.r4
else
LDFLAGS += -lstdc++ -lsupc++
--
NetSurf Browser