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. |