From burgisr at comcast.net Sun Dec 26 22:05:34 2004 From: burgisr at comcast.net (Rich Burgis) Date: Sun Dec 26 19:05:41 2004 Subject: [missing-sync-palmos-dev-talk] Compiling the Sample Memo Conduit Message-ID: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> I have downloaded the conduit samples from the Mark/Space website and attempted to compile the Cocoa Memo Conduit. When I do so XCode (1.5) says that the compile failed: Running custom shell script (1 error) Build failed (see build log for details) I can't find the build log and have no idea what is happening. I have not altered the project or any of the files. Does anyone have any ideas why this failed, or failing that where the custom build script or the build log can be found? Thanks Rich From sgruby at markspace.com Sun Dec 26 21:40:43 2004 From: sgruby at markspace.com (Scott Gruby) Date: Sun Dec 26 21:41:11 2004 Subject: [missing-sync-palmos-dev-talk] Compiling the Sample Memo Conduit In-Reply-To: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> References: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> Message-ID: On Dec 26, 2004, at 7:05 PM, Rich Burgis wrote: > I have downloaded the conduit samples from the Mark/Space website and > attempted to compile the Cocoa Memo Conduit. > > When I do so XCode (1.5) says that the compile failed: > > Running custom shell script (1 error) > Build failed (see build log for details) > > I can't find the build log and have no idea what is happening. I have > not altered the project or any of the files. > > Does anyone have any ideas why this failed, or failing that where the > custom build script or the build log can be found? > Most likely you don't have the Palm OS CDK 4.03 installed. It must be installed in the default location (/Applications) in order for the conduit to compile. Second, I recommend you take a look at the XCode documentation to understand the build log . The build log will tell you exactly why it doesn't compile. (If the CDK is in a different place, you'll need to edit the shell script to point to that location; we have a shell script that modifies GladPortDefs.h so that it comments out the definition of BOOL as it conflicts with the definition in Cocoa.) -- Scott Gruby Lead Engineer, Missing Sync for Palm OS Mark/Space, Inc. Please contact support@markspace.com for assistance with Mark/Space products. From burgisr at comcast.net Mon Dec 27 06:38:08 2004 From: burgisr at comcast.net (Rich Burgis) Date: Mon Dec 27 03:38:11 2004 Subject: [missing-sync-palmos-dev-talk] Compiling the Sample Memo Conduit In-Reply-To: References: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> Message-ID: Thank you. You can't imagine how much time I wasted searching the Console and other sources of logs. However, this is the message I'm seeing mv: rename /tmp/GladPortDefs.h to /Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h: Input/output error Both files exist in the appropriate locations. Both appear to have adequate permissions. (In fact I tried performing the mv as root and got the same result.) My /Applications/Palm OS CDK 4.03/Headers directory looks like this: ExpansionMgr.h GladPortDefs.h GladPortDefs.h.old hslog.h Include Macintosh Src SYNCMGR.H UserMgr.h VFSErr.h VFSMgr.h ls shows: -rw-r--r-- 1 richburg staff 5188 8 May 2002 /Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h and -rw-r--r-- 1 richburg wheel 5222 27 Dec 05:39 /tmp/GladPortDefs.h Any other suggestions? Thank you again. Rich On Dec 27, 2004, at 12:40 AM, Scott Gruby wrote: > > On Dec 26, 2004, at 7:05 PM, Rich Burgis wrote: > >> I have downloaded the conduit samples from the Mark/Space website and >> attempted to compile the Cocoa Memo Conduit. >> >> When I do so XCode (1.5) says that the compile failed: >> >> Running custom shell script (1 error) >> Build failed (see build log for details) >> >> I can't find the build log and have no idea what is happening. I have >> not altered the project or any of the files. >> >> Does anyone have any ideas why this failed, or failing that where the >> custom build script or the build log can be found? >> > > Most likely you don't have the Palm OS CDK 4.03 installed. It must be > installed in the default location (/Applications) in order for the > conduit to compile. Second, I recommend you take a look at the XCode > documentation to understand the build log > XcodeWorkflow/wf_organizing/chapter_3_section_4.html>. The build log > will tell you exactly why it doesn't compile. (If the CDK is in a > different place, you'll need to edit the shell script to point to that > location; we have a shell script that modifies GladPortDefs.h so that > it comments out the definition of BOOL as it conflicts with the > definition in Cocoa.) > -- > Scott Gruby > Lead Engineer, Missing Sync for Palm OS > Mark/Space, Inc. > > > Please contact support@markspace.com for assistance with Mark/Space > products. > > _______________________________________________ > missing-sync-palmos-dev-talk mailing list > missing-sync-palmos-dev-talk@lists.markspace.com > http://lists.markspace.com/mailman/listinfo/missing-sync-palmos-dev- > talk > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 2689 bytes Desc: not available Url : http://lists.markspace.com/pipermail/missing-sync-palmos-dev-talk/attachments/20041227/f6576fd1/attachment.bin From sgruby at markspace.com Mon Dec 27 07:44:08 2004 From: sgruby at markspace.com (Scott Gruby) Date: Mon Dec 27 07:44:33 2004 Subject: [missing-sync-palmos-dev-talk] Compiling the Sample Memo Conduit In-Reply-To: References: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> Message-ID: <2530F228-581E-11D9-982F-000D932F4F94@markspace.com> You can check GladPortDefs.h to see if BOOL is commented out. If it is, just remove the script build phase and move on. If it isn't, make the change yourself and remove the script build phase. I've actually updated the shell script build phase to be: if ! test -f "/Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h.old" then cp -n "/Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h" "/Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h.old" awk '{ gsub("\r", "\n"); print $0;}' "/Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h" | awk '!(/Mark/){gsub(/typedef unsigned char BOOL;/,"//typedef unsigned char BOOL; // Commented out by Mark/Space");}{print}' > /tmp/GladPortDefs.h mv -f /tmp/GladPortDefs.h "/Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h" fi So, since you have the .old file, then it won't even attempt the move. On Dec 27, 2004, at 3:38 AM, Rich Burgis wrote: > Thank you. You can't imagine how much time I wasted searching the > Console and other sources of logs. > > However, this is the message I'm seeing > > mv: rename /tmp/GladPortDefs.h to /Applications/Palm OS CDK > 4.03/Headers/GladPortDefs.h: Input/output error > > Both files exist in the appropriate locations. Both appear to have > adequate permissions. (In fact I tried performing the mv as root and > got the same result.) > > My /Applications/Palm OS CDK 4.03/Headers directory looks like this: > > ExpansionMgr.h > GladPortDefs.h > GladPortDefs.h.old > hslog.h > Include > Macintosh > Src > SYNCMGR.H > UserMgr.h > VFSErr.h > VFSMgr.h > > ls shows: > > -rw-r--r-- 1 richburg staff 5188 8 May 2002 /Applications/Palm OS > CDK 4.03/Headers/GladPortDefs.h > > and > > -rw-r--r-- 1 richburg wheel 5222 27 Dec 05:39 /tmp/GladPortDefs.h > > Any other suggestions? > > Thank you again. > > Rich > > On Dec 27, 2004, at 12:40 AM, Scott Gruby wrote: > >> >> On Dec 26, 2004, at 7:05 PM, Rich Burgis wrote: >> >>> I have downloaded the conduit samples from the Mark/Space website >>> and attempted to compile the Cocoa Memo Conduit. >>> >>> When I do so XCode (1.5) says that the compile failed: >>> >>> Running custom shell script (1 error) >>> Build failed (see build log for details) >>> >>> I can't find the build log and have no idea what is happening. I >>> have not altered the project or any of the files. >>> >>> Does anyone have any ideas why this failed, or failing that where >>> the custom build script or the build log can be found? >>> >> >> Most likely you don't have the Palm OS CDK 4.03 installed. It must be >> installed in the default location (/Applications) in order for the >> conduit to compile. Second, I recommend you take a look at the XCode >> documentation to understand the build log >> > XcodeWorkflow/wf_organizing/chapter_3_section_4.html>. The build log >> will tell you exactly why it doesn't compile. (If the CDK is in a >> different place, you'll need to edit the shell script to point to >> that location; we have a shell script that modifies GladPortDefs.h so >> that it comments out the definition of BOOL as it conflicts with the >> definition in Cocoa.) >> -- Scott Gruby Lead Engineer, Missing Sync for Palm OS Mark/Space, Inc. Please contact support@markspace.com for assistance with Mark/Space products. From seth at dworkin.net Mon Dec 27 11:51:18 2004 From: seth at dworkin.net (Seth Landsman) Date: Mon Dec 27 08:51:22 2004 Subject: [missing-sync-palmos-dev-talk] Compiling the Sample Memo Conduit In-Reply-To: References: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> Message-ID: <87ACE43E-5827-11D9-9351-000A95C4B2A4@dworkin.net> Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2361 bytes Desc: not available Url : http://lists.markspace.com/pipermail/missing-sync-palmos-dev-talk/attachments/20041227/9773b37e/smime-0001.bin From burgisr at comcast.net Mon Dec 27 21:50:33 2004 From: burgisr at comcast.net (Rich Burgis) Date: Mon Dec 27 18:50:39 2004 Subject: [missing-sync-palmos-dev-talk] Compiling the Sample Memo Conduit In-Reply-To: <87ACE43E-5827-11D9-9351-000A95C4B2A4@dworkin.net> References: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> <87ACE43E-5827-11D9-9351-000A95C4B2A4@dworkin.net> Message-ID: <3EAA77AF-587B-11D9-B374-000D93412382@comcast.net> Thank you. It turns out that the file was locked. Unchecking it made it work. Rich On Dec 27, 2004, at 11:51 AM, Seth Landsman wrote: > I fought this issue a few months ago, but never got around to actually > putting together a conduit. > > I found that the solution was to open the files and/or directory in > the Finder and uncheck the Read-Only box. Apparently, the unix-level > permissions and the finder-level permissions are necessarily related. > > -Seth > > On Dec 27, 2004, at 6:38 AM, Rich Burgis wrote: > >> Thank you. You can't imagine how much time I wasted searching the >> Console and other sources of logs. >> >> However, this is the message I'm seeing >> >> mv: rename /tmp/GladPortDefs.h to /Applications/Palm OS CDK >> 4.03/Headers/GladPortDefs.h: Input/output error >> >> Both files exist in the appropriate locations. Both appear to have >> adequate permissions. (In fact I tried performing the mv as root and >> got the same result.) >> >> My /Applications/Palm OS CDK 4.03/Headers directory looks like this: >> >> ExpansionMgr.h >> GladPortDefs.h >> GladPortDefs.h.old >> hslog.h >> Include >> Macintosh >> Src >> SYNCMGR.H >> UserMgr.h >> VFSErr.h >> VFSMgr.h >> >> ls shows: >> >> -rw-r--r-- 1 richburg staff 5188 8 May 2002 /Applications/Palm >> OS CDK 4.03/Headers/GladPortDefs.h >> >> and >> >> -rw-r--r-- 1 richburg wheel 5222 27 Dec 05:39 /tmp/GladPortDefs.h >> >> Any other suggestions? >> >> Thank you again. >> >> Rich >> >> On Dec 27, 2004, at 12:40 AM, Scott Gruby wrote: >> >>> >>> On Dec 26, 2004, at 7:05 PM, Rich Burgis wrote: >>> >>>> I have downloaded the conduit samples from the Mark/Space website >>>> and attempted to compile the Cocoa Memo Conduit. >>>> >>>> When I do so XCode (1.5) says that the compile failed: >>>> >>>> Running custom shell script (1 error) >>>> Build failed (see build log for details) >>>> >>>> I can't find the build log and have no idea what is happening. I >>>> have not altered the project or any of the files. >>>> >>>> Does anyone have any ideas why this failed, or failing that where >>>> the custom build script or the build log can be found? >>>> >>> >>> Most likely you don't have the Palm OS CDK 4.03 installed. It must >>> be installed in the default location (/Applications) in order for >>> the conduit to compile. Second, I recommend you take a look at the >>> XCode documentation to understand the build log >>> >> XcodeWorkflow/wf_organizing/chapter_3_section_4.html>. The build log >>> will tell you exactly why it doesn't compile. (If the CDK is in a >>> different place, you'll need to edit the shell script to point to >>> that location; we have a shell script that modifies GladPortDefs.h >>> so that it comments out the definition of BOOL as it conflicts with >>> the definition in Cocoa.) >>> -- >>> Scott Gruby >>> Lead Engineer, Missing Sync for Palm OS >>> Mark/Space, Inc. >>> >>> >>> Please contact support@markspace.com for assistance with Mark/Space >>> products. >>> >>> _______________________________________________ >>> missing-sync-palmos-dev-talk mailing list >>> missing-sync-palmos-dev-talk@lists.markspace.com >>> http://lists.markspace.com/mailman/listinfo/missing-sync-palmos-dev- >>> talk >>> >> _______________________________________________ >> missing-sync-palmos-dev-talk mailing list >> missing-sync-palmos-dev-talk@lists.markspace.com >> http://lists.markspace.com/mailman/listinfo/missing-sync-palmos-dev- >> talk > _______________________________________________ > missing-sync-palmos-dev-talk mailing list > missing-sync-palmos-dev-talk@lists.markspace.com > http://lists.markspace.com/mailman/listinfo/missing-sync-palmos-dev- > talk -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 3668 bytes Desc: not available Url : http://lists.markspace.com/pipermail/missing-sync-palmos-dev-talk/attachments/20041227/2c5c6e41/attachment.bin From burgisr at comcast.net Sun Dec 26 22:05:34 2004 From: burgisr at comcast.net (Rich Burgis) Date: Fri May 6 12:02:41 2005 Subject: [missing-sync-palmos-dev-talk] Compiling the Sample Memo Conduit Message-ID: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> I have downloaded the conduit samples from the Mark/Space website and attempted to compile the Cocoa Memo Conduit. When I do so XCode (1.5) says that the compile failed: Running custom shell script (1 error) Build failed (see build log for details) I can't find the build log and have no idea what is happening. I have not altered the project or any of the files. Does anyone have any ideas why this failed, or failing that where the custom build script or the build log can be found? Thanks Rich From sgruby at markspace.com Sun Dec 26 21:40:43 2004 From: sgruby at markspace.com (Scott Gruby) Date: Fri May 6 12:02:41 2005 Subject: [missing-sync-palmos-dev-talk] Compiling the Sample Memo Conduit In-Reply-To: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> References: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> Message-ID: On Dec 26, 2004, at 7:05 PM, Rich Burgis wrote: > I have downloaded the conduit samples from the Mark/Space website and > attempted to compile the Cocoa Memo Conduit. > > When I do so XCode (1.5) says that the compile failed: > > Running custom shell script (1 error) > Build failed (see build log for details) > > I can't find the build log and have no idea what is happening. I have > not altered the project or any of the files. > > Does anyone have any ideas why this failed, or failing that where the > custom build script or the build log can be found? > Most likely you don't have the Palm OS CDK 4.03 installed. It must be installed in the default location (/Applications) in order for the conduit to compile. Second, I recommend you take a look at the XCode documentation to understand the build log . The build log will tell you exactly why it doesn't compile. (If the CDK is in a different place, you'll need to edit the shell script to point to that location; we have a shell script that modifies GladPortDefs.h so that it comments out the definition of BOOL as it conflicts with the definition in Cocoa.) -- Scott Gruby Lead Engineer, Missing Sync for Palm OS Mark/Space, Inc. Please contact support@markspace.com for assistance with Mark/Space products. From burgisr at comcast.net Mon Dec 27 06:38:08 2004 From: burgisr at comcast.net (Rich Burgis) Date: Fri May 6 12:02:41 2005 Subject: [missing-sync-palmos-dev-talk] Compiling the Sample Memo Conduit In-Reply-To: References: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> Message-ID: Thank you. You can't imagine how much time I wasted searching the Console and other sources of logs. However, this is the message I'm seeing mv: rename /tmp/GladPortDefs.h to /Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h: Input/output error Both files exist in the appropriate locations. Both appear to have adequate permissions. (In fact I tried performing the mv as root and got the same result.) My /Applications/Palm OS CDK 4.03/Headers directory looks like this: ExpansionMgr.h GladPortDefs.h GladPortDefs.h.old hslog.h Include Macintosh Src SYNCMGR.H UserMgr.h VFSErr.h VFSMgr.h ls shows: -rw-r--r-- 1 richburg staff 5188 8 May 2002 /Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h and -rw-r--r-- 1 richburg wheel 5222 27 Dec 05:39 /tmp/GladPortDefs.h Any other suggestions? Thank you again. Rich On Dec 27, 2004, at 12:40 AM, Scott Gruby wrote: > > On Dec 26, 2004, at 7:05 PM, Rich Burgis wrote: > >> I have downloaded the conduit samples from the Mark/Space website and >> attempted to compile the Cocoa Memo Conduit. >> >> When I do so XCode (1.5) says that the compile failed: >> >> Running custom shell script (1 error) >> Build failed (see build log for details) >> >> I can't find the build log and have no idea what is happening. I have >> not altered the project or any of the files. >> >> Does anyone have any ideas why this failed, or failing that where the >> custom build script or the build log can be found? >> > > Most likely you don't have the Palm OS CDK 4.03 installed. It must be > installed in the default location (/Applications) in order for the > conduit to compile. Second, I recommend you take a look at the XCode > documentation to understand the build log > XcodeWorkflow/wf_organizing/chapter_3_section_4.html>. The build log > will tell you exactly why it doesn't compile. (If the CDK is in a > different place, you'll need to edit the shell script to point to that > location; we have a shell script that modifies GladPortDefs.h so that > it comments out the definition of BOOL as it conflicts with the > definition in Cocoa.) > -- > Scott Gruby > Lead Engineer, Missing Sync for Palm OS > Mark/Space, Inc. > > > Please contact support@markspace.com for assistance with Mark/Space > products. > > _______________________________________________ > missing-sync-palmos-dev-talk mailing list > missing-sync-palmos-dev-talk@lists.markspace.com > http://lists.markspace.com/mailman/listinfo/missing-sync-palmos-dev- > talk > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 2689 bytes Desc: not available Url : http://lists.markspace.com/pipermail/missing-sync-palmos-dev-talk/attachments/20041227/f6576fd1/attachment-0002.bin From sgruby at markspace.com Mon Dec 27 07:44:08 2004 From: sgruby at markspace.com (Scott Gruby) Date: Fri May 6 12:02:41 2005 Subject: [missing-sync-palmos-dev-talk] Compiling the Sample Memo Conduit In-Reply-To: References: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> Message-ID: <2530F228-581E-11D9-982F-000D932F4F94@markspace.com> You can check GladPortDefs.h to see if BOOL is commented out. If it is, just remove the script build phase and move on. If it isn't, make the change yourself and remove the script build phase. I've actually updated the shell script build phase to be: if ! test -f "/Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h.old" then cp -n "/Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h" "/Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h.old" awk '{ gsub("\r", "\n"); print $0;}' "/Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h" | awk '!(/Mark/){gsub(/typedef unsigned char BOOL;/,"//typedef unsigned char BOOL; // Commented out by Mark/Space");}{print}' > /tmp/GladPortDefs.h mv -f /tmp/GladPortDefs.h "/Applications/Palm OS CDK 4.03/Headers/GladPortDefs.h" fi So, since you have the .old file, then it won't even attempt the move. On Dec 27, 2004, at 3:38 AM, Rich Burgis wrote: > Thank you. You can't imagine how much time I wasted searching the > Console and other sources of logs. > > However, this is the message I'm seeing > > mv: rename /tmp/GladPortDefs.h to /Applications/Palm OS CDK > 4.03/Headers/GladPortDefs.h: Input/output error > > Both files exist in the appropriate locations. Both appear to have > adequate permissions. (In fact I tried performing the mv as root and > got the same result.) > > My /Applications/Palm OS CDK 4.03/Headers directory looks like this: > > ExpansionMgr.h > GladPortDefs.h > GladPortDefs.h.old > hslog.h > Include > Macintosh > Src > SYNCMGR.H > UserMgr.h > VFSErr.h > VFSMgr.h > > ls shows: > > -rw-r--r-- 1 richburg staff 5188 8 May 2002 /Applications/Palm OS > CDK 4.03/Headers/GladPortDefs.h > > and > > -rw-r--r-- 1 richburg wheel 5222 27 Dec 05:39 /tmp/GladPortDefs.h > > Any other suggestions? > > Thank you again. > > Rich > > On Dec 27, 2004, at 12:40 AM, Scott Gruby wrote: > >> >> On Dec 26, 2004, at 7:05 PM, Rich Burgis wrote: >> >>> I have downloaded the conduit samples from the Mark/Space website >>> and attempted to compile the Cocoa Memo Conduit. >>> >>> When I do so XCode (1.5) says that the compile failed: >>> >>> Running custom shell script (1 error) >>> Build failed (see build log for details) >>> >>> I can't find the build log and have no idea what is happening. I >>> have not altered the project or any of the files. >>> >>> Does anyone have any ideas why this failed, or failing that where >>> the custom build script or the build log can be found? >>> >> >> Most likely you don't have the Palm OS CDK 4.03 installed. It must be >> installed in the default location (/Applications) in order for the >> conduit to compile. Second, I recommend you take a look at the XCode >> documentation to understand the build log >> > XcodeWorkflow/wf_organizing/chapter_3_section_4.html>. The build log >> will tell you exactly why it doesn't compile. (If the CDK is in a >> different place, you'll need to edit the shell script to point to >> that location; we have a shell script that modifies GladPortDefs.h so >> that it comments out the definition of BOOL as it conflicts with the >> definition in Cocoa.) >> -- Scott Gruby Lead Engineer, Missing Sync for Palm OS Mark/Space, Inc. Please contact support@markspace.com for assistance with Mark/Space products. From seth at dworkin.net Mon Dec 27 11:51:18 2004 From: seth at dworkin.net (Seth Landsman) Date: Fri May 6 12:02:41 2005 Subject: [missing-sync-palmos-dev-talk] Compiling the Sample Memo Conduit In-Reply-To: References: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> Message-ID: <87ACE43E-5827-11D9-9351-000A95C4B2A4@dworkin.net> Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2361 bytes Desc: not available Url : http://lists.markspace.com/pipermail/missing-sync-palmos-dev-talk/attachments/20041227/9773b37e/smime-0002.bin From burgisr at comcast.net Mon Dec 27 21:50:33 2004 From: burgisr at comcast.net (Rich Burgis) Date: Fri May 6 12:02:41 2005 Subject: [missing-sync-palmos-dev-talk] Compiling the Sample Memo Conduit In-Reply-To: <87ACE43E-5827-11D9-9351-000A95C4B2A4@dworkin.net> References: <2CC83F2C-57B4-11D9-B69C-000D93412382@comcast.net> <87ACE43E-5827-11D9-9351-000A95C4B2A4@dworkin.net> Message-ID: <3EAA77AF-587B-11D9-B374-000D93412382@comcast.net> Thank you. It turns out that the file was locked. Unchecking it made it work. Rich On Dec 27, 2004, at 11:51 AM, Seth Landsman wrote: > I fought this issue a few months ago, but never got around to actually > putting together a conduit. > > I found that the solution was to open the files and/or directory in > the Finder and uncheck the Read-Only box. Apparently, the unix-level > permissions and the finder-level permissions are necessarily related. > > -Seth > > On Dec 27, 2004, at 6:38 AM, Rich Burgis wrote: > >> Thank you. You can't imagine how much time I wasted searching the >> Console and other sources of logs. >> >> However, this is the message I'm seeing >> >> mv: rename /tmp/GladPortDefs.h to /Applications/Palm OS CDK >> 4.03/Headers/GladPortDefs.h: Input/output error >> >> Both files exist in the appropriate locations. Both appear to have >> adequate permissions. (In fact I tried performing the mv as root and >> got the same result.) >> >> My /Applications/Palm OS CDK 4.03/Headers directory looks like this: >> >> ExpansionMgr.h >> GladPortDefs.h >> GladPortDefs.h.old >> hslog.h >> Include >> Macintosh >> Src >> SYNCMGR.H >> UserMgr.h >> VFSErr.h >> VFSMgr.h >> >> ls shows: >> >> -rw-r--r-- 1 richburg staff 5188 8 May 2002 /Applications/Palm >> OS CDK 4.03/Headers/GladPortDefs.h >> >> and >> >> -rw-r--r-- 1 richburg wheel 5222 27 Dec 05:39 /tmp/GladPortDefs.h >> >> Any other suggestions? >> >> Thank you again. >> >> Rich >> >> On Dec 27, 2004, at 12:40 AM, Scott Gruby wrote: >> >>> >>> On Dec 26, 2004, at 7:05 PM, Rich Burgis wrote: >>> >>>> I have downloaded the conduit samples from the Mark/Space website >>>> and attempted to compile the Cocoa Memo Conduit. >>>> >>>> When I do so XCode (1.5) says that the compile failed: >>>> >>>> Running custom shell script (1 error) >>>> Build failed (see build log for details) >>>> >>>> I can't find the build log and have no idea what is happening. I >>>> have not altered the project or any of the files. >>>> >>>> Does anyone have any ideas why this failed, or failing that where >>>> the custom build script or the build log can be found? >>>> >>> >>> Most likely you don't have the Palm OS CDK 4.03 installed. It must >>> be installed in the default location (/Applications) in order for >>> the conduit to compile. Second, I recommend you take a look at the >>> XCode documentation to understand the build log >>> >> XcodeWorkflow/wf_organizing/chapter_3_section_4.html>. The build log >>> will tell you exactly why it doesn't compile. (If the CDK is in a >>> different place, you'll need to edit the shell script to point to >>> that location; we have a shell script that modifies GladPortDefs.h >>> so that it comments out the definition of BOOL as it conflicts with >>> the definition in Cocoa.) >>> -- >>> Scott Gruby >>> Lead Engineer, Missing Sync for Palm OS >>> Mark/Space, Inc. >>> >>> >>> Please contact support@markspace.com for assistance with Mark/Space >>> products. >>> >>> _______________________________________________ >>> missing-sync-palmos-dev-talk mailing list >>> missing-sync-palmos-dev-talk@lists.markspace.com >>> http://lists.markspace.com/mailman/listinfo/missing-sync-palmos-dev- >>> talk >>> >> _______________________________________________ >> missing-sync-palmos-dev-talk mailing list >> missing-sync-palmos-dev-talk@lists.markspace.com >> http://lists.markspace.com/mailman/listinfo/missing-sync-palmos-dev- >> talk > _______________________________________________ > missing-sync-palmos-dev-talk mailing list > missing-sync-palmos-dev-talk@lists.markspace.com > http://lists.markspace.com/mailman/listinfo/missing-sync-palmos-dev- > talk -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 3668 bytes Desc: not available Url : http://lists.markspace.com/pipermail/missing-sync-palmos-dev-talk/attachments/20041227/2c5c6e41/attachment-0002.bin