Boris Derzhavets writes:
> I've untared Tightvnc 1.3.9 Unix source on Solaris domU.
> I am getting known message when running make World :-
> "language optional software package not installed"
> Distribution CD obviously doesn't contain SUNWspro.

Are you getting this message?

  /usr/ucb/cc:  language optional software package not installed

If so, then the fix is simple: don't use the bogus 'cc' that's in
/usr/ucb.  Get /usr/ucb out of your path if you can manage it.  If you
can't do that, then at least make sure that a working 'cc' is first.

(/usr/ucb/cc is for compiling and linking ancient SunOS programs.  In
general, you don't want it.)

Boris Derzhavets writes:
> after extracting generates Makefile, referencing everywhere directories 
> specific
> for Sun Pro C . Regardless I do have gcc installed , it's not quite clear for 
> me how should I manage to put gcc in work.

Depending on your shell and the software you're building, one of these
will usually do the trick:

        export CC=/usr/sfw/bin/gcc

        CC=/usr/sfw/bin/gcc
        export CC

        setenv CC /usr/sfw/bin/gcc

        make CC=/usr/sfw/bin/gcc

Typically, you'll need to tell the "./configure" script (or equivalent
for your software) to use gcc _before_ attempting to build.

-- 
James Carlson, Solaris Networking              <[EMAIL PROTECTED]>
Sun Microsystems / 1 Network Drive         71.232W   Vox +1 781 442 2084
MS UBUR02-212 / Burlington MA 01803-2757   42.496N   Fax +1 781 442 1677
_______________________________________________
opensolaris-discuss mailing list
[email protected]

Reply via email to