summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Julian Sikorski <belegdol+github@gmail.com>2017-01-25 22:35:24 +0100
committer Vas Crabb <cuavas@users.noreply.github.com>2017-01-26 09:28:21 +1100
commitc50ddac28b87c8c7679579951985b7a1b3a50e82 (patch)
tree33ade5a9dabbf60591745e9f2e49511b345cb11b /makefile
parent1b65fa41b5a3d37f55131cb6181d6f2ff0f3646c (diff)
Fixed building using system utf8proc
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/makefile b/makefile
index dd8e4fc7e03..5f1a1685c09 100644
--- a/makefile
+++ b/makefile
@@ -64,6 +64,7 @@
# USE_SYSTEM_LIB_PORTMIDI = 1
# USE_SYSTEM_LIB_PORTAUDIO = 1
# USE_BUNDLED_LIB_SDL2 = 1
+# USE_SYSTEM_LIB_UTF8PROC = 1
# MESA_INSTALL_ROOT = /opt/mesa
# SDL_INSTALL_ROOT = /opt/sdl2
@@ -460,6 +461,10 @@ ifdef USE_SYSTEM_LIB_PORTAUDIO
PARAMS += --with-system-portaudio='$(USE_SYSTEM_LIB_PORTAUDIO)'
endif
+ifdef USE_SYSTEM_LIB_UTF8PROC
+PARAMS += --with-system-utf8proc='$(USE_SYSTEM_LIB_UTF8PROC)'
+endif
+
# reverse logic for this one
ifdef USE_BUNDLED_LIB_SDL2