diff options
author | Omar Polo <op@omarpolo.com> | 2024-06-09 08:48:10 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2024-06-09 08:48:10 +0000 |
commit | 910fbe8f00e7e864f7efbb0b2b5a4d475f3968b2 (patch) | |
tree | 056f094d00960510016e8bcb7e718a1b9ad037cb | |
parent | 911fd6b6c6d065f9209eb126d8ea440831e6a25c (diff) |
drop vestiges of -DLIBBSD_OPENBSD_VIS
it just isn't worth the pain since I have to check anyway for the
working strnvis. it's amazing what a shitshow this situation is.
shrug.
-rwxr-xr-x | configure | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -143,7 +143,6 @@ echo "file config.log: writing..." NEED_GNU_SOURCE=0 NEED_OPENBSD_SOURCE=0 -NEED_LIBBSD_OPENBSD_VIS=0 COMPATS= COMP="${CC} ${CFLAGS} -Werror=implicit-function-declaration" @@ -216,10 +215,6 @@ runtest() { NEED_OPENBSD_SOURCE=1 return 0 fi - if [ "$4" = -DLIBBSD_OPENBSD_VIS ]; then - NEED_LIBBSD_OPENBSD_VIS=1 - return 0 - fi if [ -n "$3" ]; then CFLAGS="$CFLAGS $3" fi @@ -405,9 +400,6 @@ fi if [ $NEED_OPENBSD_SOURCE = 1 ]; then CFLAGS="$CFLAGS -D_OPENBSD_SOURCE" fi -if [ $NEED_LIBBSD_OPENBSD_VIS = 1 ]; then - CFLAGS="$CFLAGS -DLIBBSD_OPENBSD_VIS" -fi CFLAGS="-I. ${CFLAGS} ${CDIAGFLAGS}" |