Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/bd8991c2f6546d42008ad...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/bd8991c2f6546d42008ade8...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/bd8991c2f6546d42008ade8dd...
The branch, master has been updated
via bd8991c2f6546d42008ade8dd4db133a120c44db (commit)
from 40cdf498b9153685b4cefe576e59f6b41090912b (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/commit/?id=bd8991c2f6546d42008...
commit bd8991c2f6546d42008ade8dd4db133a120c44db
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
fix framebuffer BUILD libpng flags on freebsd
diff --git a/frontends/framebuffer/Makefile b/frontends/framebuffer/Makefile
index 3c6f31b..d36728e 100644
--- a/frontends/framebuffer/Makefile
+++ b/frontends/framebuffer/Makefile
@@ -93,8 +93,13 @@ ifeq ($(HOST),OpenBSD)
BUILD_CFLAGS += $(shell $(PKG_CONFIG) --cflags libpng)
BUILD_LDFLAGS += $(shell $(PKG_CONFIG) --libs libpng)
else
- BUILD_CFLAGS +=
- BUILD_LDFLAGS += -lpng
+ ifeq ($(HOST),FreeBSD)
+ BUILD_CFLAGS += $(shell $(PKG_CONFIG) --cflags libpng)
+ BUILD_LDFLAGS += $(shell $(PKG_CONFIG) --libs libpng)
+ else
+ BUILD_CFLAGS +=
+ BUILD_LDFLAGS += -lpng
+ endif
endif
# Host tool to convert image bitmaps to source code.
-----------------------------------------------------------------------
Summary of changes:
frontends/framebuffer/Makefile | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/frontends/framebuffer/Makefile b/frontends/framebuffer/Makefile
index 3c6f31b..d36728e 100644
--- a/frontends/framebuffer/Makefile
+++ b/frontends/framebuffer/Makefile
@@ -93,8 +93,13 @@ ifeq ($(HOST),OpenBSD)
BUILD_CFLAGS += $(shell $(PKG_CONFIG) --cflags libpng)
BUILD_LDFLAGS += $(shell $(PKG_CONFIG) --libs libpng)
else
- BUILD_CFLAGS +=
- BUILD_LDFLAGS += -lpng
+ ifeq ($(HOST),FreeBSD)
+ BUILD_CFLAGS += $(shell $(PKG_CONFIG) --cflags libpng)
+ BUILD_LDFLAGS += $(shell $(PKG_CONFIG) --libs libpng)
+ else
+ BUILD_CFLAGS +=
+ BUILD_LDFLAGS += -lpng
+ endif
endif
# Host tool to convert image bitmaps to source code.
--
NetSurf Browser