perl_dbi_nulls_test.pl

2014-07-09 Thread Christian Metzger
DBI VERSION: 1.616 DBD::mysql VERSION: 4.027 Using connect arguments, db version: 5.5.37-MariaDB-wsrep = Drop table dbi__null_test_tmp, if it already exists... = Create table dbi__null_test_tmp... = Insert 4 rows into the table... Inserting values (1, Homer) Inserting values (2, NULL)

DBD::Informix

2014-07-09 Thread Helmut
Hi all, i have problems building DBD::Informix. Running Makefile.pl ends up with .. /opt/IBM/informix/lib/libifasf.so: undefined reference to `dlopen' /opt/IBM/informix/lib/esql/libifos.so: undefined reference to `crypt' /opt/IBM/informix/lib/libifasf.so: undefined reference to `dlclose'

Re: DBD::Informix

2014-07-09 Thread Martin J. Evans
On 09/07/14 15:58, Helmut wrote: Hi all, i have problems building DBD::Informix. Running Makefile.pl ends up with .. /opt/IBM/informix/lib/libifasf.so: undefined reference to `dlopen' /opt/IBM/informix/lib/esql/libifos.so: undefined reference to `crypt' /opt/IBM/informix/lib/libifasf.so:

Re: DBD::Informix

2014-07-09 Thread Jonathan Leffler
You may need to get an extra compilation flag, -ldl, added to the link line, though it is a little surprising to find that's necessary. That might solve dlopen, dlclose, dlerror, dlsym. Missing crypt is more puzzling; maybe there's a library -lcrypt or something that's needed. It is very odd,

Re: DBD::Informix

2014-07-09 Thread Helmut
libdl (libdl-2.19.so) and libcrypt (libcrypt-2.19.so) are in /usr/lib64 which is in turn a link to /usr/lib Helmut Am 09.07.2014 18:27, schrieb Jonathan Leffler: You may need to get an extra compilation flag, -ldl, added to the link line, though it is a little surprising to find that's