[comp.unix.ultrix] Porting xview2 to ULTRIX 4.1 With X11R4, ** SUGGESTED FIX **

mh@roger.imsd.contel.com (Mike Hoegeman) (01/08/91)

In article <463@inetg1.arco.com> phil@Arco.com writes:
>I can't seem to find an equivilant function to svc_getreqset and svc_fdset.
>Has anyone successfully ported xview2 to ULTRIX?
>How did you get by these guys?

The functions mentioned above (one is really a variable, svc_fdset) are
rpc () (remote procedure call) functions. Sounds to me like you have an
old version of the rpc olibrary running on your operating system. you
can get the latest copy via ftp from titan.rice.edu the files are something 
like

    sun-sources/RPC.<version>.[1-14] 
    
It's pretty portable so you should'nt have any problem compiling it on
your machine. In fact you may be able to get away with just installing
svc_getreqset function alone and defining svc_fdset as

#define svc_fdset svc_fds

Offhand i'm not sure if svc_fds is the exact variable name, do a nm on
whatever your library is and and fgrep for svc_ it wil be something
similar if it is not svc_fds.

Anyways in it's probably just as easy to recompile the whole package
from titan and use that instead of the one supplied woth your OS.

-mike