Difference between revisions of "OpenSLP"

From CBLFS
Jump to navigationJump to search
 
(4 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://prdownloads.sourceforge.net/openslp/openslp-{{OpenSLP-Version}}.tar.gz
+
| http://downloads.sourceforge.net/openslp/openslp-{{OpenSLP-Version}}.tar.gz
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Package-Introduction|Service Location Protocol is an IETF standards track protocol that provides a framework to allow networking applications to discover the existence, location, and configuration of networked services in enterprise networks.|http://www.openslp.org/}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 13: Line 15:
 
Compile the package:
 
Compile the package:
  
  ./configure &&
+
  ./configure --prefix=/usr &&
 
  make
 
  make
  
Line 26: Line 28:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" ./configure &&
+
  CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
 
  make
 
  make
  
Line 37: Line 39:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" ./configure --libdir=/usr/lib32 &&
+
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
 
  make
 
  make
  
Line 48: Line 50:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD64}" ./configure --libdir=/usr/lib64 &&
+
  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
 
  make
 
  make
  
Line 54: Line 56:
  
 
  make install
 
  make install
 +
 +
[[Category:Network Utilities]]

Latest revision as of 17:18, 19 March 2009

Download Source: http://downloads.sourceforge.net/openslp/openslp-1.2.1.tar.gz

Introduction to OpenSLP

Service Location Protocol is an IETF standards track protocol that provides a framework to allow networking applications to discover the existence, location, and configuration of networked services in enterprise networks.

Project Homepage: http://www.openslp.org/

Dependencies

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package

make install