2007-10-01から1ヶ月間の記事一覧

zfs on Leopard

こんなの見付けた。10.5.0 /usr/sbin/zfs $ sudo zfs ZFS Readonly implemntation is loaded! To download the full ZFS read/write kext with all functionality enabled, please go to http://developer.apple.com Read-Only ZFS Implementation missing c…

GNU Screen on Leopard

noraports には適用済みだよ。 --- pty.c.orig 2007-10-27 20:37:35.000000000 +0900 +++ pty.c 2007-10-27 20:40:44.000000000 +0900 @@ -34,7 +34,7 @@ #endif /* for solaris 2.1, Unixware (SVR4.2) and possibly others */ -#ifdef HAVE_SVR4_PTYS +#if…

Re: (locate-executable)

id:antipop にいろいろ教えてもらったんで直してるとこだよ ちょっと短かくした。 (defun locate-executable (basename) (let ((suffix (list nil ".exe" ".com" ".cmd" ".bat")) (return-value nil)) (dolist (s suffix) (setq return-value (or return-val…

(locate-executable)

仕事が暇めだったので、でっち上げてみた。 これで良いはず >< (defun locate-executable (basename) (let ((suffix (list nil ".exe" ".com" ".cmd" ".bat")) (exist-flag nil) (return-value nil)) (dolist (s suffix) (unless exist-flag (setq return-…