Hi Charles!
In Portuguese (Eu vou escrever essa resposta em inglês porque talvez as soluções encontradas possam ser úteis para outros usuários).
I’m trying to run your library on my Mac and I’m having some issues (listed below):
- I had to change the function “ompdGetPdExe” in order to make the library find the correct file “pd” (code below).
- I’ve renamed all files from /resources/pd-patches/ (all spaces were removed from all pathnames).
(defun ompdGetPdExe ()
(let* (
(pd-exe
#+Windows(if (equal *app-name* “om-sharp”) (ompd-list->string-fun (list (namestring (get-pref-value :externals :PureData)))) (ompd-list->string-fun (list (namestring PD-EXE))))
#+mac (if (equal *app-name* “om-sharp”) (namestring (get-pref-value :externals :PureData)) (concatenate 'string (directory-namestring *PD-EXE*) “pd”)) ;(namestring *PD-EXE*)) **<===
#+linux(if (equal *app-name* “om-sharp”) (get-pref-value :externals :PureData) PD-EXE)
)
(pd-executable
(if (and (not (equal (software-type) “Linux”))
(not (equal (software-type) “Darwin”))) ;;;<===added this line with "and"
(if (not (or (equal (type-of (read-from-string pd-exe)) 'string) (equal (type-of (probe-file (read-from-string pd-exe))) 'pathname)))
(progn
(om::om-message-dialog “Error: Pd executable not found, set in Preferences”)
(if (equal *app-name* “om-sharp”)
(om::abort-eval)
(om::om-abort)))))))
; probe for pd executable
Now I believe PureData was found (It opens in background), but nothing happens when I try to run your first demonstration patch.
When I run “pd-open-patches” I’ve got this:
OM => #<mp:process Name “Open PureData” Priority 0 State “Running”>
:: /Applications/Pd-0.54-1.app/Contents/MacOS/pd -d 0 -audiooutdev 0 /Users/phraposo/OM/Libraries/OM-pd/resources/Pd-Patches/1-mk-senoide.pd
And I also can see an opened app called Wish.
When I try to run “pd~” nothing happens and I have to abort.
I’ve also noted that every time I run a function a new instance of PD is opened too.

Do you know how to fix this?
Many thanks!
Best,
Paulo