- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Configure & xmkmf...
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
Discussions
Discussions
Discussions
Forums
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
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
тАО02-28-2005 08:39 PM
тАО02-28-2005 08:39 PM
Configure & xmkmf...
This might be a bit of a stupid question, but I don't normally need to compile software from it's source code.
However, this is one of those exceptions. The installation instructions for the source code advise running configure and xmkmf. The problem is that my system does not seem to have either of these applications, and I was wondering what software I might need to install to get these?
I already have the gcc 3.4.3 compiler.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-28-2005 10:45 PM
тАО02-28-2005 10:45 PM
Re: Configure & xmkmf...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-28-2005 10:50 PM
тАО02-28-2005 10:50 PM
Re: Configure & xmkmf...
There is no configure script within the source, nor is there an xmkmf. I did a find and nothing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-28-2005 10:55 PM
тАО02-28-2005 10:55 PM
Re: Configure & xmkmf...
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B3394BA
as to the configure script, it should have come wiith the source code from the vendor if they are referencig it.
ps is this the same netcat as http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/netcat-1.1.0/ which has pre built binaries for 11.x and 10.20 ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-28-2005 11:26 PM
тАО02-28-2005 11:26 PM
Re: Configure & xmkmf...
The installation/build instructions are crap. The Makefile supllied is crap. However, if you do the following it shoud build.
In the directory you put the source code in ..
Edit Makefile
change
CC = cc $(CFLAGS)
to
CC = gcc $(CFLAGS)
change
hpux:
make -e $(ALL) $(MFLAGS) XFLAGS='-DHPUX' STATIC="-Wl,-a,archive"
to
hpux:
make -e $(ALL) $(MFLAGS) XFLAGS='-DHPUX' STATIC=""
then run
# make hpux
You should get an executable called nc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-01-2005 12:00 AM
тАО03-01-2005 12:00 AM
Re: Configure & xmkmf...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-01-2005 02:41 AM
тАО03-01-2005 02:41 AM
Re: Configure & xmkmf...
Thanks!!