Re: GSoC: Libpkg, package tools

2010-05-03 Thread Leinier Cruz Salfran
On Sat, May 1, 2010 at 3:32 PM, David Forsythe dfors...@freebsd.org wrote: Hi all, hello david I'm David Forsythe, and I'll be working on completing libpkg (started during Summer of Code 2009) and putting together some production ready package tools.  My mentor will be Tim Kientzle.

there is a way to avoid strict libraries linking?

2010-04-14 Thread Leinier Cruz Salfran
hello all fbsd devs i want to know if there is a possibility to avoid current strict libraries linking .. i will explain myself for example .. i have installed 'gtk' (2.18) that depends on library 'libpng.so.5' (png) .. and i will upgrade 'png' port to a superior version that install the library

Re: there is a way to avoid strict libraries linking?

2010-04-14 Thread Leinier Cruz Salfran
On Wed, Apr 14, 2010 at 12:32 PM, Tom Evans tevans...@googlemail.com wrote: On Wed, Apr 14, 2010 at 5:23 PM, Leinier Cruz Salfran salfrancl.lis...@gmail.com wrote: hello all fbsd devs i want to know if there is a possibility to avoid current strict libraries linking .. i will explain myself

Re: there is a way to avoid strict libraries linking?

2010-04-14 Thread Leinier Cruz Salfran
On Wed, Apr 14, 2010 at 12:42 PM, Gary Jennejohn gljennj...@googlemail.com wrote: On Wed, 14 Apr 2010 12:23:16 -0400 Leinier Cruz Salfran salfrancl.lis...@gmail.com wrote: hello all fbsd devs i want to know if there is a possibility to avoid current strict libraries linking .. i

Re: there is a way to avoid strict libraries linking?

2010-04-14 Thread Leinier Cruz Salfran
On Wed, Apr 14, 2010 at 1:48 PM, Dan Nelson dnel...@allantgroup.com wrote: In the last episode (Apr 14), Leinier Cruz Salfran said: i want to know if there is a possibility to avoid current strict libraries linking ..  i will explain myself for example .. i have installed 'gtk' (2.18

Re: there is a way to avoid strict libraries linking?

2010-04-14 Thread Leinier Cruz Salfran
On Wed, Apr 14, 2010 at 2:17 PM, Mike Meyer m...@mired.org wrote: On Wed, 14 Apr 2010 12:44:32 -0400 Leinier Cruz Salfran salfrancl.lis...@gmail.com wrote: On Wed, Apr 14, 2010 at 12:32 PM, Tom Evans tevans...@googlemail.com wrote: On Wed, Apr 14, 2010 at 5:23 PM, Leinier Cruz Salfran

Re: there is a way to avoid strict libraries linking?

2010-04-14 Thread Leinier Cruz Salfran
On Wed, Apr 14, 2010 at 2:50 PM, Freddie Cash fjwc...@gmail.com wrote: On Wed, Apr 14, 2010 at 11:18 AM, Leinier Cruz Salfran salfrancl.lis...@gmail.com wrote: On Wed, Apr 14, 2010 at 1:48 PM, Dan Nelson dnel...@allantgroup.com wrote: Just because you Anyway, the FreeBSD port maintainers

Re: make pkg_install suite reusable, please

2010-04-12 Thread Leinier Cruz Salfran
On Sun, Apr 11, 2010 at 8:34 PM, Marcin Wisnicki mwisnicki+free...@gmail.com wrote: On Sun, 11 Apr 2010 12:37:27 +0100, Robert Watson wrote: On Fri, 9 Apr 2010, Alexander Churanov wrote: 2010/4/9 Leinier Cruz Salfran salfrancl.lis...@gmail.com i want to ask you one thing: can you make

make pkg_install suite reusable, please

2010-04-09 Thread Leinier Cruz Salfran
hello fbsd devs i want to ask you one thing: can you make the 'pkg_install' suite reusable .. means install 'libinstall.a' as a shared object in order to make it reusable by others devs i'm developing a packages manager and i borrow almost all 'pkg_install' in order to be able to do things

c question

2010-04-09 Thread Leinier Cruz Salfran
hello all i want to know your oppinions about this: - use a matrix is faster than use a linked list? example: char *szColumnName[10]; unsigned short iColumnAge[10]; struct _llList { struct _llList *prev, *next; char szName[64]; unsigned short iAge; };

Re: make pkg_install suite reusable, please

2010-04-09 Thread Leinier Cruz Salfran
On Fri, Apr 9, 2010 at 10:38 AM, Alexander Churanov alexanderchura...@gmail.com wrote: Leinier, I forgot to mention that character-mode IO also resolves all binary compatibility issues and makes possible implementing wrappers for any programming language much easier. Alexander Churanov

Re: c question

2010-04-09 Thread Leinier Cruz Salfran
On Fri, Apr 9, 2010 at 10:52 AM, Alexander Churanov alexanderchura...@gmail.com wrote: 2010/4/9 Leinier Cruz Salfran salfrancl.lis...@gmail.com - use a matrix is faster than use a linked list? example: char *szColumnName[10]; unsigned short iColumnAge[10]; struct _llList {  struct