Sponsored Content
Full Discussion: jabber 2 install
Top Forums UNIX for Dummies Questions & Answers jabber 2 install Post 60332 by edua on Friday 14th of January 2005 07:16:50 PM
Old 01-14-2005
jabber 2 install

yo! i've decided to run a jabber server and i'm having some install errors. Actually one major error that is pushing me closer and closer to taking a hammer to my machine.

Here is some info:
=====================================================
OS: FreeBSD 5.2.1-Stable

Source: Jabber-2.0s6

Configure cmd: ./configure --prefix=/path/to/jabber2 --enable-mysql --enable-ssl --enable-idn

Make Output error: error: Libidn >= 0.3.0 not found

using the pkg_info cmd i see i have libidn 0.5.12 installed, which is correct cuz i've reinstalled it several times trying to fix this problem.

Any suggestions are appreciated. Thanks in advance. Cheers!
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

starting jabber server on startup

Fedora Core2 Jabberd 1.4.2 quickstart Anyone using a jabber server? Do you know how to have it startup when booting? I can't seem to figure that part out. Jeff (1 Reply)
Discussion started by: lawadm1
1 Replies

2. Linux

jabber server

hi frns i want to install jabber server in Linux enterpise 3 i have got the tar file and i had extract it but after its asking for make install which is not working.I had installed jabber server on /home dir. Mit (0 Replies)
Discussion started by: naik_mit
0 Replies

3. HP-UX

Oracle 9i install: Error in invoking target install of makefile

I receive an error while installing Oracle 9i: Error in invoking target install of makefile /opt/oracle/product/9.2.0/sqlplus/lib/ins_sqlplus.mk Furthermore: $ whoami oracle $ echo $ORACLE_HOME /opt/oracle/product/9.2.0 $ pwd /opt/oracle/product/9.2.0/sqlplus/lib $ ll total... (5 Replies)
Discussion started by: chris2005
5 Replies

4. Linux

install macbook pro fedora10 ???((<<if can install, how to install? >> ))

If may install can Tells everybody ??? (0 Replies)
Discussion started by: kzBSD
0 Replies

5. Solaris

Solaris 10 install dvd drive boots, but not recoginized by install process

I am trying to build a Sun Ultra 10 with solaris 10. This computer is one of a collection that was donated to the non-profic company I work for. All media was wiped before I recieved them, so I am starting from stratch. I downloaded the Solaris 10 ISO and burned a DVD. The computer came with a... (4 Replies)
Discussion started by: gwillhight
4 Replies

6. Red Hat

CentOS 6.1 base install (like FreeBSD base install)?

Hello, What is the simplest way to install CentOS 6.1 with console base-system only using official LiveDVD image on VirtualBox machine? I'd like to get simplest console with network support like FreeBSD base installation. Then, install services which I need. The installer jest extracts the... (2 Replies)
Discussion started by: newbie_develope
2 Replies

7. Red Hat

Install Red Hat 4.2 (Not Enterprise) from install tree

Hi guys I would like to install Red Hat Linux 4.2 on my old box (pIII). However there is a problem: i can't find the .iso image anywhere in the Net, all the material that i've found is (i think) an install tree of the OS. It will be possible for me to install the OS from that install tree? ... (3 Replies)
Discussion started by: mk2soldier
3 Replies

8. AIX

Install software in another directory with smitty install

Hello, I would like to ask if someone knows if is possible to install sofware via smitty or installp in another directorie , or we have to accept the default location? i would like to intall in /opt folder , but smitty installed it in /usr Thanks in advance (4 Replies)
Discussion started by: prpkrk
4 Replies
Net::Jabber::XDB(3pm)					User Contributed Perl Documentation				     Net::Jabber::XDB(3pm)

NAME
Net::Jabber::XDB - Jabber XDB Library SYNOPSIS
Net::Jabber::XDB is a companion to the Net::Jabber module. It provides the user a simple interface to set and retrieve all parts of a Jabber XDB. DESCRIPTION
Net::Jabber::XDB differs from the other Net::Jabber::* modules in that the XMLNS of the data is split out into more submodules under XDB. For specifics on each module please view the documentation for each Net::Jabber::Data::* module. To see the list of avilable namspaces and modules see Net::Jabber::Data. To initialize the XDB with a Jabber <xdb/> you must pass it the XML::Parser Tree array. For example: my $xdb = new Net::Jabber::XDB(@tree); There has been a change from the old way of handling the callbacks. You no longer have to do the above, a Net::Jabber::XDB object is passed to the callback function for the xdb: use Net::Jabber qw(Component); sub xdb { my ($XDB) = @_; . . . } You now have access to all of the retrieval functions available. To create a new xdb to send to the server: use Net::Jabber; $XDB = new Net::Jabber::XDB(); $XDBType = $XDB->NewData( type ); $XDBType->SetXXXXX("yyyyy"); Now you can call the creation functions for the XDB, and for the <data/> on the new Data object itself. See below for the <xdb/> functions, and in each data module for those functions. For more information about the array format being passed to the CallBack please read the Net::Jabber::Client documentation. METHODS
Retrieval functions GetTo() - returns either a string with the Jabber Identifier, GetTo("jid") or a Net::Jabber::JID object for the person who is going to receive the <xdb/>. To get the JID object set the string to "jid", otherwise leave blank for the text string. $to = $XDB->GetTo(); $toJID = $XDB->GetTo("jid"); GetFrom() - returns either a string with the Jabber Identifier, GetFrom("jid") or a Net::Jabber::JID object for the person who sent the <xdb/>. To get the JID object set the string to "jid", otherwise leave blank for the text string. $from = $XDB->GetFrom(); $fromJID = $XDB->GetFrom("jid"); GetType() - returns a string with the type <xdb/> this is. $type = $XDB->GetType(); GetID() - returns an integer with the id of the <xdb/>. $id = $XDB->GetID(); GetAction() - returns a string with the action <xdb/> this is. $action = $XDB->GetAction(); GetMatch() - returns a string with the match <xdb/> this is. $match = $XDB->GetMatch(); GetError() - returns a string with the text description of the error. $error = $XDB->GetError(); GetErrorCode() - returns a string with the code of error. $errorCode = $XDB->GetErrorCode(); GetData() - returns a Net::Jabber::Data object that contains the data in the <data/> of the <xdb/>. $dataTag = $XDB->GetData(); GetDataXMLNS() - returns a string with the namespace of the data for this <xdb/>, if one exists. $xmlns = $XDB->GetDataXMLNS(); Creation functions SetXDB(to=>string|JID, - set multiple fields in the <xdb/> at one from=>string|JID, time. This is a cumulative and over id=>string, writing action. If you set the "to" type=>string, attribute twice, the second setting is action=>string, what is used. If you set the status, and match=>string) then set the priority then both will be in errorcode=>string, the <xdb/> tag. For valid settings read the error=>string) specific Set functions below. $XDB->SetXDB(type=>"get", to=>"bob@jabber.org", data=>"info"); $XDB->SetXDB(to=>"bob@jabber.org", errorcode=>403, error=>"Permission Denied"); SetTo(string) - sets the to attribute. You can either pass a string SetTo(JID) or a JID object. They must be a valid Jabber Identifiers or the server will return an error message. (ie. jabber:bob@jabber.org, etc...) $XDB->SetTo("bob@jabber.org"); SetFrom(string) - sets the from attribute. You can either pass a string SetFrom(JID) or a JID object. They must be a valid Jabber Identifiers or the server will return an error message. (ie. jabber:bob@jabber.org, etc...) $XDB->SetFrom("me@jabber.org"); SetType(string) - sets the type attribute. Valid settings are: get request information set set information result results of a get error there was an error $XDB->SetType("set"); SetAction(string) - sets the error code of the <xdb/>. $XDB->SetAction("foo"); SetMatch(string) - sets the error code of the <xdb/>. $XDB->SetMatch("foo"); SetErrorCode(string) - sets the error code of the <xdb/>. $XDB->SetErrorCode(403); SetError(string) - sets the error string of the <xdb/>. $XDB->SetError("Permission Denied"); NewData(string) - creates a new Net::Jabber::Data object with the namespace in the string. In order for this function to work with a custom namespace, you must define and register that namespace with the XDB module. For more information please read the documentation for Net::Jabber::Data. $dataObj = $XDB->NewData("jabber:xdb:auth"); $dataObj = $XDB->NewData("jabber:xdb:roster"); Reply(hash) - creates a new XDB object and populates the to/from fields. If you specify a hash the same as with SetXDB then those values will override the Reply values. $xdbReply = $XDB->Reply(); $xdbReply = $XDB->Reply(type=>"result"); Test functions DefinedTo() - returns 1 if the to attribute is defined in the <xdb/>, 0 otherwise. $test = $XDB->DefinedTo(); DefinedFrom() - returns 1 if the from attribute is defined in the <xdb/>, 0 otherwise. $test = $XDB->DefinedFrom(); DefinedID() - returns 1 if the id attribute is defined in the <xdb/>, 0 otherwise. $test = $XDB->DefinedID(); DefinedType() - returns 1 if the type attribute is defined in the <xdb/>, 0 otherwise. $test = $XDB->DefinedType(); DefinedAction() - returns 1 if the action attribute is defined in the <xdb/>, 0 otherwise. $test = $XDB->DefinedAction(); DefinedMatch() - returns 1 if the match attribute is defined in the <xdb/>, 0 otherwise. $test = $XDB->DefinedMatch(); DefinedError() - returns 1 if <error/> is defined in the <xdb/>, 0 otherwise. $test = $XDB->DefinedError(); DefinedErrorCode() - returns 1 if the code attribute is defined in <error/>, 0 otherwise. $test = $XDB->DefinedErrorCode(); AUTHOR
By Ryan Eatmon in May of 2001 for http://jabber.org.. COPYRIGHT
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2004-08-17 Net::Jabber::XDB(3pm)
All times are GMT -4. The time now is 09:34 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy