Opened 10 years ago

Closed 10 years ago

#41775 closed defect (worksforme)

git-core @1.8.3.4_0 gitk defect

Reported by: magdalena.menden@… Owned by: ci42
Priority: Normal Milestone:
Component: ports Version: 2.2.0
Keywords: Cc:
Port: git-core

Description

The new feature of gitk (to bring the window to front)

# on OSX bring the current Wish process window to front 
if {[tk windowingsystem] eq "aqua"} { 
    exec osascript -e [format { 
        tell application "System Events" 
            set frontmost of processes whose unix id is %d to true 
        end tell 
    } [pid] ] 
} 

doesn't work on my Mac. I always get the following error message:

Error in startup script: dyld: DYLD_ environment variables being ignored because main executable (/usr/bin/osascript) is code signed with entitlements 
2013-10-14 10:16:13.454 osascript[2683:707] Error loading /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types:  dlopen(/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types, 262): no suitable image found.  Did find: 
        /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types: no matching architecture in universal wrapper 
osascript: OpenScripting.framework - scripting addition "/Library/ScriptingAdditions/Adobe Unit Types.osax" declares no loadable handlers. 
    while executing 
"exec osascript -e [format { 
        tell application "System Events" 
            set frontmost of processes whose unix id is %d to true 
        end te..." 
    invoked from within 
"if {[tk windowingsystem] eq "aqua"} { 
    exec osascript -e [format { 
        tell application "System Events" 
            set frontmost of processes ..." 
    (line 11755) 

OS X 10.8.5, Xcode 4.5.2, Macports 2.2.0

Change History (3)

comment:1 Changed 10 years ago by danielluke (Daniel J. Luke)

  1. you probably don't want to have any DYLD_ environment variables set (it's usually an indication that you're doing something wrong).
  2. It looks like the problem is your Adobe Unit Types scripting addition (removing it will probably fix your problem)

comment:2 Changed 10 years ago by mf2k (Frank Schima)

Keywords: gitk removed
Owner: changed from macports-tickets@… to ciserlohn@…
Port: @1.8.3.4_0 removed

In the future, please Cc the port maintainers (port info --maintainers git-core).

comment:3 Changed 10 years ago by ci42

Resolution: worksforme
Status: newclosed

It looks like a 32/64-Bit problem with your Adobe Unit Types scripting addition.

Have a look at: http://forums.adobe.com/thread/486208

Note: See TracTickets for help on using tickets.