From 895cbef85f1b7fc69aae99afe59cfa485ebdfb8b Mon Sep 17 00:00:00 2001 From: midipix Date: Thu, 3 Jan 2019 02:21:50 -0500 Subject: build system: configure: support project-specific default native {c|ld}flags. --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index 74af5fb..1284263 100755 --- a/configure +++ b/configure @@ -320,6 +320,10 @@ common_defaults() [ -z "$mb_ldflags_last" ] && mb_ldflags_last=$mb_default_ldflags_last [ -z "$mb_ldflags_once" ] && mb_ldflags_once=$mb_default_ldflags_once + # native switches + [ -z "$mb_native_cflags" ] && mb_native_cflags=$mb_default_native_cflags + [ -z "$mb_native_ldflags" ] && mb_native_ldflags=$mb_default_native_ldflags + # config [ -z "$mb_all_static" ] && mb_all_static='no' [ -z "$mb_all_shared" ] && mb_all_shared='no' -- cgit v1.2.3