Index
- Introduction
- Arch & compiler overview
- Requirements
- Uncompress distro
- Choose install directory
- Configuring Makefile
- Compiling and installing
- Using the library
- Bugs & support
This library provides some generic, useful tools to manage time, errors,
locks, and so on. This library is part of a bigger project called IT/m,
but you can use it as standalone library. In this section are covered
the installation and configuration steps.
This library has been developed using a g++ 2.95.2 version. Also, It has
been tested in a 2.95.3 version, and it works. My libc library version is
2.1.3. The distribution is a Debian potato 2.2. Finally, my arch is a
intel 686 processor, with a 2.2.17 kernel.
You need at least, the 2.95.2 g++ compiler a gnu makefile and the linux threads
installed. If you plan to mess up with the pgadapter class, you need also a
working postgressql environment, with all the include and library files
propertly installed. For install and setup this RDBMS, see the postgresql
web site. The version of postgresQL used
for test and developement is 7.1.1
The developement platform is a linux (intel) box, so if you plan to migrate
this library to other platform, please send me the patches to include them
in the main developement tree.
The first thing is uncompress the distribution in a directory. For example,
I will use the /tmp directory:
halt% tar xfz libtool-0_85.tar.gz
halt% cd libtool_0_85
halt% pwd
/tmp/libtool_0_85
halt%
Ok, remember this directory, because we need it in the following step.
We have to plan where to install the library. For developement pourpouses,
is better having this libraries separated from the ’production’ ones, so
I usually create a directory in my home, called ’devel’. The only drawback
of this configuration, is that you need to setup the LD_LIBRARY_PATH
environment variable propertly to handle this directory. If you don’t
want to set this variable, you can insert the directory in the
/etc/ld.so.conf file and issue a ’ldconfig’ command.
In this example, I choose as install directory /home/assman/devel. So I
create it first:
halt% mkdir -p /home/assman/devel/{include,lib}
Now we go to the libtool directory and edit the Makefile file. In the example,
the libtool directory is /tmp/libtool_0_85 so:
halt% cd /tmp/libtool_0_85
halt% vi Makefile
First, we find the first variable in the file, BASEDIR and set up to the
libtool directory:
export BASEDIR=/tmp/libtool_0_85
Second, we find the second variable, INSTALLDIR, and set up to the installation
directory:
INSTALLDIR=/home/assman/devel
Now, if you want to add the pgadapter to the library, you have to install the
postgresql’s developement enviroment and uncomment the OPTIONAL_ELEMENTS
entry in the makefile. For proper work, this makefile assumes that the
include files are installed in a place that the compiler can found them
(/usr/include) If not, you have to insert the include directories in the
INCLUDE variable of the Makefile.
Now issue a ’make’ command to compile all the elements of the library, and to
build it. If no problem is found, you can install the library in the choosed
directory. Note that you need to have write permissions in this directory,
so you should become root if you want to install it in a system directory
(e.g. /usr/local). Now, issue a ’make install’. This will copy and create
all the links and required files.
If you plan to use the library for developement, you need to include the
header files in your programs, and link with the library to proper work
Also, you need to setup the LD_LIBRARY_PATH if you want to run the
programs you compile. In our example, a setup for the LD_LIBRARY_PATH
can be:
halt% export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/assman/devel
This library has been in-deep tested, but some bugs can arised. Also, you
can have some ideas, or improvements for this library. Please send me
an email if you found some bug, if you need support installing this
library, of if you port this library to a different platform. Thanks for
your help.