You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(2) |
Feb
(4) |
Mar
(10) |
Apr
(2) |
May
(2) |
Jun
(2) |
Jul
(9) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
(9) |
2005 |
Jan
(2) |
Feb
|
Mar
(8) |
Apr
(46) |
May
(16) |
Jun
(69) |
Jul
(27) |
Aug
(12) |
Sep
|
Oct
(11) |
Nov
|
Dec
(14) |
2006 |
Jan
(22) |
Feb
(4) |
Mar
(9) |
Apr
(1) |
May
|
Jun
(4) |
Jul
|
Aug
(1) |
Sep
(6) |
Oct
(5) |
Nov
(2) |
Dec
(16) |
2007 |
Jan
(1) |
Feb
|
Mar
(5) |
Apr
(3) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
(2) |
Nov
(2) |
Dec
(3) |
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(14) |
Sep
(10) |
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
(3) |
Mar
|
Apr
(2) |
May
(7) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
(2) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Mario T. O. <em...@es...> - 2003-12-13 15:29:59
|
El Sábado, 13 de Diciembre de 2003 16:21, Mario Teijeiro Otero escribió: Excuse me. I sent a wrong patch :-(. Now is the good ;) |
From: Mario T. O. <em...@es...> - 2003-12-13 15:21:45
|
Hello, I'm not a debian developer, but I build the direcoty "debian" for rlib-1.1.5. For build it, it is necesary apply a patch that I sent to Bob Doean three days ago. The list of packages that generate from source es: rlib_1.1.5-1_i386.deb rlib-dev_1.1.5-1_all.deb rlib-mysql_1.1.5-1_i386.deb rlib-odbc_1.1.5-1_i386.deb rlib-pg_1.1.5-1_i386.deb rlib-php_1.1.5-1_i386.deb rlib-python_1.1.5-1_i386.deb . On the other hand, Did try someone port rlib to Win32 platform? I'm tring it and I near obtaining it. Basically it consists of put #defines: #ifdef HAVE_UNISTD_H #include <unistd.h> #endif #ifdef WIN32 # include <windows.h> # define DLLFUNC _declspec(dllexport) # define dlopen(x,y) LoadLibrary(x) # define dlclose FreeLibrary # define dlsym(x,y,z) z = (void *)GetProcAddress(x,y) # define LLONG __int64 # define strcasecmp(x,y) strcmpi(x,y) # define bzero(p,s) memset(p,0,s) #else # include <dlfcn.h> # define LLONG long long #endif etc..., Are you interesting to port it to win32?. I'am doing but I need a platform of reports that works on Linux and Win32. Regards. |
From: Bob D. <bd...@si...> - 2003-09-15 15:04:46
|
Hey Justin, Thanks for the patch.. but that was not the problem... The hardcoded user names and passwords were not being used in any alive code.. Also, you need to mysql_init(*mysql) before you mysql_real_connect I applied your patch, but also removed the dead code and changed it to mysql_real_connect On Mon, 2003-09-15 at 10:09, Justin Hammond wrote: > hey, > I wanted to give your rlib a whirl, but alas, couldn't get it working. > firstly, it wouldn't link correctly. I use mysql 4.1 and u have to use > mysql_real_connect instead of mysql_connect > second, you should specify that you need to have the shared version of > cpdflib installed, the static version wont link with rlib either. > > finally, its still not working. I think its partly due to the hardcoded > usernames/db etc etc etc > > attached is a small patch that I tried to use to get it working. > > any hints I can use to try and get it running? |