Difference between revisions of "MCS"
Bigdissaved (talk | contribs) |
|||
Line 2: | Line 2: | ||
|-valign="top" | |-valign="top" | ||
!Download Source: | !Download Source: | ||
− | | http://distfiles.atheme.org/libmcs-{{MCS-Version}}. | + | | http://distfiles.atheme.org/libmcs-{{MCS-Version}}.tgz |
|} | |} | ||
Revision as of 14:23, 1 June 2008
Download Source: | http://distfiles.atheme.org/libmcs-0.7.1.tgz |
---|
Introduction to MCS
mcs is a library and set of userland tools which abstract the storage of configuration settings away from userland applications.
It is hoped that by using mcs and adding mcs support to various applications, that the application will fit in better with it's desktop environment.
There have been other projects like this before (such as GConf), but unlike those projects, mcs strictly handles abstraction. It does not impose any specific data storage requirement, nor is it tied to any desktop environment or software suite.
Because mcs is licensed under the three-clause BSD license, it is hoped that most applications will adopt it.
Project Homepage: http://www.atheme.org/projects/mcs.shtml
Dependencies
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" GXX="g++ ${BUILD32}" PKG_CONFIG_PATH=$PKG_CONFIG_PATH32 \ ./configure --prefix=/usr && make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" GXX="g++ ${BUILDN32}" PKG_CONFIG_PATH=$PKG_CONFIG_PATHN32 \ ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package
make install &&
64Bit
Compile the package:
CC="gcc ${BUILD64}" GXX="g++ ${BUILD64}" PKG_CONFIG_PATH=$PKG_CONFIG_PATH64 \ ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package
make install &&