mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-01-08 11:02:24 +01:00
build: Rename ABI selection variables from need_ to abi_
This should make the purpose of these variables more clear.
This commit is contained in:
parent
0bdbc0787e
commit
99739877be
104
configure.ac
104
configure.ac
@ -38,61 +38,61 @@ LIBBSD_LINKER_VERSION_SCRIPT
|
|||||||
|
|
||||||
is_windows=no
|
is_windows=no
|
||||||
|
|
||||||
need_arc4random=yes
|
abi_arc4random=no
|
||||||
need_bsd_getopt=yes
|
abi_bsd_getopt=no
|
||||||
need_err=yes
|
abi_err=no
|
||||||
need_errc=yes
|
abi_errc=no
|
||||||
need_fpurge=yes
|
abi_fpurge=no
|
||||||
need_funopen=yes
|
abi_funopen=no
|
||||||
need_md5=yes
|
abi_md5=no
|
||||||
need_name_from_id=yes
|
abi_name_from_id=no
|
||||||
need_nlist=yes
|
abi_nlist=no
|
||||||
need_progname=yes
|
abi_progname=no
|
||||||
need_strl=yes
|
abi_strl=no
|
||||||
need_strmode=yes
|
abi_strmode=no
|
||||||
need_wcsl=yes
|
abi_wcsl=no
|
||||||
|
|
||||||
AS_CASE([$host_os],
|
AS_CASE([$host_os],
|
||||||
[*-gnu*], [
|
[*-gnu*], [
|
||||||
|
abi_errc=yes
|
||||||
# On glibc >= 2.38, strlcpy() and strlcat() got added,
|
# On glibc >= 2.38, strlcpy() and strlcat() got added,
|
||||||
# so these could then be dropped on the next SOVERSION bump.
|
# so these could then be dropped on the next SOVERSION bump.
|
||||||
#need_strl=no
|
#abi_strl=no
|
||||||
need_err=no
|
|
||||||
],
|
],
|
||||||
[*-musl*], [
|
[*-musl*], [
|
||||||
# On musl >= 0.9.7, optreset got implemented, so bsd_getopt() can then
|
# On musl >= 0.9.7, optreset got implemented, so bsd_getopt() can then
|
||||||
# be dropped on the next SOVERSION bump.
|
# be dropped on the next SOVERSION bump.
|
||||||
#need_bsd_getopt=no
|
#abi_bsd_getopt=no
|
||||||
need_err=no
|
abi_err=no
|
||||||
# On musl >= 1.1.19, fopencookie() got implemented, and because we were
|
# On musl >= 1.1.19, fopencookie() got implemented, and because we were
|
||||||
# checking for its presence to decide whether to build funopen(), it got
|
# checking for its presence to decide whether to build funopen(), it got
|
||||||
# included in builds even when previously it had not been included, which
|
# included in builds even when previously it had not been included, which
|
||||||
# is partially an ABI issue, but given that disabling it now would be
|
# is partially an ABI issue, but given that disabling it now would be
|
||||||
# worse, we'll ignore this as this is only a problem with downgrades. And
|
# worse, we'll ignore this as this is only a problem with downgrades. And
|
||||||
# enable it explicitly
|
# enable it explicitly
|
||||||
need_funopen=yes
|
abi_funopen=yes
|
||||||
# On musl >= 0.5.0, strlcpy() and strlcat() were already implemented,
|
# On musl >= 0.5.0, strlcpy() and strlcat() were already implemented,
|
||||||
# so these can then be dropped on the next SOVERSION bump.
|
# so these can then be dropped on the next SOVERSION bump.
|
||||||
#need_strl=no
|
#abi_strl=no
|
||||||
],
|
],
|
||||||
[darwin*], [
|
[darwin*], [
|
||||||
# On macOS these are provided by the system, and libbsd has never built
|
# On macOS these are provided by the system, and libbsd has never built
|
||||||
# there, so we can avoid providing these with no ABI breakage.
|
# there, so we can avoid providing these with no ABI breakage.
|
||||||
need_arc4random=no
|
abi_arc4random=no
|
||||||
need_bsd_getopt=no
|
abi_bsd_getopt=no
|
||||||
need_err=no
|
abi_err=no
|
||||||
need_errc=no
|
abi_errc=no
|
||||||
need_fpurge=no
|
abi_fpurge=no
|
||||||
# On macOS we do not have fopencookie(), and cannot implement it.
|
# On macOS we do not have fopencookie(), and cannot implement it.
|
||||||
need_funopen=no
|
abi_funopen=no
|
||||||
need_md5=no
|
abi_md5=no
|
||||||
need_name_from_id=no
|
abi_name_from_id=no
|
||||||
need_nlist=no
|
abi_nlist=no
|
||||||
need_progname=no
|
abi_progname=no
|
||||||
need_strl=no
|
abi_strl=no
|
||||||
need_strmode=no
|
abi_strmode=no
|
||||||
need_transparent_libmd=no
|
abi_transparent_libmd=no
|
||||||
need_wcsl=no
|
abi_wcsl=no
|
||||||
],
|
],
|
||||||
[mingw*], [
|
[mingw*], [
|
||||||
is_windows=yes
|
is_windows=yes
|
||||||
@ -169,17 +169,17 @@ AM_CONDITIONAL([HAVE_LIBTESTU01],
|
|||||||
[test "x$ac_cv_lib_testu01_unif01_CreateExternGenBits" = "xyes"])
|
[test "x$ac_cv_lib_testu01_unif01_CreateExternGenBits" = "xyes"])
|
||||||
|
|
||||||
saved_LIBS="$LIBS"
|
saved_LIBS="$LIBS"
|
||||||
AS_IF([test "$need_md5" = "yes"], [
|
AS_IF([test "$abi_md5" = "yes"], [
|
||||||
AC_SEARCH_LIBS([MD5Update], [md], [
|
AC_SEARCH_LIBS([MD5Update], [md], [
|
||||||
AS_IF([test "x$ac_cv_search_MD5Update" != "xnone required"], [
|
AS_IF([test "x$ac_cv_search_MD5Update" != "xnone required"], [
|
||||||
MD5_LIBS="$MD5_LIBS $ac_cv_search_MD5Update"
|
MD5_LIBS="$MD5_LIBS $ac_cv_search_MD5Update"
|
||||||
need_transparent_libmd=yes
|
abi_transparent_libmd=yes
|
||||||
])
|
])
|
||||||
], [
|
], [
|
||||||
AC_MSG_ERROR([cannot find required MD5 functions in libc or libmd])
|
AC_MSG_ERROR([cannot find required MD5 functions in libc or libmd])
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
AS_IF([test "$need_arc4random" = "yes"], [
|
AS_IF([test "$abi_arc4random" = "yes"], [
|
||||||
AC_CHECK_FUNCS([getentropy])
|
AC_CHECK_FUNCS([getentropy])
|
||||||
|
|
||||||
AS_IF([test "$ac_cv_func_getentropy" != "yes"], [
|
AS_IF([test "$ac_cv_func_getentropy" != "yes"], [
|
||||||
@ -279,21 +279,23 @@ AC_CHECK_FUNCS([\
|
|||||||
|
|
||||||
AM_CONDITIONAL([HAVE_GETENTROPY], [test "x$ac_cv_func_getentropy" = "xyes"])
|
AM_CONDITIONAL([HAVE_GETENTROPY], [test "x$ac_cv_func_getentropy" = "xyes"])
|
||||||
|
|
||||||
AM_CONDITIONAL([NEED_ARC4RANDOM], [test "x$need_arc4random" = "xyes"])
|
# ABI selection
|
||||||
AM_CONDITIONAL([NEED_BSD_GETOPT], [test "x$need_bsd_getopt" = "xyes"])
|
AM_CONDITIONAL([ABI_ARC4RANDOM], [test "x$abi_arc4random" = "xyes"])
|
||||||
AM_CONDITIONAL([NEED_ERR], [test "x$need_err" = "xyes"])
|
AM_CONDITIONAL([ABI_BSD_GETOPT], [test "x$abi_bsd_getopt" = "xyes"])
|
||||||
AM_CONDITIONAL([NEED_ERRC], [test "x$need_errc" = "xyes"])
|
AM_CONDITIONAL([ABI_ERR], [test "x$abi_err" = "xyes"])
|
||||||
AM_CONDITIONAL([NEED_PROGNAME], [test "x$need_progname" = "xyes"])
|
AM_CONDITIONAL([ABI_ERRC], [test "x$abi_errc" = "xyes"])
|
||||||
AM_CONDITIONAL([NEED_TRANSPARENT_LIBMD], [test "x$need_transparent_libmd" = "xyes"])
|
AM_CONDITIONAL([ABI_PROGNAME], [test "x$abi_progname" = "xyes"])
|
||||||
AM_CONDITIONAL([NEED_MD5], [test "x$need_md5" = "xyes"])
|
AM_CONDITIONAL([ABI_TRANSPARENT_LIBMD], [test "x$abi_transparent_libmd" = "xyes"])
|
||||||
AM_CONDITIONAL([NEED_NLIST], [test "x$need_nlist" = "xyes"])
|
AM_CONDITIONAL([ABI_MD5], [test "x$abi_md5" = "xyes"])
|
||||||
AM_CONDITIONAL([NEED_STRL], [test "x$need_strl" = "xyes"])
|
AM_CONDITIONAL([ABI_NLIST], [test "x$abi_nlist" = "xyes"])
|
||||||
AM_CONDITIONAL([NEED_WCSL], [test "x$need_wcsl" = "xyes"])
|
AM_CONDITIONAL([ABI_STRL], [test "x$abi_strl" = "xyes"])
|
||||||
AM_CONDITIONAL([NEED_STRMODE], [test "x$need_strmode" = "xyes"])
|
AM_CONDITIONAL([ABI_WCSL], [test "x$abi_wcsl" = "xyes"])
|
||||||
AM_CONDITIONAL([NEED_NAME_FROM_ID], [test "x$need_name_from_id" = "xyes"])
|
AM_CONDITIONAL([ABI_STRMODE], [test "x$abi_strmode" = "xyes"])
|
||||||
AM_CONDITIONAL([NEED_FPURGE], [test "x$need_fpurge" = "xyes"])
|
AM_CONDITIONAL([ABI_NAME_FROM_ID], [test "x$abi_name_from_id" = "xyes"])
|
||||||
AM_CONDITIONAL([NEED_FUNOPEN], [test "x$need_funopen" = "xyes"])
|
AM_CONDITIONAL([ABI_FPURGE], [test "x$abi_fpurge" = "xyes"])
|
||||||
AS_IF([test "x$need_funopen" = "xno" && \
|
AM_CONDITIONAL([ABI_FUNOPEN], [test "x$abi_funopen" = "xyes"])
|
||||||
|
|
||||||
|
AS_IF([test "x$abi_funopen" = "xno" && \
|
||||||
test "x$ac_cv_func_funopen" != "xyes" && \
|
test "x$ac_cv_func_funopen" != "xyes" && \
|
||||||
test "x$ac_cv_func_fopencookie" = "xyes"], [
|
test "x$ac_cv_func_fopencookie" = "xyes"], [
|
||||||
AC_MSG_WARN([[can implement funopen() now based on newly added fopencooke(), report upstream]])
|
AC_MSG_WARN([[can implement funopen() now based on newly added fopencooke(), report upstream]])
|
||||||
|
@ -29,13 +29,13 @@ nobase_include_HEADERS = \
|
|||||||
bsd/wchar.h \
|
bsd/wchar.h \
|
||||||
# EOL
|
# EOL
|
||||||
|
|
||||||
if NEED_MD5
|
if ABI_MD5
|
||||||
nobase_include_HEADERS += \
|
nobase_include_HEADERS += \
|
||||||
bsd/md5.h \
|
bsd/md5.h \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_NLIST
|
if ABI_NLIST
|
||||||
nobase_include_HEADERS += \
|
nobase_include_HEADERS += \
|
||||||
bsd/nlist.h \
|
bsd/nlist.h \
|
||||||
# EOL
|
# EOL
|
||||||
|
@ -237,37 +237,37 @@ dist_man_MANS = \
|
|||||||
vis.3bsd \
|
vis.3bsd \
|
||||||
# EOL
|
# EOL
|
||||||
|
|
||||||
if NEED_ERRC
|
if ABI_ERRC
|
||||||
dist_man_MANS += \
|
dist_man_MANS += \
|
||||||
errc.3bsd \
|
errc.3bsd \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_FPURGE
|
if ABI_FPURGE
|
||||||
dist_man_MANS += \
|
dist_man_MANS += \
|
||||||
fpurge.3bsd \
|
fpurge.3bsd \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_FUNOPEN
|
if ABI_FUNOPEN
|
||||||
dist_man_MANS += \
|
dist_man_MANS += \
|
||||||
funopen.3bsd \
|
funopen.3bsd \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_MD5
|
if ABI_MD5
|
||||||
dist_man_MANS += \
|
dist_man_MANS += \
|
||||||
md5.3bsd \
|
md5.3bsd \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_NLIST
|
if ABI_NLIST
|
||||||
dist_man_MANS += \
|
dist_man_MANS += \
|
||||||
nlist.3bsd \
|
nlist.3bsd \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_PROGNAME
|
if ABI_PROGNAME
|
||||||
dist_man_MANS += \
|
dist_man_MANS += \
|
||||||
getprogname.3bsd \
|
getprogname.3bsd \
|
||||||
setprogname.3bsd \
|
setprogname.3bsd \
|
||||||
@ -279,27 +279,27 @@ dist_man_MANS += \
|
|||||||
uid_from_user.3bsd \
|
uid_from_user.3bsd \
|
||||||
# EOL
|
# EOL
|
||||||
|
|
||||||
if NEED_NAME_FROM_ID
|
if ABI_NAME_FROM_ID
|
||||||
dist_man_MANS += \
|
dist_man_MANS += \
|
||||||
group_from_gid.3bsd \
|
group_from_gid.3bsd \
|
||||||
user_from_uid.3bsd \
|
user_from_uid.3bsd \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_STRL
|
if ABI_STRL
|
||||||
dist_man_MANS += \
|
dist_man_MANS += \
|
||||||
strlcat.3bsd \
|
strlcat.3bsd \
|
||||||
strlcpy.3bsd \
|
strlcpy.3bsd \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_STRMODE
|
if ABI_STRMODE
|
||||||
dist_man_MANS += \
|
dist_man_MANS += \
|
||||||
strmode.3bsd \
|
strmode.3bsd \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_WCSL
|
if ABI_WCSL
|
||||||
dist_man_MANS += \
|
dist_man_MANS += \
|
||||||
wcslcat.3bsd \
|
wcslcat.3bsd \
|
||||||
wcslcpy.3bsd \
|
wcslcpy.3bsd \
|
||||||
|
@ -113,7 +113,7 @@ libbsd_la_SOURCES = \
|
|||||||
vis.c \
|
vis.c \
|
||||||
# EOL
|
# EOL
|
||||||
|
|
||||||
if NEED_ARC4RANDOM
|
if ABI_ARC4RANDOM
|
||||||
if !HAVE_GETENTROPY
|
if !HAVE_GETENTROPY
|
||||||
libbsd_la_SOURCES += \
|
libbsd_la_SOURCES += \
|
||||||
getentropy.c \
|
getentropy.c \
|
||||||
@ -130,75 +130,75 @@ libbsd_la_SOURCES += \
|
|||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_BSD_GETOPT
|
if ABI_BSD_GETOPT
|
||||||
libbsd_la_SOURCES += \
|
libbsd_la_SOURCES += \
|
||||||
bsd_getopt.c \
|
bsd_getopt.c \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_ERR
|
if ABI_ERR
|
||||||
libbsd_la_SOURCES += \
|
libbsd_la_SOURCES += \
|
||||||
err.c \
|
err.c \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_ERRC
|
if ABI_ERRC
|
||||||
libbsd_la_SOURCES += \
|
libbsd_la_SOURCES += \
|
||||||
errc.c \
|
errc.c \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_FPURGE
|
if ABI_FPURGE
|
||||||
libbsd_la_SOURCES += \
|
libbsd_la_SOURCES += \
|
||||||
fpurge.c \
|
fpurge.c \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_FUNOPEN
|
if ABI_FUNOPEN
|
||||||
libbsd_la_SOURCES += \
|
libbsd_la_SOURCES += \
|
||||||
funopen.c \
|
funopen.c \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_MD5
|
if ABI_MD5
|
||||||
libbsd_la_SOURCES += \
|
libbsd_la_SOURCES += \
|
||||||
md5.c \
|
md5.c \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_NLIST
|
if ABI_NLIST
|
||||||
libbsd_la_SOURCES += \
|
libbsd_la_SOURCES += \
|
||||||
nlist.c \
|
nlist.c \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_PROGNAME
|
if ABI_PROGNAME
|
||||||
libbsd_la_SOURCES += \
|
libbsd_la_SOURCES += \
|
||||||
progname.c \
|
progname.c \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_STRL
|
if ABI_STRL
|
||||||
libbsd_la_SOURCES += \
|
libbsd_la_SOURCES += \
|
||||||
strlcat.c \
|
strlcat.c \
|
||||||
strlcpy.c \
|
strlcpy.c \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_STRMODE
|
if ABI_STRMODE
|
||||||
libbsd_la_SOURCES += \
|
libbsd_la_SOURCES += \
|
||||||
strmode.c \
|
strmode.c \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_WCSL
|
if ABI_WCSL
|
||||||
libbsd_la_SOURCES += \
|
libbsd_la_SOURCES += \
|
||||||
wcslcat.c \
|
wcslcat.c \
|
||||||
wcslcpy.c \
|
wcslcpy.c \
|
||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_TRANSPARENT_LIBMD
|
if ABI_TRANSPARENT_LIBMD
|
||||||
CLEANFILES += \
|
CLEANFILES += \
|
||||||
format.ld \
|
format.ld \
|
||||||
# EOL
|
# EOL
|
||||||
@ -223,7 +223,7 @@ libbsd.map: libbsd.map.in
|
|||||||
libbsd.sym: libbsd.map
|
libbsd.sym: libbsd.map
|
||||||
$(AM_V_GEN) $(SED) -ne 's/^[[:space:]]\{1,\}\([A-Za-z0-9_]\{1,\}\);/\1/p' libbsd.map >$@
|
$(AM_V_GEN) $(SED) -ne 's/^[[:space:]]\{1,\}\([A-Za-z0-9_]\{1,\}\);/\1/p' libbsd.map >$@
|
||||||
|
|
||||||
if NEED_TRANSPARENT_LIBMD
|
if ABI_TRANSPARENT_LIBMD
|
||||||
TRANSPARENT_LIBMD_DEPENDS = format.ld
|
TRANSPARENT_LIBMD_DEPENDS = format.ld
|
||||||
|
|
||||||
format.ld:
|
format.ld:
|
||||||
@ -240,7 +240,7 @@ install-exec-hook: $(TRANSPARENT_LIBMD_DEPENDS)
|
|||||||
mv $(DESTDIR)$(libdir)/libbsd*.so.* \
|
mv $(DESTDIR)$(libdir)/libbsd*.so.* \
|
||||||
$(DESTDIR)$(runtimelibdir)/; \
|
$(DESTDIR)$(runtimelibdir)/; \
|
||||||
fi
|
fi
|
||||||
if NEED_TRANSPARENT_LIBMD
|
if ABI_TRANSPARENT_LIBMD
|
||||||
# The "GNU ld script" magic is required so that GNU ldconfig does not complain
|
# The "GNU ld script" magic is required so that GNU ldconfig does not complain
|
||||||
# about an unknown format file.
|
# about an unknown format file.
|
||||||
soname=`readlink $(DESTDIR)$(libdir)/libbsd.so`; \
|
soname=`readlink $(DESTDIR)$(libdir)/libbsd.so`; \
|
||||||
|
@ -49,7 +49,7 @@ check_PROGRAMS = \
|
|||||||
vis-openbsd \
|
vis-openbsd \
|
||||||
# EOL
|
# EOL
|
||||||
|
|
||||||
if NEED_ARC4RANDOM
|
if ABI_ARC4RANDOM
|
||||||
if HAVE_LIBTESTU01
|
if HAVE_LIBTESTU01
|
||||||
check_PROGRAMS += arc4random
|
check_PROGRAMS += arc4random
|
||||||
|
|
||||||
@ -71,24 +71,24 @@ fparseln_SOURCES = \
|
|||||||
fparseln.c \
|
fparseln.c \
|
||||||
# EOL
|
# EOL
|
||||||
|
|
||||||
if NEED_FPURGE
|
if ABI_FPURGE
|
||||||
check_PROGRAMS += fpurge
|
check_PROGRAMS += fpurge
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_FUNOPEN
|
if ABI_FUNOPEN
|
||||||
check_PROGRAMS += funopen
|
check_PROGRAMS += funopen
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_MD5
|
if ABI_MD5
|
||||||
check_PROGRAMS += md5
|
check_PROGRAMS += md5
|
||||||
|
|
||||||
if NEED_TRANSPARENT_LIBMD
|
if ABI_TRANSPARENT_LIBMD
|
||||||
# On the installed system this is handled via the ld script.
|
# On the installed system this is handled via the ld script.
|
||||||
md5_LDADD = $(LDADD) $(MD5_LIBS)
|
md5_LDADD = $(LDADD) $(MD5_LIBS)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_NLIST
|
if ABI_NLIST
|
||||||
check_PROGRAMS += nlist
|
check_PROGRAMS += nlist
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -108,15 +108,15 @@ proctitle_LDFLAGS = \
|
|||||||
# EOL
|
# EOL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_PROGNAME
|
if ABI_PROGNAME
|
||||||
check_PROGRAMS += progname
|
check_PROGRAMS += progname
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_STRL
|
if ABI_STRL
|
||||||
check_PROGRAMS += strl
|
check_PROGRAMS += strl
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if NEED_STRMODE
|
if ABI_STRMODE
|
||||||
check_PROGRAMS += strmode
|
check_PROGRAMS += strmode
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user