From 23961fca1d1c3075d6cb539ec1ebfda6948c1f0a Mon Sep 17 00:00:00 2001 From: malc Date: Mon, 21 May 2018 18:45:47 +0300 Subject: [PATCH] Revert "Condense" This reverts commit f3c381ecdfb1882137b633ea9d94bb9ffa044e11. --- build.bash | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.bash b/build.bash index 3d633ff..4c65d31 100755 --- a/build.bash +++ b/build.bash @@ -73,7 +73,9 @@ cflags() { f="-g -std=c99 -O2 $muinc -Wall -Werror -Wextra -pedantic-errors" case "${1#$outd/}" in version.o) f='-DLLPP_VERSION="'$ver'"';; - link.o) $darwin && f="$f -D__COCOA__" || f="$f -D_POSIX_C_SOURCE";; + link.o) + f="$f -D_POSIX_C_SOURCE" + ! $darwin || f="$f -D__COCOA__";; */keysym2ucs.o) f="-O2 -include inttypes.h -DKeySym=uint32_t";; */ml_*.o) f="-g -Wno-pointer-sign -O2";; *) f="-g -O2";; -- 2.11.4.GIT