mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-26 08:19:55 +03:00
fix framebuffer BUILD libpng flags on freebsd
This commit is contained in:
parent
40cdf498b9
commit
bd8991c2f6
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user