unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* About gh.h
@ 2011-11-09  5:12 Germán Arias
  2011-11-09  5:51 ` Keith Wright
  2011-11-09 10:40 ` dsmich
  0 siblings, 2 replies; 6+ messages in thread
From: Germán Arias @ 2011-11-09  5:12 UTC (permalink / raw)
  To: guile-user

I'm trying to update an old gnustep library that uses guile. But it 
requieres gh.h header.
As I can see this header don't exist. So, which header should I use 
instead it?
Thanks in advance.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: About gh.h
  2011-11-09  5:12 About gh.h Germán Arias
@ 2011-11-09  5:51 ` Keith Wright
  2011-11-09 11:52   ` Thien-Thi Nguyen
  2011-11-09 10:40 ` dsmich
  1 sibling, 1 reply; 6+ messages in thread
From: Keith Wright @ 2011-11-09  5:51 UTC (permalink / raw)
  To: german; +Cc: guile-user

> From: =?iso-8859-1?q?Germ=E1n_Arias?= <german@xelalug.org>
> 
> I'm trying to update an old gnustep library that uses guile. But it 
> requieres gh.h header.
> As I can see this header don't exist. So, which header should I use 
> instead it?
> Thanks in advance.

The gh.h headers were part of an attempt to make the
C interface of guile compatible with that of STk.
It was abandoned when project leadership changed
to someone who thought a better idea was to not
do that.  That was some time in the 20th century.

At least, that's how I remember it.

I don't think there is a compatible library, you
just have to change everything over to the scm.h
interface.

-- 
     -- Keith Wright  <kwright@free-comp-shop.com>

Programmer in Chief, Free Computer Shop <http://www.free-comp-shop.com>
       --- Peace, Love, and Source Code ---



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: About gh.h
  2011-11-09  5:12 About gh.h Germán Arias
  2011-11-09  5:51 ` Keith Wright
@ 2011-11-09 10:40 ` dsmich
  2011-11-12 21:13   ` Ludovic Courtès
  1 sibling, 1 reply; 6+ messages in thread
From: dsmich @ 2011-11-09 10:40 UTC (permalink / raw)
  To: Germán Arias, guile-user


---- "Germán Arias" <german@xelalug.org> wrote: 
> I'm trying to update an old gnustep library that uses guile. But it 
> requieres gh.h header.
> As I can see this header don't exist. So, which header should I use 
> instead it?

The new interface has a new header, it's libguile.h

The old gh interface was deprecated in 1.6 and was removed in 1.8.

-Dale



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: About gh.h
  2011-11-09  5:51 ` Keith Wright
@ 2011-11-09 11:52   ` Thien-Thi Nguyen
  2011-11-09 22:17     ` Germán Arias
  0 siblings, 1 reply; 6+ messages in thread
From: Thien-Thi Nguyen @ 2011-11-09 11:52 UTC (permalink / raw)
  To: german; +Cc: guile-user

() Keith Wright <kwright@keithdiane.us>
() Wed, 9 Nov 2011 00:51:07 -0500

   I don't think there is a compatible library, you
   just have to change everything over to the scm.h
   interface.

Another way (if you wish to maintain backward portability) is
to use an intermediate interface, e.g., src/gi.h in Guile-PG.

http://www.nongnu.org/guile-pg/
http://git.savannah.gnu.org/cgit/guile-pg.git/tree/src/gi.h



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: About gh.h
  2011-11-09 11:52   ` Thien-Thi Nguyen
@ 2011-11-09 22:17     ` Germán Arias
  0 siblings, 0 replies; 6+ messages in thread
From: Germán Arias @ 2011-11-09 22:17 UTC (permalink / raw)
  To: Thien-Thi Nguyen; +Cc: guile-user

On 2011-11-09 05:52:25 -0600 Thien-Thi Nguyen <ttn@gnuvola.org> wrote:

> () Keith Wright <kwright@keithdiane.us>
> () Wed, 9 Nov 2011 00:51:07 -0500
> 
>    I don't think there is a compatible library, you
>    just have to change everything over to the scm.h
>    interface.
> 
> Another way (if you wish to maintain backward portability) is
> to use an intermediate interface, e.g., src/gi.h in Guile-PG.
> 
> http://www.nongnu.org/guile-pg/
> http://git.savannah.gnu.org/cgit/guile-pg.git/tree/src/gi.h
> 
> 

I will try using libguile.h instead. But if this don't work. Can I use 
Guile
directly inside my Objective-C files? Since Objective-C is a superset 
of C.
The website only refers to C and C++.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: About gh.h
  2011-11-09 10:40 ` dsmich
@ 2011-11-12 21:13   ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2011-11-12 21:13 UTC (permalink / raw)
  To: guile-user

Hi,

<dsmich@roadrunner.com> skribis:

> ---- "Germán Arias" <german@xelalug.org> wrote: 
>> I'm trying to update an old gnustep library that uses guile. But it 
>> requieres gh.h header.
>> As I can see this header don't exist. So, which header should I use 
>> instead it?
>
> The new interface has a new header, it's libguile.h
>
> The old gh interface was deprecated in 1.6 and was removed in 1.8.

It was actually removed in 2.0.0.

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-11-12 21:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-09  5:12 About gh.h Germán Arias
2011-11-09  5:51 ` Keith Wright
2011-11-09 11:52   ` Thien-Thi Nguyen
2011-11-09 22:17     ` Germán Arias
2011-11-09 10:40 ` dsmich
2011-11-12 21:13   ` Ludovic Courtès

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).