Changeset 155


Ignore:
Timestamp:
Dec 29, 2003, 12:17:04 AM (21 years ago)
Author:
Gary Byers
Message:

Get rid of *DEFAULT-BUNDLE-PATH* and friend; require FAKE-CFBUNDLE-PATH
and use the function of that name explicitly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/examples/cocoa.lisp

    r132 r155  
    33;;; We need to be able to point the CoreFoundation and Cocoa libraries
    44;;; at some bundle very early in the process.  If you want to use some
    5 ;;; other bundle path, you may need to change the value of
    6 ;;; *default-bundle-path*; if you want to use some other executable
    7 ;;; within that bundle, you may need to change the value of
    8 ;;; *default-executable-path*.
     5;;; other bundle path, you may need to change the call to FAKE-CFBUNDLE-PATH
     6;;; below.
    97
     8(require "FAKE-CFBUNDLE-PATH")
     9(fake-cfbundle-path "ccl:OpenMCL.app;Contents;MacOS;dppccl")
    1010
    11 (defparameter *default-bundle-path* "ccl:OpenMCL.app;")
    12 (defparameter *default-bundle-executable-path*
    13   #+darwinppc-target
    14   (merge-pathnames "Contents/MacOS/dppccl" *default-bundle-path*)
    15   #+linuxppc-target
    16   (merge-pathnames "ppccl" *default-bundle-path*))
    1711
    1812
Note: See TracChangeset for help on using the changeset viewer.