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 the rawfiles produced only discussion of the new
 features, and Google searches did not provide any useful information
 either. So: I'm going to the source, so to speak. (;-)


Just to note that this mailing list has an archive at www.mail-archive.com:

http://www.mail-archive.com/gimp-developer%40lists.xcf.berkeley.edu/

Which is up to date and searchable.

I had difficulty finding a good archive as well.

Regards,

Shlomi Fish

-- 

-
Shlomi Fish  [EMAIL PROTECTED]
Homepage:http://shlomif.il.eu.org/

Knuth is not God! It took him two days to build the Roman Empire.
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


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:
http://gmane.org/info.php?group=gmane.comp.video.gimp.devel
(and it allows nntp access)

-- 
 Jernej Simoncic  http://deepthought.ena.si/ 
 for personal mail, replace guest.arnes.si with isg.si 

An original idea can never emerge from committee in the original.
   -- Boyle's Fifth Law

___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


[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 funktionalities? I have never coded gimp realted
 things.

 Thank you in advance.
 Wolfgang Mader
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


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 work by sending commands to a running 
instance of the gimp application and receiving data in return, so it is
impossible to use the functions in libgimp without having the gimp core
running on the system. 

However, gimp plug-ins are standalone applications in a sense.  They are
started by the gimp core and controlled by it, but they are separate
executables that can create any sort of user interface they want, and
execute any C code they want.

The best way to learn about Gimp plug-ins is to read the relevant
material at http://developer.gimp.org.  Particularly useful as a
starting point is this overview:

http://www.home.unix-ag.org/simon/gimp/guadec2002/gimp-plugin/html/

Best,
  -- Bill
 

 
__ __ __ __
Sent via the KillerWebMail system at primate.ucdavis.edu


 
   
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


[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  plugin/src/Makefile, 
but this is insufficient, I guess... Could you please give me some 
hints, how to change the compiler in the plugin-templates 
configure/automake-files, so that I could pack and release my plugin?

Thanks,
Christoph Lutz
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


[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  plugin/src/Makefile, 
 but this is insufficient, I guess... Could you please give me some 
 hints, how to change the compiler in the plugin-templates 
 configure/automake-files, so that I could pack and release my plugin?


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 is called g++.

I have recently worked with the gimp-plugin-template myself and found it quite 
useful, so feel free to e-mail me if you have questions, or take a look at 
the magiceye plug-in (in the registry) to see how I have done it.

Best regards,
Markus.
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


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.

libgimp doesn't contain any image-manipulation functions, it's
basically just a way to communicate with the core. It can also not be
used in standalone applications. This will change with GEGL though.


Sven

___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


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 is called g++.

Right. If a C++ compiler is supposed to be used, you will have to use
AC_PROG_CXX. See also

http://www.gnu.org/software/autoconf/manual/autoconf-2.57/html_mono/autoconf.html#SEC65

and

http://www.gnu.org/software/automake/manual/html_mono/automake.html#C++%20Support


Sven

___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


[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 of 
the C compiler. Adding it might cause autoconf to work around some obscure 
errors of broken compilers (perhaps broken optimizations etc.).

Best regards,
Markus.
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer