fmemopen and open_memstream

2008-09-16 Thread Anil Gulecha
Hi,

The functions fmemopen and open_memstream dont seem to be a part of
solaris gcc stdio.h

Specifically the example at http://linux.die.net/man/3/open_memstream
wont compile.

How should I compile it? any particular flags to gcc?

Regards
Anil
___
gnusol-devel mailing list
gnusol-devel@lists.sonic.net
http://lists.sonic.net/mailman/listinfo/gnusol-devel


Re: Graphviz package

2008-09-16 Thread Erast Benson
This is a good question for #ubuntu-devel, I think...

But my take is that we need to provide virtual packages with shlibs
overrides if at all possible.

On Tue, 2008-09-16 at 21:09 +0530, Anil Gulecha wrote:
> Hi,
> 
> i'm running into this issue with graphviz.
> 
> d-devlibdeps \
> --override s/libpathplan4-dev// \
> --override s/libgraph4-dev//\
> --override s/libcdt4-dev//  \
> 
> /root/src/work3/graphviz/graphviz-2.16/debian/libgraphviz-dev.substvars
> \
> /root/src/work3/graphviz/graphviz-2.16/debian/tmp/usr/lib/*.so
> devlibs error: There is no package matching [libc1-dev] and noone
> provides it, please report bug to d-shlibs maintainer
>  --> libexpat1-dev package exists.
>  --> libltdl3-dev package exists.
> devlibs error: There is no package matching [libm2-dev] and noone
> provides it, please report bug to d-shlibs maintainer
>  --> zlib1g-dev package exists.
> make: *** [install] Error 1
> dpkg-buildpackage: failure: debian/rules binary gave error exit status 2
> 
> adding
> --override s/libc1-dev//  --override s/libm2-dev//
> 
> to the list of overrides fixes the issue, but is this the right way of
> going about it?
> 
> Regards
> Anil
> 
> PS : pyconfig.h in the python package also needs to be fixed to below values
>  #define _XOPEN_SOURCE 500
>  #define _XOPEN_SOURCE_EXTENDED 0
> otherwise, c++ files including pyconfig.h will fail.
> ___
> gnusol-devel mailing list
> gnusol-devel@lists.sonic.net
> http://lists.sonic.net/mailman/listinfo/gnusol-devel
> 

___
gnusol-devel mailing list
gnusol-devel@lists.sonic.net
http://lists.sonic.net/mailman/listinfo/gnusol-devel


Graphviz package

2008-09-16 Thread Anil Gulecha
Hi,

i'm running into this issue with graphviz.

d-devlibdeps \
--override s/libpathplan4-dev// \
--override s/libgraph4-dev//\
--override s/libcdt4-dev//  \

/root/src/work3/graphviz/graphviz-2.16/debian/libgraphviz-dev.substvars
\
/root/src/work3/graphviz/graphviz-2.16/debian/tmp/usr/lib/*.so
devlibs error: There is no package matching [libc1-dev] and noone
provides it, please report bug to d-shlibs maintainer
 --> libexpat1-dev package exists.
 --> libltdl3-dev package exists.
devlibs error: There is no package matching [libm2-dev] and noone
provides it, please report bug to d-shlibs maintainer
 --> zlib1g-dev package exists.
make: *** [install] Error 1
dpkg-buildpackage: failure: debian/rules binary gave error exit status 2

adding
--override s/libc1-dev//  --override s/libm2-dev//

to the list of overrides fixes the issue, but is this the right way of
going about it?

Regards
Anil

PS : pyconfig.h in the python package also needs to be fixed to below values
 #define _XOPEN_SOURCE 500
 #define _XOPEN_SOURCE_EXTENDED 0
otherwise, c++ files including pyconfig.h will fail.
___
gnusol-devel mailing list
gnusol-devel@lists.sonic.net
http://lists.sonic.net/mailman/listinfo/gnusol-devel


Re: aspell issues

2008-09-16 Thread Anil Gulecha
On Mon, Sep 15, 2008 at 7:56 PM, Anil Gulecha <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I've been building various aspell packages. Most package fine into
> debs, but almost all have the below issue when installing ( I've
> uploaded the debs anyway.)
>
> Ex:
> Setting up aspell-he (1.0-0-1nexenta1) ...
> Unsupported conversion: Invalid argument at
> /usr/share/perl5/Debian/DictionariesCommon.pm line 399,  line 1.
>
> What could be causing the above?
>
Ok.. I looked further, and this perl module needs to be fixed for Solaris.

my $converter = Text::Iconv->new ($codingsystem, "utf8");
to
my $converter = Text::Iconv->new ($codingsystem, "UTF-8");

How do I find out what package installs the file
/usr/share/perl5/Debian/DictionariesCommon.pm ?

Regards
Anil
___
gnusol-devel mailing list
gnusol-devel@lists.sonic.net
http://lists.sonic.net/mailman/listinfo/gnusol-devel


Re: aspell issues

2008-09-16 Thread Erast Benson
On Tue, 2008-09-16 at 13:03 +0530, Anil Gulecha wrote:
> On Mon, Sep 15, 2008 at 7:56 PM, Anil Gulecha <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > I've been building various aspell packages. Most package fine into
> > debs, but almost all have the below issue when installing ( I've
> > uploaded the debs anyway.)
> >
> > Ex:
> > Setting up aspell-he (1.0-0-1nexenta1) ...
> > Unsupported conversion: Invalid argument at
> > /usr/share/perl5/Debian/DictionariesCommon.pm line 399,  line 1.
> >
> > What could be causing the above?
> >
> Ok.. I looked further, and this perl module needs to be fixed for Solaris.
> 
> my $converter = Text::Iconv->new ($codingsystem, "utf8");
> to
> my $converter = Text::Iconv->new ($codingsystem, "UTF-8");
> 
> How do I find out what package installs the file
> /usr/share/perl5/Debian/DictionariesCommon.pm ?

dpkg -S /usr/share/perl5/Debian/DictionariesCommon.pm

___
gnusol-devel mailing list
gnusol-devel@lists.sonic.net
http://lists.sonic.net/mailman/listinfo/gnusol-devel