Download FSPLIB 0.10


FSPLIB is implementation of an FSP (file service protocol) stack written in C.
FSPLIB
Developer : Radim Kolar
Size : 0.02Mb
OS : Linux
Requirements : No special requirements.
License : Freeware
Click here to download




FSPLIB project is implementation of an FSP (file service protocol) stack written in C.The library API is very easy to use because it is modeled after the POSIX API. You can use this library for adding FSP support to any C/C++ program.Building:This software can be builded by Scons or by GNU Autotools. Scons building and installing method is prefered. If you want to use autotools, you must create ./configure first byrunning autoreconf -i.Scons building:run: scons [options] [install]for building/installing the library and header file. Unlike Autotoolsyou must add build-time configure options to install target also.Build time configuration:At build time you can configure locking subsystem. There are two lock configuration options.Note:Scons do not uses leading -- before option names. Example: scons with-lockprefix=/tmp/.FSPL install--with-lockprefix=pathSet lock prefix path to (default /tmp/.FSPL). Most users do notneed to change it.--with-locking=none/semop/lockfConfigure type of locking subsytem used. FSP library support currently3 types of locking subsystem.none - no locking usedlockf - use lockf on lock filesemop - use Sys V shared memory and semaphore. Lock file will be still created because of use of ftok, but no locking is done on this file -> it can be on shared filesystem.--prefix=/pathWhere to install builded library and header file. Standard option.--enable-maintainer-mode=yesCompile with more debug code inside What's New in This Release: · configure.ac nuked, fsplib builds now with scons tool only· INSTALL file removed, it was autoconf specific· Makefile.am removed· Don't turn on unreachable code GCC compilation warning, it was wrong for all tested 3.x and 4.x GCC versions· Check return codes from getaddrinfo and turn them into errno used in fsp_open_session· Improved check for valid arguements in function fsp_readdir_native· reported by Kalle Olavi Niemitalo, discovered by witekfl