Add missing sources to build

This commit is contained in:
Ariel Abreu 2023-01-02 10:19:21 -05:00
parent 2da2f971cf
commit 60efce9729
No known key found for this signature in database
GPG Key ID: E84B94FA5458B151
2 changed files with 69 additions and 0 deletions

View File

@ -14,7 +14,38 @@ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fblocks")
set(info-nis_sources
getdomainname.c
innetgr.c
setdomainname.c
xdr_domainname.c
xdr_keydat.c
xdr_mapname.c
xdr_peername.c
xdr_valdat.c
xdr_ypbind_binding.c
xdr_ypbind_resp.c
xdr_ypbind_resptype.c
xdr_ypbind_setdom.c
xdr_ypmaplist.c
xdr_ypreq_key.c
xdr_ypreq_nokey.c
xdr_ypresp_all.c
xdr_ypresp_key_val.c
xdr_ypresp_maplist.c
xdr_ypresp_master.c
xdr_ypresp_order.c
xdr_ypresp_val.c
xdr_ypstat.c
yp_all.c
yp_bind.c
yp_first.c
yp_get_default_domain.c
yp_maplist.c
yp_master.c
yp_order.c
yperr_string.c
ypmatch_cache.c
yppasswdd_xdr.c
ypprot_err.c
)
add_darling_object_library(info-nis ${info-nis_sources})

View File

@ -5,8 +5,46 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR})
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fblocks")
set(info-rpc_sources
auth_none.c
auth_unix.c
authunix_prot.c
bindresvport.c
clnt_generic.c
clnt_perror.c
clnt_raw.c
clnt_simple.c
clnt_tcp.c
clnt_udp.c
get_myaddress.c
getrpcent.c
getrpcport.c
pmap_clnt.c
pmap_getmaps.c
pmap_getport.c
pmap_prot.c
pmap_prot2.c
pmap_rmt.c
pmap_wakeup.c
rpc_callmsg.c
rpc_commondata.c
rpc_dtablesize.c
rpc_prot.c
svc.c
svc_auth.c
svc_auth_unix.c
svc_raw.c
svc_run.c
svc_simple.c
svc_tcp.c
svc_udp.c
xdr.c
xdr_array.c
xdr_float.c
xdr_mem.c
xdr_rec.c
xdr_reference.c
xdr_sizeof.c
xdr_stdio.c
)
add_darling_object_library(info-rpc ${info-rpc_sources})