-
Steve, adding '-ldl' in Makefile and then doing a 'make' and 'make install' fixed my problems linking the dl* functions. There were four places in Makefile that I modified.
nhoeller@300PL:~/RexxSQL-2.5$ cat Makefile | grep ldl
LD_RXLIB2 = -L/opt/ooRexx/lib/ooRexx -lrexx -lrexxapi -lm -lnsl -ldl
$(LINK) $(LDFLAGS) -o $@ $(SSQLOBJS) $(LIBS) $(DBLIB1) -L/opt/ooRexx/lib/ooRexx...
2009-05-04 15:05:07 UTC in Rexx/SQL
-
Try the suggestion in http://newsgroups.derkeiler.com/Archive/Comp/comp.lang.rexx/2009-01/msg00063.html
I wasn't sure where to put the #undef statement - I tried early in the file and after the '#undef USE_OREXX' statement. I don't think it mattered.
2009-05-04 01:01:00 UTC in Rexx/SQL
-
Steve, what version of ooRexx did you install? Check out https://sourceforge.net/forum/forum.php?thread_id=3235487&forum_id=97066 for issues with Rexx/SQL on ooRexx version 4 and a possible solution.
2009-05-03 12:56:11 UTC in Rexx/SQL
-
Mark, the workaround solved the errors and I have successfully been able to connect to a database and fetch information.
Thanks, Norbert.
2009-04-29 13:45:15 UTC in Rexx/SQL
-
Thanks for the update. I thought it might be an issue with the latest ooRexx, so I installed ooRexx 3.1.2. Although packaged for Ubuntu 6.1.0, it seemed to work properly. Again, './configure ...' appeared to work successfully. 'make' produced only warnings, but then failed with:
gcc -o rexxsql loader.o my.o rxpack.o
t_notmt.o -lpthread -L/opt/ooRexx/lib/ooRexx -lrexx...
2009-04-27 21:23:53 UTC in Rexx/SQL
-
I am trying to install Rexx/SQL 2.5 on Ubuntu 8.10 server with MySQL 5.0.67. I installed oorexx 4.0.0 (Build April 20/2009) and libmysqlclient15-dev. I ran './configure --with-db=mysql --with-rexx=oorexx' - it seem to complete successfully.
Rexx/SQL has now been configured with the following options:
Rexx Interpreter: ooRexx (using oorexx-config)
2009-04-22 22:45:50 UTC in Rexx/SQL