Mailing List Archives [was Re: [Gimp-developer] Text question]

2004-06-30 Thread Shlomi Fish
On Monday 28 June 2004 22:19, Scott Griffith at ISES-LLC wrote: > After RTFM and finding no workaround, I tried to check the archives of > these mailing lists for clues, but the archives I was able to locate > at lists.XCF.Berkeley.EDU haven't been re-indexed since September of > 2003. A search of

Re: Mailing List Archives [was Re: [Gimp-developer] Text question]

2004-06-30 Thread Jernej Simonèiè
On Wednesday, June 30, 2004, 10:27:54, Shlomi Fish wrote: > I had difficulty finding a good archive as well. I always found gmane's interface nicer than mail-archive: (and it allows nntp access) -- < Jernej Simoncic ><><><><>< http:/

[Gimp-developer] Using libgimp in standalone applications

2004-06-30 Thread Wolfgang Mader
(This is not the first time I am sending this mail to the list but the last time it got lost.) Hello List, I have read that one is able to use the library with the imagemanipultion funktions of gimp in a standalone application. What do I need to read/learn to take advance of this funktionali

Re: [Gimp-developer] Using libgimp in standalone applications

2004-06-30 Thread William Skaggs
Wolfgang Mader wrote: > I have read that one is able to use the library with the imagemanipultion > funktions of gimp in a standalone application. What do I need to read/learn > to take advance of this funktionalities? I have never coded gimp realted > things. The functions in libgimp almost all

[Gimp-developer] c++ with plugin-template

2004-06-30 Thread Christoph Lutz
Hi, I wrote a gimp-plugin, using plugin-template 1.3.3 which supports gcc as default compiler, thus my plugin has to be compiled with c++ compiler. As I didn't know how to set up all the automake/autoconfigure-stuff, I temporary simply changed the CC-Variable in the /src/Makefile, but this is

[Gimp-developer] Re: c++ with plugin-template

2004-06-30 Thread Markus Triska
Christoph Lutz wrote: > As I didn't know how to set up all the automake/autoconfigure-stuff, I > temporary simply changed the  CC-Variable in the  /src/Makefile, > but this is insufficient, I guess... Could you please give me some > hints, how to change the compiler in the plugin-templates > c

Re: [Gimp-developer] Using libgimp in standalone applications

2004-06-30 Thread Sven Neumann
Hi, Wolfgang Mader <[EMAIL PROTECTED]> writes: > I have read that one is able to use the library with the imagemanipultion > funktions of gimp in a standalone application. What do I need to read/learn > to take advance of this funktionalities? I have never coded gimp realted > things. libgim

Re: [Gimp-developer] Re: c++ with plugin-template

2004-06-30 Thread Sven Neumann
Hi, Markus Triska <[EMAIL PROTECTED]> writes: > The key file here is configure.in. It contains the line > > AC_PROG_CC > > which will make the (resulting) "configure" script search for a C > compiler. gcc is indeed the C compiler (dispite the somewhat > misleading name), while the C++ compiler

[Gimp-developer] Re: c++ with plugin-template

2004-06-30 Thread Markus Triska
On Thursday 01 July 2004 12:23 am, you wrote: > > Right. If a C++ compiler is supposed to be used, you will have to use > AC_PROG_CXX. See also > While we are at it: I noticed that configure.in lacks the typical AC_LANG_C line often used in conjunction with AC_PROG_CC to perform additional tests