Operating System - HP-UX
1819738 Members
3004 Online
109606 Solutions
New Discussion юеВ

Re: Error 1701. Unsigned suffix is an ANSI feature?

 
SOLVED
Go to solution
wtiancai
Frequent Advisor

Error 1701. Unsigned suffix is an ANSI feature?

hi,everybody,


when install subversion1.4.4

the error message:

checking zlib.h usability... no
checking zlib.h presence... no
checking for zlib.h... no
configure: error: subversion requires zlib

and i download the zlib and install

the error message:
(Bundled) cc: "adler32.c", line 147: error 1701: Unsigned suffix is an ANSI feature.


=================
what's the problem?how can i do?tks!

34 REPLIES 34
Luk Vandenbussche
Honored Contributor
Solution

Re: Error 1701. Unsigned suffix is an ANSI feature?

On this site you can download all the runtime dependencies

http://hpux.cs.utah.edu/hppd/hpux/Development/Tools/subversion-1.4.4/
wtiancai
Frequent Advisor

Re: Error 1701. Unsigned suffix is an ANSI feature?

whiteknight
Honored Contributor

Re: Error 1701. Unsigned suffix is an ANSI feature?

wtiancai,

I tried this link, it is working
wk
Problem never ends, you must know how to fix it
Torsten.
Acclaimed Contributor

Re: Error 1701. Unsigned suffix is an ANSI feature?

try another mirror

http://hpux.asknet.de/hppd/hpux/Development/Tools/subversion-1.4.4/

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
wtiancai
Frequent Advisor

Re: Error 1701. Unsigned suffix is an ANSI feature?

hi,Lub

in the Installation

NOTE: You must install the apr, apr_util, db, expat, gettext, libiconv,
neon, perl, python and zlib packages before building or installing
this subversion package.

it's means i must download them first and install one by one?

====================
subversion-1.4.4-hppa-11.11.depot.gz

how to install this file?

================
i'm so poor at english :(
Torsten.
Acclaimed Contributor

Re: Error 1701. Unsigned suffix is an ANSI feature?

You must install all Run-time dependencies. If these files have more dependencies, you probably need them too...

To install:
save the file to disk, e.g. to

/tmp/mydepot.1.2.3.depot.gz

unzip it

gunzip mydepot.1.2.3.depot.gz

install it
swinstall -s /tmp/mydepot.1.2.3.depot

Do this with all dependend depots.
(this could be a lot of work).

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Dennis Handly
Acclaimed Contributor

Re: Error 1701. Unsigned suffix is an ANSI feature?

Your immediate problem is that you can't use the bundled C compiler to develop/port software you need.
wtiancai
Frequent Advisor

Re: Error 1701. Unsigned suffix is an ANSI feature?

hi,Torsten

bea8:/tmp/svn#swinstall -s zlib-1.2.3-hppa-11.11.depot


has error:
NOTE: The interactive UI was invoked, since no software was
specified.

===
pls help,tks
whiteknight
Honored Contributor

Re: Error 1701. Unsigned suffix is an ANSI feature?

bea8:/tmp/svn#swinstall -s zlib-1.2.3-hppa-11.11.depot

try this
#swinstall -s /tmp/svn/zlib-1.2.3-hppa-11.11.depot

WK

please assign points


Problem never ends, you must know how to fix it
wtiancai
Frequent Advisor

Re: Error 1701. Unsigned suffix is an ANSI feature?

try this
#swinstall -s /tmp/svn/zlib-1.2.3-hppa-11.11.depot

==========
tks,
still error



pls
Torsten.
Acclaimed Contributor

Re: Error 1701. Unsigned suffix is an ANSI feature?

It's not an error, it is a NOTE!

NOTE: The interactive UI was invoked, since no software was
specified.


You must mark the software in the selection window and select install.

Other way to do this:


#swinstall -s /tmp/svn/zlib-1.2.3-hppa-11.11.depot \*

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
wtiancai
Frequent Advisor

Re: Error 1701. Unsigned suffix is an ANSI feature?

hi,all


still have some question,help me,tks


1.
NOTE: You must install the apr, apr_util, db, expat, gettext, libiconv,
neon, perl, python and zlib packages before building or installing
this subversion package.

====
whether need to install them Sequentially

2.
when i exec the command:
bea8:/#swinstall -s /tmp/svn/depot/apr-0.9.14-hppa-11.11.depot \*

==================================
BEGIN swinstall
SESSION├п┬╝ Non-interactive├п┬╝ (jobid=bea8-0040)
.....
.....
* Analysis and Execution succeeded├г

END swinstall
SESSION├п┬╝ Non-interactive├п┬╝ (jobid=bea8-0040)
==================================


how to see the install if Successful?
how to test the install if Successful?
whiteknight
Honored Contributor

Re: Error 1701. Unsigned suffix is an ANSI feature?

Hi

Go to /var/adm/sw/swinstall.log

=> Check the latest entry to see the installation installed successfully.

WK
Problem never ends, you must know how to fix it
wtiancai
Frequent Advisor

Re: Error 1701. Unsigned suffix is an ANSI feature?

whiteknight,tks


1.
NOTE: You must install the apr, apr_util, db, expat, gettext, libiconv,
neon, perl, python and zlib packages before building or installing
this subversion package.

====
whether need to install them Sequentially


if i need to install them all?
or how to judge to install that need to install?
Dennis Handly
Acclaimed Contributor

Re: Error 1701. Unsigned suffix is an ANSI feature?

>1) whether need to install them Sequentially

You may be able to install them sequentially, depending on whether there are explicit dependencies and whether you pick the right order. ;-)

You can install them all at once by combining them into one large depot:
# for d in depot1 depot2 ; do
swcopy -x enforce_dependencies -s $PWD/$d \* @ $PWD/big_depot
done

Then swinstall from big_depot:
swinstall -s $PWD/big_depot \*
wtiancai
Frequent Advisor

Re: Error 1701. Unsigned suffix is an ANSI feature?

when install heimdal-1.0.1-hppa-11.11.depot,
Analysis and Execution had errors

===============
bea8:/#swinstall -s /tmp/svn/depot/heimdal-1.0.1-hppa-11.11.depot \*

======= 2007├е┬╣┬┤8├ж 31├ж ┬е ├ж ├ж ├д┬║ 11:31:55 EAT BEGIN swinstall
SESSION├п┬╝ ├й ├д┬║┬д├д┬║ ├е┬╝ ├п┬╝ (jobid=bea8-0049)

* ├е┬╖┬▓├д┬╕┬║├з ┬и├ж ┬╖ "root@bea8" ├е ┬п├е ┬и├д┬╝ ├и┬п ├г

* ├ж┬н┬г├е ┬и├е┬╝ ├е┬з Selection
* Target connection ├е┬╖┬▓├е ┬и "bea8:/" ├ж ├е ├г
NOTE: ├и┬╜┬п├д┬╗┬╢ "heimdal"
├и┬в┬л├ж ├е ├ж  ├и┬о┬░├п┬╝ ├д┬╜ ├е┬о ├д┬╗ ├е┬▒ ├д┬║ ├д┬╕ ├е ├е ┬и├ж┬║ ├д┬╕┬н├ж  ├ж┬│ ├ж ┬╛├е ┬░├з ├и┬╜┬п├д┬╗┬╢├й┬б┬╣├з ┬о├г ├д┬╕ ├и┬┐ ├п┬╝ ├и┬┐ ├д┬║ ├й┬б┬╣├з ┬о├е ┬п├и ┬╜?
flex.flex-RUN openssl.openssl-SHLIBS termcap.termcap-RUN
openssl.openssl-SHLIBS termcap.termcap-RUN
* ├ж┬║ ├п┬╝
/tmp/svn/depot/heimdal-1.0.1-hppa-11.11.depot
* Targets: bea8:/
* ├и┬╜┬п├д┬╗┬╢├й ├ж ┬й├п┬╝
heimdal.heimdal-INC,r=1.0.1,a=HP-UX_B./800
heimdal.heimdal-MAN,r=1.0.1,a=HP-UX_B./800
heimdal.heimdal-RUN,r=1.0.1,a=HP-UX_B./800
heimdal.heimdal-SHLIBS,r=1.0.1,a=HP-UX_B./800
* Selection succeeded├г

* ├ж┬н┬г├е ┬и├е┬╝ ├е┬з Analysis and Execution
* ├д┬╝ ├и┬п ├й ├ж ┬й├е┬╖┬▓├д┬┐ ├е┬н ├е ┬и├ж ├д┬╗┬╢ "/.sw/sessions/swinstall.last" ├д┬╕┬н├г
ERROR: "bea8:/"├п┬╝ 2 ├д┬╕┬к├д┬║┬з├е ├ж ├ж ├д┬╗┬╢├й ├з ├и┬╜┬п├д┬╗┬╢├д┬╗ ├е┬▒ ├е ┬│├з┬│┬╗├д┬╕ ├и ┬╜├и┬з┬г├ж ├г
* The analysis phase ├е┬╖┬▓├е ┬и "bea8:/" ├е┬д┬▒├и┬┤┬е├г
ERROR: "bea8:/"├п┬╝ 2 ├д┬╕┬к├ж ├д┬╗┬╢├й ├з┬б┬о├е┬о ├и┬ж ├е ┬и├е ├ж ├и┬┐ ├з┬и ├д┬╕┬н├и┬╖┬│├и┬┐ ├г
* The execution phase ├е┬╖┬▓├е ┬и "bea8:/" ├е┬д┬▒├и┬┤┬е├г
* Analysis and Execution had errors├г


NOTE: ├е ┬п├д┬╜┬┐├з ┬и├е ┬╜├д┬╗┬д "swjob -a log bea8-0049 @ bea8:/"
├е ┬и├д┬╗┬г├з ├ж ┬е├е┬┐ ├ж ├д┬╗┬╢├д┬╕┬н├и ┬╖├е ├и┬п┬ж├з┬╗ ├д┬┐┬б├ж ┬п├г

======= 2007├е┬╣┬┤8├ж 31├ж ┬е ├ж ├ж ├д┬║ 11:32:16 EAT END swinstall
SESSION├п┬╝ ├й ├д┬║┬д├д┬║ ├е┬╝ ├п┬╝ (jobid=bea8-0049)


Dennis Handly
Acclaimed Contributor

Re: Error 1701. Unsigned suffix is an ANSI feature?

>when install heimdal-1.0.1-hppa-11.11.depot,
Analysis and Execution had errors

I can't really read anything here except "ERROR".
Please "export LANG=C" and try posting that result.
wtiancai
Frequent Advisor

Re: Error 1701. Unsigned suffix is an ANSI feature?

hi,all


i have installed all package(include subversion-1.4.4-hppa-11.11.depot),except heimdal-1.0.1-hppa-11.11.depot

===============
bea8:/#svn --version
sh: svn: not found.
wtiancai
Frequent Advisor

Re: Error 1701. Unsigned suffix is an ANSI feature?

Dennis Handly,i'm so sorry


==========================
(non-interactive) (jobid=bea8-0055)

* Session started for user "root@bea8".

* Beginning Selection
* Target connection succeeded for "bea8:/".
NOTE: The software "heimdal" was successfully marked, but it depends
on the following software items which could not be found in
the source. However, these items may already be in the target.
This will be checked during the Analysis Phase: flex.flex-RUN
openssl.openssl-SHLIBS termcap.termcap-RUN
openssl.openssl-SHLIBS termcap.termcap-RUN
* Source:
/tmp/svn/depot/heimdal-1.0.1-hppa-11.11.depot
* Targets: bea8:/
* Software selections:
heimdal.heimdal-INC,r=1.0.1,a=HP-UX_B./800
heimdal.heimdal-MAN,r=1.0.1,a=HP-UX_B./800
heimdal.heimdal-RUN,r=1.0.1,a=HP-UX_B./800
heimdal.heimdal-SHLIBS,r=1.0.1,a=HP-UX_B./800
* Selection succeeded.
* Beginning Analysis and Execution
* Session selections have been saved in the file
"/.sw/sessions/swinstall.last".
ERROR: "bea8:/": The software dependencies for 2 products or
filesets cannot be resolved.
* The analysis phase failed for "bea8:/".
ERROR: "bea8:/": 2 filesets were determined to be skipped in the
analysis phase.
* The execution phase failed for "bea8:/".
* Analysis and Execution had errors.


NOTE: More information may be found in the agent logfile using the
command "swjob -a log bea8-0055 @ bea8:/".
Joelmel Roche
Valued Contributor

Re: Error 1701. Unsigned suffix is an ANSI feature?

are you using trusting system?

try check this patch..

[PHCO_33282] , s700_800 11.11 pthread Library cumulative patch
Dennis Handly
Acclaimed Contributor

Re: Error 1701. Unsigned suffix is an ANSI feature?

It appears that heimdal needs:
flex.flex-RUN openssl.openssl-SHLIBS termcap.termcap-RUN

And these are listed as Run-time dependencies:
http://gatekeep.cs.utah.edu/hppd/hpux/Development/Tools/heimdal-1.0.1/
wtiancai
Frequent Advisor

Re: Error 1701. Unsigned suffix is an ANSI feature?

hi,Joelmel

try check this patch..

[PHCO_33282] , s700_800 11.11 pthread Library cumulative patch
===========
i don't understand your meaning


hi,Dennis

It appears that heimdal needs:
flex.flex-RUN openssl.openssl-SHLIBS termcap.termcap-RUN

And these are listed as Run-time dependencies:
http://gatekeep.cs.utah.edu/hppd/hpux/Development/Tools/heimdal-1.0.1/

=============
it's means that i should go on to install the Run-time dependencies packages.
Dennis Handly
Acclaimed Contributor

Re: Error 1701. Unsigned suffix is an ANSI feature?

>it means that i should go on to install the Run-time dependencies packages.

Right.
wtiancai
Frequent Advisor

Re: Error 1701. Unsigned suffix is an ANSI feature?

hi,Dennis

1.
the tips of installing heimdal-1.0.1-hppa-11.11.depot is failed, why the install of subversion-1.4.4-hppa-11.11.depot is successed?


2.
the install of subversion-1.4.4-hppa-11.11.depot is successed,why to see the version of svn,has errors
bea8:/#svn --version
sh: svn: not found.