-
Same issue stands also for 5.0.12 tarball.
2009-10-21 13:30:13 UTC in OpenLink Virtuoso (Open-Source Edition)
-
Changing the first line of debian/changelog to : "virtuoso-opensource (6.0.0-1) unstable; urgency=low" fixes the issue, and a virtuoso-opensource_6.0.0-1_i386.deb is generated fine (with dpkg-buildpackage -us -uc -rfakeroot)
2009-10-21 11:56:42 UTC in OpenLink Virtuoso (Open-Source Edition)
-
If trying to rebuild the Debian package from the 6.0 tarbal, it generates a 5.0.9-rc6-1 Debian package.
The versioning would need to be updated... unless the debian/ subdir is now obsolete and must be replaced, given the current efforts at an official Debian packaging (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508048)
Thanks in advance.
2009-10-20 14:46:45 UTC in OpenLink Virtuoso (Open-Source Edition)
-
When trying to do mapping on postgresql columns which are enums, one gets such errors :
de.fuberlin.wiwiss.d2rq.D2RQException: Unsupported database type code (1111) for column bugs.severity
for example on a table which is :
CREATE TABLE archived_bugs (
...
severity bugs_severity,
...
);
with such an enum:
CREATE TYPE bugs_severity AS ENUM (
'fixed',
'wishlist'...
2009-03-16 14:27:02 UTC in D2RQ and D2R Server
-
Trying to use d2rq:resultSizeLimit 500; with a postgresql database doesn't work.
There are syntax errors on queries issued against the RDBMS, after the 500 in "SELECT TOP 500 ...".
Best regards,
2009-03-16 13:17:28 UTC in D2RQ and D2R Server
-
Not so sure, but maybe this is a solution ? :
54c56,57
< IANA_RESERVED="IANA - Reserved"
---
> #IANA_RESERVED="IANA - Reserved"
> IANA_RESERVED="UNALLOCATED".
2008-04-10 09:32:32 UTC in FireHOL
-
The problem happens when trying to compile on Debian box with gaim-dev package installed, which won't include internal.h.
It's probably quite easy to correct that, though.
I've experienced the same thing on the other OSD plugin, and came up with a pretty simple patch to correct the problem.
See http://sourceforge.net/tracker/index.php?func=detail&aid=1539267&group_id=96242&atid=614147.
2007-03-31 18:09:53 UTC in Gaim OSD Plugin
-
Hmm... ok, I think I found what's wrong... the internal.h file is not shipped in the library in Debian... the plugin was probably written for other setup where internal.h is installed in /usr/include/...
Anyway, I've finally successed in compiling the plugin and make it work, with the following patch.
Hope this helps.
--- cvs/gaimnosd/src/gaimnosd.c 2005-03-25 01:43:17.000000000 +0100...
2007-03-31 17:29:41 UTC in gaim-nosd
-
At least something like the following patch helps to compile... although it seems it won't run out of ~/.gaim/plugins/gaimnosd.so
--- cvs/gaimnosd/src/gaimnosd.c 2005-03-25 01:43:17.000000000 +0100
+++ src/gaimnosd.c 2007-03-31 17:46:43.000000000 +0200
@@ -3,7 +3,7 @@
*
*/
-#include "internal.h"
+/*#include "internal.h" */
#include "util.h"
#include "connection.h"...
2007-03-31 16:06:03 UTC in gaim-nosd
-
gaimosd.h:41:22: error: internal.h: No such file or directory
Too bad :(.
2007-03-31 15:29:47 UTC in Gaim OSD Plugin