home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.unix.questions
- Path: sparky!uunet!zaphod.mps.ohio-state.edu!magnus.acs.ohio-state.edu!jiazhang
- From: jiazhang@magnus.acs.ohio-state.edu (Jiajie Zhang)
- Subject: Problems: software installation using makefile
- Message-ID: <1992Sep11.171847.14598@magnus.acs.ohio-state.edu>
- Sender: news@magnus.acs.ohio-state.edu
- Nntp-Posting-Host: top.magnus.acs.ohio-state.edu
- Organization: The Ohio State University
- Date: Fri, 11 Sep 1992 17:18:47 GMT
- Lines: 46
-
-
-
-
-
- Many times when I tried to a software using makefile, I always got
- compiling error messages. The following error messages are from
- installing lwsrv of cap60, but the same messages were also given to me
- for other programs.
-
- cc -o lwsrv fontlist.o lwsrv.o papstream.o procset.o simple.o
- spmisc.o att_geto pt.o -lcap
- ld: Undefined symbol
- __Q_get_rp_rd
- _dlopen
- _dlclose
- _dlsym
- _nl_langinfo
- *** Error code 2
- make: Fatal error: Command failed for target `lwsrv'
-
-
- When I replaced "LD=ld" with "LD=ld -ldl" in the makeifle, I still got
- something like
-
- cc -o lwsrv fontlist.o lwsrv.o papstream.o procset.o simple.o
- spmisc.o att_geto pt.o -lcap
- ld: Undefined symbol
- __Q_get_rp_rd
- _nl_langinfo
- *** Error code 2
- make: Fatal error: Command failed for target `lwsrv'
-
- The machine is a Sun Sparc 2 running SunOs 4.1. I was told that the
- problem might be caused by the shared libraries, which were rebuilt
- for Network Name Server (or something like that). However, because I
- am only an end user, I do not know much about the system stuff.
-
- Does anyone know how to solve this problem, either temporarily or
- permanently? Any pointers will be greatly appreciated.
-
- Jiajie Zhang
- jiazhang@magnus.acs.ohio-state.edu
-
-
-
-
-