fehQlibs

January 25, 2023 Roberto Puzzanghera 0 comments

  • More info here
  • Version: fehQlibs-22

fehQlibs are supplementary C libraries by Erwin Hoffmann. They are needed for ucspi-tcp6 and ucspi-ssl.

Install as follows in /usr/local:

FEQLIBS_VER=22
cd /usr/local
wget https://www.fehcom.de/ipnet/fehQlibs/fehQlibs-${FEQLIBS_VER}.tgz
tar xzf fehQlibs-${FEQLIBS_VER}.tgz 
chown -R root:root fehQlibs-${FEQLIBS_VER}
cd fehQlibs-${FEQLIBS_VER}

Change the installation folder modifing the file conf-build as

LIBDIR=/usr/local/lib 
HDRDIR=/usr/local/include 

Compile and install:

make 
make shared
make install 

cd .. 
ln -s fehQlibs-${FEQLIBS_VER} qlibs

Since the qlibs have to be found when compiling ucspi-tcp6 we have to append them to our /etc/ld.so.conf

echo "/usr/local/qlibs" >> /etc/ld.so.conf
ldconfig

Add a comment