- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- X-Libraries on 11.23 /User Inerface for debugging ...
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
06-09-2005 11:10 PM
06-09-2005 11:10 PM
I want to install ddd, a GUI for the Perl-debugger. On configure it requires
checking for X... no
checking whether libXext is in the standard X library path... no
checking whether libXp is in the standard X library path... no
checking whether libXmu is in the standard X library path... no
checking for Motif... libraries /usr/lib, headers (none)
checking for Xpm... libraries (none), headers (none)
checking for Athena... libraries (none), headers (none)
checking whether compiling X headers requires -fpermissive... no
checking for XOpenDisplay in -lX11... no
configure: error: The X11 library '-lX11' could not be found.
Please use the configure options '--x-includes=DIR'
and '--x-libraries=DIR' to specify the X location.
See the files 'config.log' and 'ddd/config.log'
for further diagnostics.
, but I don't know where the X libraries on this UNIX are.
Maybe there is a better way for debugging?
Thank you.
Solved! Go to Solution.
- Tags:
- Perl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2005 11:18 PM
06-09-2005 11:18 PM
SolutionYou can check it as,
find /usr/lib -name "libXmu*". You have to get a library atleast. Install X window packages.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2005 11:21 PM
06-09-2005 11:21 PM
Re: X-Libraries on 11.23 /User Inerface for debugging Perl
/usr/lib/hpux32/libXmu.so.1
/usr/lib/hpux64/libXmu.so.1
/usr/lib/pa20_64/libXmu.2
/usr/lib/X11R4/libXmu.sl
/usr/lib/libXmu.2
There should be X-libraries, because I have CDE running. But whether these are, waht ddd looks for, I really don't know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2005 11:27 PM
06-09-2005 11:27 PM
Re: X-Libraries on 11.23 /User Inerface for debugging Perl
# which X
Try to configure as,
./configure
It will start configure.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2005 11:34 PM
06-09-2005 11:34 PM
Re: X-Libraries on 11.23 /User Inerface for debugging Perl
but even If I give this path , I get
checking for XOpenDisplay in -lX11... no
configure: error: The X11 library '-lX11' could not be found.
Please use the configure options '--x-includes=DIR'
and '--x-libraries=DIR' to specify the X location.
See the files 'config.log' and 'ddd/config.log'
for further diagnostics.
What is this "standard X library path?"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2005 11:43 PM
06-09-2005 11:43 PM
Re: X-Libraries on 11.23 /User Inerface for debugging Perl
Is your machine is having /usr/lib/X11R4/libX11.sl? Then include it will work.
htht.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2005 11:49 PM
06-09-2005 11:49 PM
Re: X-Libraries on 11.23 /User Inerface for debugging Perl
--x-libraries=/usr/lib/X11R4/, but still doesn't work. The same problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2005 11:54 PM
06-09-2005 11:54 PM
Re: X-Libraries on 11.23 /User Inerface for debugging Perl
checking for X... libraries /usr/lib/X11R4, headers /usr/bin/X11
but the other libs are still missing..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2005 11:59 PM
06-09-2005 11:59 PM
Re: X-Libraries on 11.23 /User Inerface for debugging Perl
Like,
find /usr -name "*Motif*"
find /usr -name "*Xpm*"
and include directory in the --x-libraries= options.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2005 12:08 AM
06-10-2005 12:08 AM
Re: X-Libraries on 11.23 /User Inerface for debugging Perl
One more question, how do I include more direcotries after --x-libraries=...., I mean syntax?