the repository which powers this website
Makefile: support FreeBSD libiconv paths
According to Dan Rue <[email protected]>, FreeBSD requires the lib paths to get libiconv from /usr/local.
Jason A. Donenfeld 2012-10-17
parent 1cb8b49 · commit 2853692
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1e341295..b95cee43 100644
--- a/Makefile
+++ b/Makefile
@@ -49,6 +49,13 @@ ifeq ($(uname_O),Cygwin)
NEEDS_LIBICONV = YesPlease
endif
+ifeq ($(uname_S),FreeBSD)
+ # Apparantly libiconv is installed in /usr/local on FreeBSD
+ LDFLAGS ?= -L/usr/local/lib
+ CFLAGS ?= -I/usr/local/include
+ NEEDS_LIBICONV = yes
+endif
+
#
# Let the user override the above settings.
#