api for a different distro

Hi

I need to run an api provided by a company in order to connect/execute
commands on their server. their api linux version supports fedora 2 or
5 but not debian which I already have. now a questions come to
mind. how can I make the api work under debian?

thanks

0

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

API definition (was: ???)

"API" is simply Application Programming Interface - it doesn't make sense to say you are using this between two machines because an API is nothing more than a list of function calls which you can make to interface with something. If you are given some kind of client program to run on your machine then that makes more sense. In that case, you only need to know what other libraries to install to make it work; Fedora Core5 and Debian Etch should be very compatible (except for the strange way Fedora people like to configure things).

To get a list of library dependencies of a program:
ldd program-name
Like:
ldd bash

if you get a .rpm, you can

if you get a .rpm, you can always convert it to a .deb that you can install with dpkg with alien.

...always... heh heh heh ;-)

...always... heh heh heh ;-)

api for a different distro

is this generally the way...
$ alien --to-deb package.rpm
?

Syndicate content