<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel">
    <title>gmane.comp.programming.swig.devel</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22558"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22557"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22556"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22555"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22554"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22553"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22552"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22551"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22550"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22549"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22548"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22547"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22546"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22545"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22544"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22543"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22542"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22541"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22540"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22539"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22558">
    <title>Re: Fw: Special Qt mode for SWIG</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22558</link>
    <description>&lt;pre&gt;

    I'm not really sure about slots but signals do matter. Target languages may have specific features for analogous functionality (such as events in C#). So, knowing that a function is a signal gives the opportunity for better integration.
    Dimitar



________________________________
 From: William S Fulton &amp;lt;wsf&amp;lt; at &amp;gt;fultondesigns.co.uk&amp;gt;
To: Peter McKinna &amp;lt;peter.mckinna&amp;lt; at &amp;gt;gmail.com&amp;gt; 
Cc: Dimitar Dobrev &amp;lt;dpldobrev&amp;lt; at &amp;gt;yahoo.com&amp;gt;; "swig-devel&amp;lt; at &amp;gt;lists.sourceforge.net" &amp;lt;swig-devel&amp;lt; at &amp;gt;lists.sourceforge.net&amp;gt; 
Sent: Friday, May 17, 2013 8:53 PM
Subject: Re: [Swig-devel] Fw: Special Qt mode for SWIG
 

From my quick look at the QT macros, a lot of them can be #define'd 
away to nothing. Some, like Q_PROPERTY can probably be expanded into 
equivalent accessors (get/set methods) on the class, or accessors into a 
%extend block by defining a SWIG/C macro to write the accessors.

From what I can make out Q_SIGNALS/Q_SLOTS/Q_SIGNAL/Q_SLOT macros 
expand into keywords signal/slot/signal/slot. These are clearly easy to 
get ri&lt;/pre&gt;</description>
    <dc:creator>Dimitar Dobrev</dc:creator>
    <dc:date>2013-05-17T18:32:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22557">
    <title>Re: Fw: Special Qt mode for SWIG</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22557</link>
    <description>&lt;pre&gt; From my quick look at the QT macros, a lot of them can be #define'd 
away to nothing. Some, like Q_PROPERTY can probably be expanded into 
equivalent accessors (get/set methods) on the class, or accessors into a 
%extend block by defining a SWIG/C macro to write the accessors.

 From what I can make out Q_SIGNALS/Q_SLOTS/Q_SIGNAL/Q_SLOT macros 
expand into keywords signal/slot/signal/slot. These are clearly easy to 
get rid of by the preprocessor. In doing so, you'll lose information 
that the methods are signals/slots. Does that matter from the target 
language point of view? If it does matter, then these keywords will need 
to handled with additions to SWIG.

It certainly looks feasible, but may require a some development / 
additional enhancements in SWIG.

William



On 17/05/13 01:18, Peter McKinna wrote:


------------------------------------------------------------------------------
AlienVault Unified Security Management (USM) platform delivers complete
security visibility with the essential security&lt;/pre&gt;</description>
    <dc:creator>William S Fulton</dc:creator>
    <dc:date>2013-05-17T17:53:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22556">
    <title>Re: Abstract base classes to interfaces conversion</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22556</link>
    <description>&lt;pre&gt;My project has two types of classes that contain pure virtual methods. 
The first is similar to your case, where the class only contains pure 
virtual methods. In this case, the desired result it to have swig 
generate a C# or Java interface. The second case is classes that contain 
a mixture of pure virtual methods and non-virtual methods. For this 
second case, the desired result is for swig to generate an abstract C# 
or Java class where the pure virtual methods are abstract.

Currently, swig generates a C# and Java class with non-abstract methods 
for the pure virtual methods. This creates confusion to developers 
implementing the methods in the target language and causes runtime 
errors when they fail to implement all of the methods.

Brant

On 5/16/13 10:39 AM, Vladimir Kalinin wrote:



------------------------------------------------------------------------------
AlienVault Unified Security Management (USM) platform delivers complete
security visibility with the essential security capabilities. Easil&lt;/pre&gt;</description>
    <dc:creator>Brant K. Kyser</dc:creator>
    <dc:date>2013-05-17T15:12:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22555">
    <title>Re: Fw: Special Qt mode for SWIG</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22555</link>
    <description>&lt;pre&gt;From: Peter McKinna &amp;lt;peter.mckinna&amp;lt; at &amp;gt;gmail.com&amp;gt;

To: Dimitar Dobrev &amp;lt;dpldobrev&amp;lt; at &amp;gt;yahoo.com&amp;gt; 
Cc: "swig-devel&amp;lt; at &amp;gt;lists.sourceforge.net" &amp;lt;swig-devel&amp;lt; at &amp;gt;lists.sourceforge.net&amp;gt; 
Sent: Friday, May 17, 2013 3:18 AM
Subject: Re: [Swig-devel] Fw: Special Qt mode for SWIG
 

Hi,

 Yes certainly feasible. In fact I have already swigged a fair few of the 
qcore h files, and enough of the qgui  ones to build a few working test 
programs. Not sure if you need a qt mode, although there might be a case for it. 
  I have only done this for modula3 so a lot of your qt 
specific typemaps would have to be redone for python, java et al. Also 
you need some glue code for the signals and slots. The stuff I have at 
the moment it built on subclassing a dynamic qobject and is pretty 
clunky, no compile time support like pyeside. 
  When I began I had to null out a lot of the qt macros. 
Caused a lot of grief to swig. Once you have a decent set of typemaps, 
judicious use of apply works wonders and the average .i file for a qgui 
.h fil&lt;/pre&gt;</description>
    <dc:creator>Dimitar Dobrev</dc:creator>
    <dc:date>2013-05-17T10:10:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22554">
    <title>Re: Fw: Special Qt mode for SWIG</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22554</link>
    <description>&lt;pre&gt;Hi,

 Yes certainly feasible. In fact I have already swigged a fair few of the
qcore h files, and enough of the qgui  ones to build a few working test
programs. Not sure if you need a qt mode, although there might be a case
for it.
  I have only done this for modula3 so a lot of your qt specific typemaps
would have to be redone for python, java et al. Also you need some glue
code for the signals and slots. The stuff I have at the moment it built on
subclassing a dynamic qobject and is pretty clunky, no compile time support
like pyeside.
  When I began I had to null out a lot of the qt macros. Caused a lot of
grief to swig. Once you have a decent set of typemaps, judicious use of
apply works wonders and the average .i file for a qgui .h file is only a
few lines long. Your mileage may vary in other languages of course. I
confess I am not an expert swigger and hardly ever use c++ so I'm sure
there are better ways of building a qt interface.

Regards Peter


On Thu, May 16, 2013 at 11:11 PM, Dimitar Dobrev &amp;lt;dpld&lt;/pre&gt;</description>
    <dc:creator>Peter McKinna</dc:creator>
    <dc:date>2013-05-17T00:18:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22553">
    <title>Re: Abstract base classes to interfaces conversion</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22553</link>
    <description>&lt;pre&gt;Hi Brant,

No, I didn't work on this project recently. You see - for my
applications it is enough to convert to interfaces C++ classes
containing only pure virtual functions and no data members.
Converting to interfaces the classes with data members and non-pure virtual
member functions is a lot more complicated, especially when/if virtual
inheritance is used. I definitely intend to finish this work (if no
one else will volunteer to do it), but I can't make any promises about
timing.

BTW, what do you think about the questions discussed in the previous
mail?

Best regards,
 Vladimir                          mailto:vkalinin&amp;lt; at &amp;gt;opendesign.com

----- Original Message -----
I am interested in using this feature in my project. Has there been any 
movement in getting this merged into swig?

Once this is working in the C# module, I would also be interested in 
porting it over to the Java module.

Brant

On 4/21/13 1:14 PM, Vladimir Kalinin wrote:



---------------------------------------------------------------------&lt;/pre&gt;</description>
    <dc:creator>Vladimir Kalinin</dc:creator>
    <dc:date>2013-05-16T15:39:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22552">
    <title>Re: Abstract base classes to interfaces conversion</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22552</link>
    <description>&lt;pre&gt;I am interested in using this feature in my project. Has there been any 
movement in getting this merged into swig?

Once this is working in the C# module, I would also be interested in 
porting it over to the Java module.

Brant

On 4/21/13 1:14 PM, Vladimir Kalinin wrote:



------------------------------------------------------------------------------
AlienVault Unified Security Management (USM) platform delivers complete
security visibility with the essential security capabilities. Easily and
efficiently configure, manage, and operate all of your security controls
from a single console and one unified framework. Download a free trial.
http://p.sf.net/sfu/alienvault_d2d
&lt;/pre&gt;</description>
    <dc:creator>Brant K. Kyser</dc:creator>
    <dc:date>2013-05-16T15:09:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22551">
    <title>Fw:  Special Qt mode for SWIG</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22551</link>
    <description>&lt;pre&gt;----- Forwarded Message -----

From: Dimitar Dobrev &amp;lt;dpldobrev&amp;lt; at &amp;gt;yahoo.com&amp;gt;
To: "swig-devel&amp;lt; at &amp;gt;lists.sourceforge.net" &amp;lt;swig-devel&amp;lt; at &amp;gt;lists.sourceforge.net&amp;gt; 
Sent: Monday, May 13, 2013 9:51 PM
Subject: Fw: [Swig-devel] Special Qt mode for SWIG
 




----- Forwarded Message -----
From: Dimitar Dobrev &amp;lt;dpldobrev&amp;lt; at &amp;gt;yahoo.com&amp;gt;
To: William S Fulton &amp;lt;wsf&amp;lt; at &amp;gt;fultondesigns.co.uk&amp;gt; 
Sent: Monday, May 13, 2013 9:51 PM
Subject: Re: [Swig-devel] Special Qt mode for SWIG
 


From: William S Fulton &amp;lt;wsf&amp;lt; at &amp;gt;fultondesigns.co.uk&amp;gt;

To: Dimitar Dobrev &amp;lt;dpldobrev&amp;lt; at &amp;gt;yahoo.com&amp;gt; 
Cc: "swig-devel&amp;lt; at &amp;gt;lists.sourceforge.net" &amp;lt;swig-devel&amp;lt; at &amp;gt;lists.sourceforge.net&amp;gt; 
Sent: Monday, May 13, 2013 8:43 PM
Subject: Re: [Swig-devel] Special Qt mode for SWIG
 

On 13/05/13 12:46, Dimitar Dobrev
 wrote:

I'm not familiar with the QT world, but from what I understand it is an 
extension of C++. In which case, I can't see any major obstacles as to 
why the SWIG parser couldn't be enhanced to add in QT syntax. SWIG has 
always
 expected ISO C/C++,
 but I don't have a problem&lt;/pre&gt;</description>
    <dc:creator>Dimitar Dobrev</dc:creator>
    <dc:date>2013-05-16T13:11:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22550">
    <title>Bug in guile's port example when wrapping for guile 2.0</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22550</link>
    <description>&lt;pre&gt;
When running the ports example in a guile 2 context, you will see this output:
314159
(wrong-type-arg "$name" "Wrong type argument in position ~A: ~S" (1 #&amp;lt;output: string 
90071e0&amp;gt;) (#&amp;lt;output: string 90071e0&amp;gt;))
read_int: error reading from file
read_int: Success
1075290112

On 1.8 you will get this:
314159
(wrong-type-arg "$name" "Wrong type argument in position ~A: ~S" (1 #&amp;lt;output: string 
8f3a5d0&amp;gt;) (#&amp;lt;output: string 8f3a5d0&amp;gt;))
4711

The wrong-type-arg error is expected. It is an illustration in the example of what doesn't work.

The difference is in the read_int error.

The runme script first writes a number to stdout (314159). Then it writes a number to a file 
called output.txt (4711). You don't see this in the output above, but it happens just before the 
wrong-type-arg illustration is run.

After the wrong-type-arg error, the runme script goes on to read the number that was written 
to output.txt and prints what it found. On 1.8 it correctly prints 4711 again, on 2.0 it gives an 
error and then a wron&lt;/pre&gt;</description>
    <dc:creator>Geert Janssens</dc:creator>
    <dc:date>2013-05-14T15:23:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22549">
    <title>Fw:  Special Qt mode for SWIG</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22549</link>
    <description>&lt;pre&gt;


----- Forwarded Message -----
From: Dimitar Dobrev &amp;lt;dpldobrev&amp;lt; at &amp;gt;yahoo.com&amp;gt;
To: William S Fulton &amp;lt;wsf&amp;lt; at &amp;gt;fultondesigns.co.uk&amp;gt; 
Sent: Monday, May 13, 2013 9:51 PM
Subject: Re: [Swig-devel] Special Qt mode for SWIG
 


From: William S Fulton &amp;lt;wsf&amp;lt; at &amp;gt;fultondesigns.co.uk&amp;gt;

To: Dimitar Dobrev &amp;lt;dpldobrev&amp;lt; at &amp;gt;yahoo.com&amp;gt; 
Cc: "swig-devel&amp;lt; at &amp;gt;lists.sourceforge.net" &amp;lt;swig-devel&amp;lt; at &amp;gt;lists.sourceforge.net&amp;gt; 
Sent: Monday, May 13, 2013 8:43 PM
Subject: Re: [Swig-devel] Special Qt mode for SWIG
 

On 13/05/13 12:46, Dimitar Dobrev
 wrote:

I'm not familiar with the QT world, but from what I understand it is an 
extension of C++. In which case, I can't see any major obstacles as to 
why the SWIG parser couldn't be enhanced to add in QT syntax. SWIG has 
always expected ISO C/C++,
 but I don't have a problem if a flag or 
something similar adds in additional support. Where is the QT syntax 
documented? What are the concepts in QT and can they be mapped onto C++ 
concepts? For example, from what I know, QT has some sort of properties, 
which a&lt;/pre&gt;</description>
    <dc:creator>Dimitar Dobrev</dc:creator>
    <dc:date>2013-05-13T18:51:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22548">
    <title>Re: Special Qt mode for SWIG</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22548</link>
    <description>&lt;pre&gt;
I'm not familiar with the QT world, but from what I understand it is an 
extension of C++. In which case, I can't see any major obstacles as to 
why the SWIG parser couldn't be enhanced to add in QT syntax. SWIG has 
always expected ISO C/C++, but I don't have a problem if a flag or 
something similar adds in additional support. Where is the QT syntax 
documented? What are the concepts in QT and can they be mapped onto C++ 
concepts? For example, from what I know, QT has some sort of properties, 
which are very similiar to C++ member variables or even SWIG's %extend 
variables or even %attribute.

Please feel free to make a Github fork for your work on this and use 
this list for discussion.

There is plenty of developer docs to read, however, I'd expect you'll 
first tackle the parsing in Source/CParse/parser.y.

I don't know SMOKE, are there any reasons why SWIG might be a better fit?

William


------------------------------------------------------------------------------
AlienVault Unified Security Mana&lt;/pre&gt;</description>
    <dc:creator>William S Fulton</dc:creator>
    <dc:date>2013-05-13T17:43:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22547">
    <title>Re: Add CCache/ccache-swig.1 to .gitignore</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22547</link>
    <description>&lt;pre&gt;Sure, that's useful. Actually .gitignore (and svn:ignore properties 
before that) isn't very well maintained, there is quite a lot to 
implement given all the different outputs after running the tests. I 
noticed that if the .gitignore file gets big, it slows down git :(

William


------------------------------------------------------------------------------
AlienVault Unified Security Management (USM) platform delivers complete
security visibility with the essential security capabilities. Easily and
efficiently configure, manage, and operate all of your security controls
from a single console and one unified framework. Download a free trial.
http://p.sf.net/sfu/alienvault_d2d
&lt;/pre&gt;</description>
    <dc:creator>William S Fulton</dc:creator>
    <dc:date>2013-05-13T17:25:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22546">
    <title>Add CCache/ccache-swig.1 to .gitignore</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22546</link>
    <description>&lt;pre&gt;Hi William,

Just FYI, I've pushed a minor change to the SWIG repository, adding
CCache/ccache-swig.1 to .gitignore - it seems to be the only build product
that isn't ignored. Hope that is okay.

Cheers,
Karl
------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may&lt;/pre&gt;</description>
    <dc:creator>Karl Wette</dc:creator>
    <dc:date>2013-05-13T12:16:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22545">
    <title>Special Qt mode for SWIG</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22545</link>
    <description>&lt;pre&gt;

    Hello,
    

    I'm looking into the possibility to wrap Qt with SWIG. I've already 
read it's quite the challenge but I have an idea about which I'd love to hear some opinions.
    You probably know about SMOKE, another tool for wrapping C++ using headers. It has a special "qt" mode which allows it to properly recognize and 
parse Qt headers. I was wondering if the same option could in theory be 
added to SWIG? If so, I'd be interested in working on it.


    Regards,    Dimitar Dobrev------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may&lt;/pre&gt;</description>
    <dc:creator>Dimitar Dobrev</dc:creator>
    <dc:date>2013-05-13T11:46:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22544">
    <title>Re: Guile autoconf</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22544</link>
    <description>&lt;pre&gt;





On 4 May 2013 17:46, Geert Janssens &amp;lt;info&amp;lt; at &amp;gt;kobaltwit.be[1]&amp;gt; wrote:


For all I'll write below, keep in mind that my autoconf knowledge is fairly limited...
 
I'm surprised that pkg-config is causing that much trouble. It's used by the guile sources to build guile. So I 
would expect any system that ships guile also has a compatible version of pkg-config. (I'm not a Guile core 
dev, but I have worked on getting guile to compile on Windows for the GnuCash project). 
 
I suspect the problems arise from the fact that PGK_CONFIG is inside an if/then construct. I found 
references that this might cause problems (1).
 
I have rewritten the code a bit to use AS_IF instead of plain if/then/else, as suggested on that page. You can 
find my patch here:
https://github.com/gjanssens/swig/tree/guile_config_tmp[2]
 
Can you try this and see if the expansion issues go away ? The patch is not complete yet, but I'd like to 
know if it's worth continuing in this direction.


No real progress, the error message is equally &lt;/pre&gt;</description>
    <dc:creator>Geert Janssens</dc:creator>
    <dc:date>2013-05-10T16:46:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22543">
    <title>Re: Octave examples</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22543</link>
    <description>&lt;pre&gt;You're right, the docs should be kept up to date too. I've just added an
extra patch to the pull request doing just that.

Cheers,
Karl


On 8 May 2013 23:57, William S Fulton &amp;lt;wsf&amp;lt; at &amp;gt;fultondesigns.co.uk&amp;gt; wrote:

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may&lt;/pre&gt;</description>
    <dc:creator>Karl Wette</dc:creator>
    <dc:date>2013-05-08T22:11:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22542">
    <title>Re: Octave examples</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22542</link>
    <description>&lt;pre&gt;Great, thanks. I've committed this. Probably we should change the 
examples in the html files to match too?

William

On 08/05/13 21:46, Karl Wette wrote:


------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
&lt;/pre&gt;</description>
    <dc:creator>William S Fulton</dc:creator>
    <dc:date>2013-05-08T21:57:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22541">
    <title>Re: Octave examples</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22541</link>
    <description>&lt;pre&gt;Hi William,

I've just opened a pull request for this:

https://github.com/swig/swig/pull/46

Cheers,
Karl


On 30 April 2013 08:56, William S Fulton &amp;lt;wsf&amp;lt; at &amp;gt;fultondesigns.co.uk&amp;gt; wrote:

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may&lt;/pre&gt;</description>
    <dc:creator>Karl Wette</dc:creator>
    <dc:date>2013-05-08T20:46:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22540">
    <title>Re: Guile autoconf</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22540</link>
    <description>&lt;pre&gt;
No real progress, the error message is equally obscure.

+ autoconf
configure:8954: error: possibly undefined macro: AC_LIB_LINKFLAGS_FROM_LIBS
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.

BTW, you can test this by just removing pkg.m4 from your installation (like
old versions of pkg-config which don't install any pkg.m4 file). Probably
we can just put in a copy of pkg.m4 into Tools/config to solve this
problem, but we'd probably have to check that the include paths given to
aclocal and ensure our pkg.m4 doesn't override the system's pkg.m4.




Maybe Guile and GnuCash can get away with having pkg-config properly
installed, but SWIG is about a whole lot more languages than Guile and I
need it to work on a wider set of configurations. As depending on
pkg-config can easily break the autogen.sh stage, I'm going to remove the
pkg-config dependency and go back to using guile-config. Maybe it will have
problems in the long term, but correctly g&lt;/pre&gt;</description>
    <dc:creator>William S Fulton</dc:creator>
    <dc:date>2013-05-08T16:48:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22539">
    <title>Re: Guile examples</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22539</link>
    <description>&lt;pre&gt;
I got the std_vector and multivalue examples running using the 
dynamic-link approach.

My latest changes also get the guile test-suite and examples working 
correctly on Cygwin. With respect to the examples, the only remaining 
thing you could help out with for now is the 'port' and 'class' example, 
then Guile will be sufficiently ready for release as far as I'm 
concerned although I'll tidy up the Makefiles a bit more.

William


------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
&lt;/pre&gt;</description>
    <dc:creator>William S Fulton</dc:creator>
    <dc:date>2013-05-08T16:49:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.programming.swig.devel/22538">
    <title>Re: Problem with 2.10 on modula3</title>
    <link>http://permalink.gmane.org/gmane.comp.programming.swig.devel/22538</link>
    <description>&lt;pre&gt;If you are getting the seg fault while running SWIG please let us know 
how to replicate.

If you are getting a seg fault while running modula3, you'll need to put 
in some effort provide more info to debug to see what has changed as the 
modula3 target language in SWIG has always been in an unknown state as 
no-one has provided any tests.

William


------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
&lt;/pre&gt;</description>
    <dc:creator>William S Fulton</dc:creator>
    <dc:date>2013-05-07T20:59:24</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.programming.swig.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.programming.swig.devel</link>
  </textinput>
</rdf:RDF>
