- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Perl Graph
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-17-2006 11:39 AM
10-17-2006 11:39 AM
Perl Graph
Anyone tell me how to install Perl Graph Module in HP-UX 11.11 machine..Basic Perl Programming is already installed in the system.
Regards
Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2006 11:50 AM
10-17-2006 11:50 AM
Re: Perl Graph
Its not clear what particular module you want to install. However, the steps are standard for Perl modules:
http://www.cpan.org/modules/INSTALL.html
Be sure to read the README and INSTALL files that come with your module, too.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2006 06:31 PM
10-17-2006 06:31 PM
Re: Perl Graph
# cd /tmp
# wget http://search.cpan.org/CPAN/authors/id/J/JH/JHI/Graph-0.80.tar.gz
# gzip -d
# perl Makefile.PL
# make test
# make install UNINST=1
GO!
Or, the easier way
# perl -MCPAN -e'install Graph'
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2006 08:34 AM
10-18-2006 08:34 AM
Re: Perl Graph
Thanks for the reply ... i am new to PERL , is there any difference between Perl GD and Perl GD Graph module .. i tried installing as you specified but its giving error while debugging a program.
# perl -d graph.pl
Loading DB routines from perl5db.pl version 1.23
Editor support available.
Enter h or `h h' for help, or `man perldebug' for more help.
Can't locate GD/Graph/bars.pm in @INC (@INC contains: /opt/perl/lib/5.8.3/IA64.ARCHREV_0-thread-multi /opt/perl/lib/5.8.3 /opt/perl/lib/site_perl/5.8.3/IA64.ARCHREV_0-thread-multi /opt/perl/lib/site_perl/5.8.3 /opt/perl/lib/site_perl .) at gr
also if possible could someone tell me how to install this Perl , Perl GD and Perl Graph Module from the scratch.. also the reqd library files..
Thanks for any information being provided..
Regards
Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2006 11:33 AM
10-18-2006 11:33 AM
Re: Perl Graph
Iam Getting the following error while installing.
# perl Makefile.PL
NOTICE: This module requires libgd 2.0.28 or higher.
If you are using Math::Trig 1.01 or lower, it has a bug that
causes a "prerequisite not found" warning to be issued. You may
safely ignore this warning.
Type perl Makefile.PL -h for command-line option summary
Where is libgd installed? [/usr/lib] /tmp
Please choose the features that match how libgd was built:
Build JPEG support? [y] y
Build PNG support? [y] y
Build FreeType support? [y] y
Build GIF support? [y] y
Build support for animated GIFs? [y] y
Build XPM support? [y] y
If you experience compile problems, please check the @INC, @LIBPATH and @LIBS
arrays defined in Makefile.PL and manually adjust, if necessary.
Checking if your kit is complete...
Looks good
Note (probably harmless): No library found for -lgd
Note (probably harmless): No library found for -lfreetype
Note (probably harmless): No library found for -ljpeg
Note (probably harmless): No library found for -lpng
Note (probably harmless): No library found for -lz
Note (probably harmless): No library found for -lXpm
Writing Makefile for GD
Could anyone help me in resolving the issue.
Regards
Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2006 06:17 PM
10-18-2006 06:17 PM
Re: Perl Graph
http://search.cpan.org/~lds/GD-2.35/
You have to resolve each and every dependancy before moving on. Either build them from scratch or get the depots
-lgd
http://hpux.connect.org.uk/hppd/hpux/Development/Libraries/gd-2.0.33/
http://www.boutell.com/gd/
-lfreetype
http://hpux.connect.org.uk/hppd/hpux/Development/Libraries/freetype-2.2.1/
http://freetype.sourceforge.net/index2.html
-ljpeg
http://hpux.connect.org.uk/hppd/hpux/X11/Graphics/jpeg-6b/
ftp://ftp.uu.net/graphics/jpeg/
-lpng
http://hpux.connect.org.uk/hppd/hpux/X11/Graphics/libpng-1.2.12/
http://www.libpng.org/pub/png/libpng.html
-lxpm
http://hpux.connect.org.uk/hppd/hpux/X11/Graphics/xpm-3.4k/
http://www.inria.fr/koala/lehors/xpm.html
-lz
http://hpux.connect.org.uk/hppd/hpux/Misc/zlib-1.2.3/
http://www.zlib.net/
And of course, if you use above depots, you will also need the dreaded iconv and gettext
Enjoy, Have FUN! H.Merijn