Re: [Gimp-developer] running gimp withou't make install?

2003-06-04 Thread Henrik Brix Andersen
On Mon, 2003-06-02 at 13:14, Sven Neumann wrote:
 Although this works, it is a little hackish and it will link gimp-1.3
 against the installed libraries which might differ from the versions
 in your source tree. The correct way to do this is to use libtool:
 
  libtool gdb app/gimp-1.3

Shouldn't this be './libtool gdb app/gimp-1.3' ?

Sincerely,
./Brix
-- 
Henrik Brix Andersen [EMAIL PROTECTED]

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


Re: [Gimp-developer] running gimp withou't make install?

2003-06-04 Thread Sven Neumann
Hi,

Henrik Brix Andersen [EMAIL PROTECTED] writes:

 On Mon, 2003-06-02 at 13:14, Sven Neumann wrote:
 Although this works, it is a little hackish and it will link gimp-1.3
 against the installed libraries which might differ from the versions
 in your source tree. The correct way to do this is to use libtool:
 
  libtool gdb app/gimp-1.3

 Shouldn't this be './libtool gdb app/gimp-1.3' ?

Only if you don't have libtool installed. If you are developing from
CVS you need to have libtool in your path anyway. The copy that is
shipped with the tarball is just there to avoid a dependancy on
libtool for everyone who wants to compile the tarball.


Sven

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


Re: [Gimp-developer] running gimp withou't make install?

2003-06-04 Thread Henrik Brix Andersen
On Tue, 2003-06-03 at 18:07, Sven Neumann wrote:
 Only if you don't have libtool installed. If you are developing from
 CVS you need to have libtool in your path anyway. The copy that is
 shipped with the tarball is just there to avoid a dependancy on
 libtool for everyone who wants to compile the tarball.

Thanks, that clarifies it.

Brix
-- 
Henrik Brix Andersen [EMAIL PROTECTED]

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


[Gimp-developer] running gimp withou't make install?

2003-06-02 Thread Joao S. O. Bueno
Hi there,

I recently uploaded teh 1.3.14 source code, to start to look around the code.

Actually, I humbly intend to actvely join GIMP's development  along the next
couple of months, if I can get enough of what is going on.


./configure, make  make install went as smoothly as one could ever dream, in 
a shinny install of MDK 9.1 - Congratulations to whoever manage this part.

And them, I just started to hack around the code to take a grasp of how things 
itnerconnect around there. My intent almost worked out at first try (well, 
sometimes we might be able to say that a seg fault is ok as 'almost worked 
out', might not? ).

But what I do need now is a faster way to go from edit code to running gimp.
Make Install asctually eats out a lot of time on my system. Is it possible to 
run the gimp-1.3 binary generated from make straight, without make-installing 
it? 
How can it be done?


And about my hack: I am trying with a xor layer combine and brush modes. 
I jsut based my work on the multiply mode, and worked on a copy of 
pixel_multiply in app/paint-funcs/paint-funcs-generic.h ,
and the related enuns in various other files. It seens like I am missing 
something yet - I will work on it tonight. 

The final effect is just too like the difference layer combine mode to be of 
any interest, I think, But if it get's interesting enough, I will mention it 
again.

Thanks for all help.

JS
--



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


Re: [Gimp-developer] running gimp withou't make install?

2003-06-02 Thread Nathan Carl Summers
On Sun, 1 Jun 2003, Joao S. O. Bueno wrote:

 But what I do need now is a faster way to go from edit code to running gimp.
 Make Install asctually eats out a lot of time on my system. Is it possible to
 run the gimp-1.3 binary generated from make straight, without make-installing
 it?

Of course you can, as long as all the data is installed in the right
places (which the first make install took care of for you.)

 How can it be done?
cd app
./gimp-1.3

Rockwalrus

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


Re: [Gimp-developer] running gimp withou't make install?

2003-06-02 Thread Sven Neumann
Hi,

Helvetix Victorinox [EMAIL PROTECTED] writes:

 Once the linking part has been done by app/gimp-1.3, I just run

 gdb app/.libs/gimp-1.3

Although this works, it is a little hackish and it will link gimp-1.3
against the installed libraries which might differ from the versions
in your source tree. The correct way to do this is to use libtool:

 libtool gdb app/gimp-1.3

For other executables like for example valgrind you might have to tell
libtool that you want it to behave in 'exec' operation mode:

 libtool --mode=exec valgrind app/gimp-1.3


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


Re: [Gimp-developer] running gimp withou't make install?

2003-06-01 Thread Helvetix Victorinox
Once the linking part has been done by app/gimp-1.3, I just run

gdb app/.libs/gimp-1.3

Helvetix

On Sun, Jun 01, 2003 at 04:35:02PM -0700, Nathan Carl Summers wrote:
 On Sun, 1 Jun 2003, Joao S. O. Bueno wrote:
 
  But what I do need now is a faster way to go from edit code to running gimp.
  Make Install asctually eats out a lot of time on my system. Is it possible to
  run the gimp-1.3 binary generated from make straight, without make-installing
  it?
 
 Of course you can, as long as all the data is installed in the right
 places (which the first make install took care of for you.)
 
  How can it be done?
 cd app
 ./gimp-1.3
 
 Rockwalrus
 
 ___
 Gimp-developer mailing list
 [EMAIL PROTECTED]
 http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer