Bug#710544: Missing pkg-config file liburcu-bp.pc

2013-05-31 Thread Francis Giraldeau
Package: liburcu-dev
Version: 0.7.6-2

The file liburcu-bp.pc should be included in package liburcu-dev because
it's referenced in lttng-ust.pc from package liblttng-ust-dev.

The file is missing from testing package.


Bug#677039: libpoco-dev: Poco should be compiled with IPv6 support

2012-06-11 Thread Francis Giraldeau
Package: libpoco-dev
Version: 1.3.6p1-1ubuntu3
Severity: wishlist

Dear Maintainer,

Poco can be configured with IPv6, but it's not enabled by default in Debian. I
would suggest to add the same SYSFLAGS as Darwin for the compiler options to
enable IPv6 support.

To do so, in the file build/config/Linux append -DPOCO_HAVE_IPv6 to SYSFLAGS

Thanks!

Francis

-- System Information:
Debian Release: wheezy/sid
  APT prefers precise-updates
  APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 
'precise'), (100, 'precise-backports')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-24-generic (SMP w/4 CPU cores)
Locale: LANG=fr_CA.UTF-8, LC_CTYPE=fr_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libpoco-dev depends on:
ii  libpococrypto9  1.3.6p1-1ubuntu3
ii  libpocodata91.3.6p1-1ubuntu3
ii  libpocofoundation9  1.3.6p1-1ubuntu3
ii  libpocomysql9   1.3.6p1-1ubuntu3
ii  libpoconet9 1.3.6p1-1ubuntu3
ii  libpoconetssl9  1.3.6p1-1ubuntu3
ii  libpocoodbc91.3.6p1-1ubuntu3
ii  libpocosqlite9  1.3.6p1-1ubuntu3
ii  libpocoutil91.3.6p1-1ubuntu3
ii  libpocoxml9 1.3.6p1-1ubuntu3
ii  libpocozip9 1.3.6p1-1ubuntu3

libpoco-dev recommends no packages.

Versions of packages libpoco-dev suggests:
ii  libpoco-doc none
ii  libpococrypto9-dbg  1.3.6p1-1ubuntu3
ii  libpocodata9-dbg1.3.6p1-1ubuntu3
ii  libpocofoundation9-dbg  1.3.6p1-1ubuntu3
ii  libpocomysql9-dbg   1.3.6p1-1ubuntu3
ii  libpoconet9-dbg 1.3.6p1-1ubuntu3
ii  libpoconetssl9-dbg  1.3.6p1-1ubuntu3
ii  libpocoodbc9-dbg1.3.6p1-1ubuntu3
ii  libpocosqlite9-dbg  1.3.6p1-1ubuntu3
ii  libpocoutil9-dbg1.3.6p1-1ubuntu3
ii  libpocoxml9-dbg 1.3.6p1-1ubuntu3
ii  libpocozip9-dbg 1.3.6p1-1ubuntu3

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#677039: Enable by default IPv6 for Linux upstream

2012-06-11 Thread Francis Giraldeau
Added a patch upstream to enable IPv6 by default on Linux:

Sourceforge patch entry:
https://sourceforge.net/tracker/?func=detailaid=3534307group_id=132964atid=725711

Related entry in the forum:
http://pocoproject.org/forum/viewtopic.php?f=10t=5356p=8952hilit=IPv6#p8952

Thanks!

Francis


Bug#469769: Closes #469769

2009-01-05 Thread Francis Giraldeau
This bug has a fix released in the current testing.

Francis

-- 
Francis Giraldeau, Ing jr.
Analyste Infrastructure
Directeur Qualité
Téléphone : (819) 780-8955 poste 
Sans frais : 1-800-996-8955
Télécopieur : (819) 780-8871

Revolution Linux Inc.
2100 King ouest - bureau 260
Sherbrooke (Québec)
J1J 2E8 CANADA

http://www.revolutionlinux.com

Toutes les opinions et les prises de position exprimees dans ce courriel
sont celles de son auteur et ne representent pas necessairement celles
de Revolution Linux

Any views and opinions expressed in this email are solely those of the
author and do not necessarily represent those of Revolution Linux





--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#407931: Comment about the patch

2007-08-19 Thread Francis Giraldeau

Hi,

Since OpenOffice truncates the file with the exact file size, no shrink 
or expansion is necessary. It simplify the code a lot, and this is 
enough to make it work.


I will wrote on the samba mailing list to get feedback about how to 
implement truncate with libsmb.


Have a nice day,

--
Francis Giraldeau



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#407931: Version 0.8.6 fix

2007-08-19 Thread Francis Giraldeau

Hi,

I just looked to the upstream project, and the patch to handle 
openoffice truncate operation is there.


http://www.ricardis.tudelft.nl/~vincent/fusesmb/download/fusesmb-0.8.6.tar.gz

--
Francis Giraldeau, Ing jr.




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#407931: Implementation of truncate

2007-05-31 Thread Francis Giraldeau
;
+}
+ 
+// Initialise variables for the next step
+memset(mem, 0, BKSIZE);
+memset(fi_smb_path, 0, sizeof(fi_smb_path));
+memset(fi_smb_path_tmp, 0, sizeof(fi_smb_path_tmp));
+fi_smb_path.flags = O_WRONLY | O_CREAT;
+fi_smb_path_tmp.flags = O_RDONLY;
+   
+// Empty the source file
+if ( (ret = fusesmb_empty(smb_path))  0)
+{
+return ret;
+}
+
+// Copy data back
+// Well, if there is an error here, the file will be lost.
+for(i=0; i  nb_blocs; i++)
+{
+if ( (ret = fusesmb_read(smb_path_tmp, mem, BKSIZE, i*BKSIZE,
fi_smb_path_tmp))  0)
+{
+free(mem);
+   return ret;
+}
+if ( (ret = fusesmb_write(smb_path, mem, BKSIZE, i*BKSIZE,
fi_smb_path))  0)
+{
+   free(mem);
+   return ret;
+}
+}
+
+if ( (ret = fusesmb_read(smb_path_tmp, mem, nb_remainder, i*BKSIZE,
fi_smb_path_tmp))  0)
+{
+free(mem);
+return ret;
+}
+if ( (ret = fusesmb_write(smb_path, mem, nb_remainder, i*BKSIZE,
fi_smb_path))  0)
+{
+free(mem);
+return ret;
+}
+
+free(mem);
+/*
+ * Verify return codes
+ *
+for(i=0; i  nb_blocs; i++)
+{
+fusesmb_read(smb_path_tmp, mem, BKSIZE, i*BKSIZE,
fi_smb_path_tmp);
+fusesmb_write(smb_path, mem, BKSIZE, i*BKSIZE, fi_smb_path);
+}
+
+fusesmb_read(smb_path_tmp, mem, nb_remainder, i*BKSIZE,
fi_smb_path_tmp);
+fusesmb_write(smb_path, mem, nb_remainder, i*BKSIZE, fi_smb_path);
+*/
+
+// clean up
+// remove temp file
+pthread_mutex_lock(ctx_mutex);
+if (ctx-unlink(ctx, smb_path_tmp)  0)
+{
 pthread_mutex_unlock(ctx_mutex);
-return 0;
+return -errno;
 }
-return -ENOTSUP;
+pthread_mutex_unlock(ctx_mutex);
+
+
+return 0;
+   
 }

-- 
Francis Giraldeau, Ing jr.
Analyste Infrastructure
Directeur Qualité
Téléphone : (819) 780-8955 poste 
Sans frais : 1-800-996-8955
Télécopieur : (819) 780-8871

Revolution Linux Inc.
2100 King ouest - bureau 260
Sherbrooke (Québec)
J1J 2E8 CANADA

http://www.revolutionlinux.com

Toutes les opinions et les prises de position exprimees dans ce courriel
sont celles de son auteur et ne representent pas necessairement celles
de Revolution Linux

Any views and opinions expressed in this email are solely those of the
author and do not necessarily represent those of Revolution Linux