- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- spamassasin
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
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
Community
Resources
Forums
Blogs
- 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
10-03-2005 06:35 PM
10-03-2005 06:35 PM
While running nake I get this.
gcc -Wall -g -O2 spamc/spamc.c spamc/libspamc.c spamc/utils.c \
-o spamc/spamc -lnsl
spamc/spamc.c: In function `combine_args':
spamc/spamc.c:431: error: `EX_CONFIG' undeclared (first use in this function)
spamc/spamc.c:431: error: (Each undeclared identifier is reported only once
spamc/spamc.c:431: error: for each function it appears in.)
make[1]: *** [spamc/spamc] Error 1
make[1]: Leaving directory `/tmp/Mail-SpamAssassin-3.1.0'
make: *** [spamc/spamc] Error 2
Could someone help me?
Best regards
Lars
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2005 06:46 PM
10-03-2005 06:46 PM
Solutionhttp://archives.free.net.ph/message/20050929.232151.7c85fef3.en.html
--libspam.h --
/* needed for hp-ux */
#ifndef EX_CONFIG
#define EX_CONFIG 78
#endif
It will work now.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2005 06:47 PM
10-03-2005 06:47 PM
Re: spamassasin
Summary: Fails on hp-ux because EX_CONFIG is not defined in
sysexits.h
Product: Spamassassin
Version: 3.1.0
Platform: HP
OS/Version: other
Status: NEW
Severity: normal
Priority: P5
Component: Building & Packaging
AssignedTo: dev@???
ReportedBy: dougbugzilla@???
spamc.c fails to compile on hp-ux 11.11 because libspam.h thinks that EX_CONFIG
only needs to be configured for win32. The fix is to add:
/* needed for hp-ux */
#ifndef EX_CONFIG
#define EX_CONFIG 78
#endif
Somewhere in libspam.h
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 03:33 AM
10-04-2005 03:33 AM
Re: spamassasin
Lars
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 03:35 AM
10-04-2005 03:35 AM