Remove lib/roken glob()

We no longer use it since removing ftp from appl/.

Note that expansion of ~username/ couldn't have been working because
k_getpwnam() was being called with an unsigned short * that was forcibly
cast to char *, but it really was shorts, not chars...  Anyone who ever
feels like reviving lib/roken/glob.[ch] will want to fix that...
This commit is contained in:
Nicolas Williams
2017-10-12 22:31:44 -05:00
committed by Nico Williams
parent 8a77f45aff
commit 3b8c762dd0
7 changed files with 2 additions and 1004 deletions

View File

@@ -142,7 +142,6 @@ libroken_la_SOURCES = \
EXTRA_libroken_la_SOURCES = \
err.hin \
glob.hin \
fnmatch.hin \
ifaddrs.hin \
search.hin \
@@ -166,12 +165,6 @@ else
fnmatch_h = fnmatch.h
endif
if have_glob_h
glob_h =
else
glob_h = glob.h
endif
if have_ifaddrs_h
ifaddrs_h =
else
@@ -191,8 +184,8 @@ vis_h = vis.h
endif
## these are controlled by configure
XHEADERS = $(err_h) $(fnmatch_h) $(glob_h) $(ifaddrs_h) $(search_h) $(vis_h)
CLEANFILES += err.h fnmatch.h glob.h ifaddrs.h search.h vis.h
XHEADERS = $(err_h) $(fnmatch_h) $(ifaddrs_h) $(search_h) $(vis_h)
CLEANFILES += err.h fnmatch.h ifaddrs.h search.h vis.h
dist_include_HEADERS = \
base64.h \