RSS/Atom feed Twitter
Site is read-only, email is disabled

2.7: selection to path procedure lookup failed.

This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

5 of 5 messages available
Toggle history

Please log in to manage your subscriptions.

2.7: selection to path procedure lookup failed. Ofnuts 08 Nov 22:22
  2.7: selection to path procedure lookup failed. Martin Nordholts 09 Nov 06:17
   2.7: selection to path procedure lookup failed. Ofnuts 09 Nov 08:09
    2.7: selection to path procedure lookup failed. Martin Nordholts 09 Nov 19:24
     2.7: selection to path procedure lookup failed. Ofnuts 10 Nov 01:07
Ofnuts
2010-11-08 22:22:16 UTC (about 14 years ago)

2.7: selection to path procedure lookup failed.

I'm trying to have coexisting a locally built 2.7 and a packaged 2.6.8.

2.6.8 goes to /usr/bin and /usr/lib and 2.7 installs into /usr/local/lib and /usr/local/bin

I start 2.7 via a shell that export LD_IBRARY_PATH and updates the PATH so tha the /usr/local stuff goes first.

2.7 seems to work (all tools I tried worked, especially the 2.7-specific cage tool) except when I try to transform a selection to path, for which I get:

"Selection to path procedure lookup failed."

If I recall correctly, my freshly built, bytes-still-wet, 2.7 did work correctly, so I must have broken something when playing with the system load paths. Can anyone suggest where to look?

Martin Nordholts
2010-11-09 06:17:25 UTC (about 14 years ago)

2.7: selection to path procedure lookup failed.

On 11/08/2010 11:22 PM, Ofnuts wrote:

I'm trying to have coexisting a locally built 2.7 and a packaged 2.6.8.

2.6.8 goes to /usr/bin and /usr/lib and 2.7 installs into /usr/local/lib and /usr/local/bin

I start 2.7 via a shell that export LD_IBRARY_PATH and updates the PATH so tha the /usr/local stuff goes first.

Just a couple of tips:
* Don't install into a prefix in a prefix, rather use /usr and /opt * You shouldn't need to set LD_IBRARY_PATH when you run (only when you ./configure) because built binaries will have library paths hardcoded in them through rpath [1], unless you disabled that.

/ Martin

[1] http://en.wikipedia.org/wiki/Rpath_(linking)

Ofnuts
2010-11-09 08:09:49 UTC (about 14 years ago)

2.7: selection to path procedure lookup failed.

On 11/09/2010 07:17 AM, Martin Nordholts wrote:

On 11/08/2010 11:22 PM, Ofnuts wrote:

I'm trying to have coexisting a locally built 2.7 and a packaged 2.6.8.

2.6.8 goes to /usr/bin and /usr/lib and 2.7 installs into /usr/local/lib and /usr/local/bin

I start 2.7 via a shell that export LD_IBRARY_PATH and updates the PATH so tha the /usr/local stuff goes first.

Just a couple of tips:
* Don't install into a prefix in a prefix, rather use /usr and /opt

Ain't me... I used all defaults in the Git build scripts.

* You shouldn't need to set LD_IBRARY_PATH when you run (only when you ./configure) because built binaries will have library paths hardcoded in them through rpath [1], unless you disabled that.

OK, will look that up.

Thanks.

Martin Nordholts
2010-11-09 19:24:46 UTC (about 14 years ago)

2.7: selection to path procedure lookup failed.

On 11/09/2010 09:09 AM, Ofnuts wrote:

On 11/09/2010 07:17 AM, Martin Nordholts wrote:

* Don't install into a prefix in a prefix, rather use /usr and /opt

Ain't me... I used all defaults in the Git build scripts.

Well, the default prefix is for when you want to override an installation in /usr, if you don't want that, which is the case here, it is your responsibility to change it to something else. Pass --prefix=/opt to autogen.sh or configure.

/ Martin

Ofnuts
2010-11-10 01:07:36 UTC (about 14 years ago)

2.7: selection to path procedure lookup failed.

Worked a treat. Now both versions seem to coexist peacefully. Thanks.

On 11/09/2010 08:24 PM, Martin Nordholts wrote:

Well, the default prefix is for when you want to override an installation in /usr, if you don't want that, which is the case here, it is your responsibility to change it to something else. Pass --prefix=/opt to autogen.sh or configure.

/ Martin