GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Sendmail installation error: db-4.1.25
Operating System - HP-UX
1854701
Members
9262
Online
104102
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp
Knowledge Base
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2004 02:22 AM
07-13-2004 02:22 AM
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
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2004 02:47 AM
07-13-2004 02:47 AM
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.
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.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2026 Hewlett Packard Enterprise Development LP