Differences From Artifact [fd3de38ea6]:
- File
m4/buildsys.m4
— part of check-in
[ce59f77400]
at
2017-01-07 23:07:32
on branch trunk
— Always use -Wl,--export-all-symbols for libs
While this should be the default, it seems it's not the default when
using Clang. (user: js, size: 7888) [annotate] [blame] [check-ins using]
To Artifact [fd2ba37db2]:
- File m4/buildsys.m4 — part of check-in [511ab31af8] at 2017-09-10 20:56:12 on branch trunk — OpenBSD wants setaf * 0 0 on *-256color terms (user: js, size: 8417) [annotate] [blame] [check-ins using]
︙ | |||
55 56 57 58 59 60 61 62 63 64 65 66 67 68 | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | + + + + + + + + + + + + + + | "$($TPUT setaf 2 2>/dev/null)") AC_SUBST(TERM_SETAF3, "$($TPUT setaf 3 2>/dev/null)") AC_SUBST(TERM_SETAF4, "$($TPUT setaf 4 2>/dev/null)") AC_SUBST(TERM_SETAF6, "$($TPUT setaf 6 2>/dev/null)") dnl OpenBSD seems to want 3 parameters for terminals dnl ending in -256color, but the additional two dnl parameters don't seem to do anything, so we set dnl them to 0. elif x=$($TPUT setaf 1 0 0 2>/dev/null); then AC_SUBST(TERM_SETAF1, "$x") AC_SUBST(TERM_SETAF2, "$($TPUT setaf 2 0 0 2>/dev/null)") AC_SUBST(TERM_SETAF3, "$($TPUT setaf 3 0 0 2>/dev/null)") AC_SUBST(TERM_SETAF4, "$($TPUT setaf 4 0 0 2>/dev/null)") AC_SUBST(TERM_SETAF6, "$($TPUT setaf 6 0 0 2>/dev/null)") else AC_SUBST(TERM_SETAF1, "$($TPUT AF 1 2>/dev/null)") AC_SUBST(TERM_SETAF2, "$($TPUT AF 2 2>/dev/null)") AC_SUBST(TERM_SETAF3, "$($TPUT AF 3 2>/dev/null)") |
︙ |