Operating System - HP-UX
1835091 Members
2178 Online
110073 Solutions
New Discussion

Sendmail installation error: db-4.1.25

 
Amado A. Diaz Jr.
Occasional Advisor

Sendmail installation error: db-4.1.25

Hello,

I am trying to install the Berkeley DB 4.1.25 for Sendmail hash database support with makemap. Once I execute make, I recieve the error:

cc -c -I. -I../dist/.. -I../dist/../dbinc -D_REENTRANT -O ../dist/../crypto/rijndael/rijndael-alg-fst.c +Z -DPIC
(Bundled) cc: warning 480: The -O option is available only with the C/ANSI C product; ignored.
(Bundled) cc: warning 480: The +Z option is available only with the C/ANSI C product; ignored.
(Bundled) cc: "../dist/../crypto/rijndael/rijndael-alg-fst.c", line 48: error 1701: Unsigned suffix is an ANSI feature.
(Bundled) cc: "../dist/../crypto/rijndael/rijndael-alg-fst.c", line 48: error 1701: Unsigned suffix is an ANSI feature.
(Bundled) cc: "../dist/../crypto/rijndael/rijndael-alg-fst.c", line 48: error 1701: Unsigned suffix is an ANSI feature.
(Bundled) cc: "../dist/../crypto/rijndael/rijndael-alg-fst.c", line 48: error 1701: Unsigned suffix is an ANSI feature.
(Bundled) cc: "../dist/../crypto/rijndael/rijndael-alg-fst.c", line 49: error 1701: Unsigned suffix is an ANSI feature.
(Bundled) cc: "../dist/../crypto/rijndael/rijndael-alg-fst.c", line 49: error 1701: Unsigned suffix is an ANSI feature.
(Bundled) cc: "../dist/../crypto/rijndael/rijndael-alg-fst.c", line 49: error 1701: Unsigned suffix is an ANSI feature.
(Bundled) cc: "../dist/../crypto/rijndael/rijndael-alg-fst.c", line 49: error 1701: Unsigned suffix is an ANSI feature.
.
.
.
(Bundled) cc: "../dist/../crypto/rijndael/rijndael-alg-fst.c", line 49: error 1701: Unsigned suffix is an ANSI feature.
(Bundled) cc: "../dist/../crypto/rijndael/rijndael-alg-fst.c", line 50: error 1701: Unsigned suffix is an ANSI feature.
(Bundled) cc: Panic 2161: Maximum allowed number of errors exceeded.
*** Error exit code 1

Stop.

Why am I getting this error? How do I fix it?
Thank you. Your advice is greatly appreciated.
-Amado
1 REPLY 1
Thierry Poels_1
Honored Contributor

Re: Sendmail installation error: db-4.1.25

Hi,


Error 1701
Unsigned suffix is an ANSI feature.

You have attempted to use the U suffix on an integer literal in Compatibility mode.

Either take out the unsigned suffix U or compile with the -Aa option.


good luck,
Thierry.
All unix flavours are exactly the same . . . . . . . . . . for end users anyway.