- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- compile xinetd on HP-UX11.0
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
03-20-2002 05:10 PM
03-20-2002 05:10 PM
# make
for lib in sio str misc xlog pset pq timer ; do make -C libs/src/$lib CC=cc CFLAGS='-g -I../../include' insta
; done
Make: Unknown flag argument C. Stop.
*** Error exit code 1
Stop.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2002 05:50 PM
03-20-2002 05:50 PM
Re: compile xinetd on HP-UX11.0
make -C
Unfortunately, there is no equivalent in HP's make, you'll either have to get the gcc compiler or rewrite the makefile to explicitly cd to the appropriate directories.
best of compiling
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2002 07:12 PM
03-20-2002 07:12 PM
Re: compile xinetd on HP-UX11.0
# make
for lib in sio str misc xlog pset pq timer ; do make -C libs/src/$lib CC=/usr/local/bin/gcc CFLAGS='-g -I../../
include' install; done
Make: Unknown flag argument C. Stop.
*** Error exit code 1
Stop.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 03:25 AM
03-21-2002 03:25 AM
Solutionhttp://hpux.connect.org.uk/hppd/hpux/Gnu/make-3.79.1/
Once its installed, ensure the gnu make is called instead of HP's. You may need to put the gmake bin directory at the front of your PATH.
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 05:41 PM
03-21-2002 05:41 PM
Re: compile xinetd on HP-UX11.0
I download the gmake, the problem have been solved:)
juli