build-sys: uClibc does not have rpmatch()
Add simple replacement with hardcoded y/n responses to allow compilation on systems without rpmatch(). Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
parent
bb4ae3d933
commit
34344de979
@ -1,5 +1,6 @@
|
||||
dist_noinst_HEADERS = \
|
||||
c.h \
|
||||
nls.h \
|
||||
rpmatch.h \
|
||||
strutils.h \
|
||||
xalloc.h
|
||||
|
9
include/rpmatch.h
Normal file
9
include/rpmatch.h
Normal file
@ -0,0 +1,9 @@
|
||||
#ifndef PROCPS_NG_RPMATCH_H
|
||||
#define PROCPS_NG_RPMATCH_H
|
||||
|
||||
#ifndef HAVE_RPMATCH
|
||||
#define rpmatch(r) \
|
||||
(*r == 'y' || *r == 'Y' ? 1 : *r == 'n' || *r == 'N' ? 0 : -1)
|
||||
#endif
|
||||
|
||||
#endif /* PROCPS_NG_RPMATCH_H */
|
Loading…
Reference in New Issue
Block a user