Mac::Glue script
|
|
Thread rating:  |
Mark Wheeler - 26 Apr 2005 00:59 GMT Hi,
I've been thinking about installing Mac::Glue to do the following:
The script will open Internet Connect, dial a number (given by the script). When a connection is established, a sound file will be played 5 X (or what ever number of repetitions). After the connection is lost (phone is hung up after listening to the sound file), the connection is closed, Internet Connect quits and the script ends.
Is Mac::Glue the right tool for this job? Is there a script already in existence that does the above? Is what I am wanting to do even possible?
Thanks for your input,
Mark
Chris Nandor - 26 Apr 2005 16:24 GMT > The script will open Internet Connect, dial a number (given by the > script). I don't know if you can do that with Internet Connect. This sorta works:
my $ic = new Mac::Glue 'Internet Connect'; my $conn = $ic->prop('BlueTooth configuration')->get; my $status = $conn->prop('status'); my $state = $status->prop('state');
my $number = '*99#';
$conn->connect(to_telephone_number => $number) if $state->get == 0;
while (1) { last if $state->get == 8; sleep 1; }
(That works for my Bluetooth modem, you can try it with 'PPP configuration' too, I'm sure it should work the same.)
But in my test, it dials the main configuration no matter what the value of $number. And I cannot select multiple configurations. (These are apparent limitations in Internet Config itself, not Mac::Glue.)
> When a connection is established, a sound file will be played > 5 X (or what ever number of repetitions). You can do this to some degree with Mac::Sound. I think you can't do it with any old sound, that you need to have it in a resource file. The Sound.t file shows an example. Another option is to use SysBeep(30) or somesuch, to just get the system beep.
> After the connection is lost > (phone is hung up after listening to the sound file), the connection is > closed, Internet Connect quits and the script ends. Just keep checking $state->get until it is false, apparently. I didn't look too hard to get an accurate and complete list of $state values. It's 0 when not connected, 8 when connected, and 1-7 while in different connection phases (dialing, authentication, etc.).
 Signature Chris Nandor pudge@pobox.com http://pudge.net/ Open Source Technology Group pudge@ostg.com http://ostg.com/
Mark Wheeler - 26 Apr 2005 17:21 GMT Hi Chris,
Thanks for the input. I'll start working on it and see what I can come up with. One question: Is Mac::Sound a module? I've not heard of it.
Thanks,
Mark
In article <e609f105d8eef69c191f2386dc56ae2f@comcast.net>, musicarr@comcast.net (Mark Wheeler) wrote:
> The script will open Internet Connect, dial a number (given by the > script). I don't know if you can do that with Internet Connect. This sorta works:
my $ic = new Mac::Glue 'Internet Connect'; my $conn = $ic->prop('BlueTooth configuration')->get; my $status = $conn->prop('status'); my $state = $status->prop('state');
my $number = '*99#';
$conn->connect(to_telephone_number => $number) if $state->get == 0;
while (1) { last if $state->get == 8; sleep 1; }
(That works for my Bluetooth modem, you can try it with 'PPP configuration' too, I'm sure it should work the same.)
But in my test, it dials the main configuration no matter what the value of $number. And I cannot select multiple configurations. (These are apparent limitations in Internet Config itself, not Mac::Glue.)
> When a connection is established, a sound file will be played > 5 X (or what ever number of repetitions). You can do this to some degree with Mac::Sound. I think you can't do it with any old sound, that you need to have it in a resource file. The Sound.t file shows an example. Another option is to use SysBeep(30) or somesuch, to just get the system beep.
> After the connection is lost > (phone is hung up after listening to the sound file), the connection is > closed, Internet Connect quits and the script ends. Just keep checking $state->get until it is false, apparently. I didn't look too hard to get an accurate and complete list of $state values. It's 0 when not connected, 8 when connected, and 1-7 while in different connection phases (dialing, authentication, etc.).
 Signature Chris Nandor pudge@pobox.com http://pudge.net/ Open Source Technology Group pudge@ostg.com http://ostg.com/
Chris Nandor - 27 Apr 2005 02:27 GMT > Thanks for the input. I'll start working on it and see what I can come > up with. One question: Is Mac::Sound a module? I've not heard of it. It's included with Mac-Carbon, which is a prereq for Mac::Glue.
 Signature Chris Nandor pudge@pobox.com http://pudge.net/ Open Source Technology Group pudge@ostg.com http://ostg.com/
Mark Wheeler - 27 Apr 2005 17:22 GMT Hi Chris,
I tried to install Mac::Glue and received an error. Here is the command I used: cpan Mac::Glue
It looks like the cpan module initialiezed:
/Users/markwhee/.cpan/CPAN/MyConfig.pm initialized.
and then gave me the option for manual or auto configuration. I chose auto, as I am not familiar with this process. I've never installed a module using cpan before and thought I'd give it a try.
After automatically entering in info, it tried to download and install Mac::Glue. Here is the terminal output of that. ------------------------------------------------------------------------ --------------- Running install for module Mac::Glue Running make for C/CN/CNANDOR/Mac-Glue-1.23.tar.gz LWP not available Fetching with Net::FTP: ftp://ftp.perl.org/pub/CPAN/authors/id/C/CN/CNANDOR/Mac-Glue -1.23.tar.gz CPAN: Digest::MD5 loaded ok LWP not available Fetching with Net::FTP: ftp://ftp.perl.org/pub/CPAN/authors/id/C/CN/CNANDOR/CHECKSUMS Checksum for /Users/markwhee/.cpan/sources/authors/id/C/CN/CNANDOR/Mac-Glue -1.23.tar.gz ok Scanning cache /Users/markwhee/.cpan/build for sizes Mac-Glue-1.23/ Mac-Glue-1.23/Changes Mac-Glue-1.23/ex/ Mac-Glue-1.23/ex/00_README Mac-Glue-1.23/ex/address_book Mac-Glue-1.23/ex/appleworks_stuff Mac-Glue-1.23/ex/bettertelnet_login Mac-Glue-1.23/ex/dialog_director_more_lists Mac-Glue-1.23/ex/dialog_director_stuff Mac-Glue-1.23/ex/eudora_make_hidden Mac-Glue-1.23/ex/eudora_send_email Mac-Glue-1.23/ex/filemaker_extract_data Mac-Glue-1.23/ex/finder_clean_up Mac-Glue-1.23/ex/finder_get_system_folder_files Mac-Glue-1.23/ex/finder_label Mac-Glue-1.23/ex/finder_label_and_beep Mac-Glue-1.23/ex/finder_label_and_beep_cool_version Mac-Glue-1.23/ex/finder_volume_names Mac-Glue-1.23/ex/handle_errors Mac-Glue-1.23/ex/interarchy_stuff Mac-Glue-1.23/ex/itunes Mac-Glue-1.23/ex/netscape_open_window Mac-Glue-1.23/ex/progress_bar_stuff Mac-Glue-1.23/ex/sherlock_search_drive Mac-Glue-1.23/ex/sherlock_search_internet Mac-Glue-1.23/ex/simple_text_and_prefab_player Mac-Glue-1.23/ex/url_access Mac-Glue-1.23/Glue.pm Mac-Glue-1.23/lib/ Mac-Glue-1.23/lib/Mac/ Mac-Glue-1.23/lib/Mac/AETE/ Mac-Glue-1.23/lib/Mac/AETE/App.pm Mac-Glue-1.23/lib/Mac/AETE/Dialect.pm Mac-Glue-1.23/lib/Mac/AETE/Format/ Mac-Glue-1.23/lib/Mac/AETE/Format/Converter.pm Mac-Glue-1.23/lib/Mac/AETE/Format/Dictionary.pm Mac-Glue-1.23/lib/Mac/AETE/Format/Glue.pm Mac-Glue-1.23/lib/Mac/AETE/Parser.pm Mac-Glue-1.23/lib/Mac/Glue/ Mac-Glue-1.23/lib/Mac/Glue/Common.pm Mac-Glue-1.23/make_glues Mac-Glue-1.23/Makefile.PL Mac-Glue-1.23/MANIFEST Mac-Glue-1.23/MANIFEST.SKIP Mac-Glue-1.23/README Mac-Glue-1.23/scripts/ Mac-Glue-1.23/scripts/gluedialect.PL Mac-Glue-1.23/scripts/gluedoc.PL Mac-Glue-1.23/scripts/glueedit.PL Mac-Glue-1.23/scripts/gluemac.PL Mac-Glue-1.23/scripts/gluescriptadds.PL Mac-Glue-1.23/scripts/show_glue_pods Mac-Glue-1.23/t/ Mac-Glue-1.23/t/glue.t Mac-Glue-1.23/t/pod.t
CPAN.pm: Going to build C/CN/CNANDOR/Mac-Glue-1.23.tar.gz
Checking if your kit is complete... Looks good Warning: prerequisite MLDBM 0 not found. Warning: prerequisite Mac::AppleEvents 1.3 not found. Warning: prerequisite Mac::AppleEvents::Simple 1.14 not found. Warning: prerequisite Mac::Apps::Launch 1.9 not found. Warning: prerequisite Mac::Errors 0.91 not found. Warning: prerequisite Mac::Files 1.09 not found. Warning: prerequisite Mac::Processes 1.04 not found. Warning: prerequisite Time::Epoch 0.02 not found.
Error: Unable to locate installed Perl libraries or Perl source code.
It is recommended that you install perl in a standard location before building extensions. Some precompiled versions of perl do not contain these header files, so you cannot build extensions. In such a case, please build and install your perl from a fresh perl distribution. It usually solves this kind of problem.
(You get this message, because MakeMaker could not find "/System/Library/Perl/5.8.1/darwin-thread-multi-2level/CORE/perl.h") # Looks like your test died before it could output anything. Running make test Make had some problems, maybe interrupted? Won't test Running make install Make had some problems, maybe interrupted? Won't install ------------------------------------------------------------------------ --------- What am I missing? Do I need to install the Developer Tools? Any help would be appreciated.
Thanks very much,
Mark
In article <e609f105d8eef69c191f2386dc56ae2f@comcast.net>, musicarr@comcast.net (Mark Wheeler) wrote:
> The script will open Internet Connect, dial a number (given by the > script). I don't know if you can do that with Internet Connect. This sorta works:
my $ic = new Mac::Glue 'Internet Connect'; my $conn = $ic->prop('BlueTooth configuration')->get; my $status = $conn->prop('status'); my $state = $status->prop('state');
my $number = '*99#';
$conn->connect(to_telephone_number => $number) if $state->get == 0;
while (1) { last if $state->get == 8; sleep 1; }
(That works for my Bluetooth modem, you can try it with 'PPP configuration' too, I'm sure it should work the same.)
But in my test, it dials the main configuration no matter what the value of $number. And I cannot select multiple configurations. (These are apparent limitations in Internet Config itself, not Mac::Glue.)
> When a connection is established, a sound file will be played > 5 X (or what ever number of repetitions). You can do this to some degree with Mac::Sound. I think you can't do it with any old sound, that you need to have it in a resource file. The Sound.t file shows an example. Another option is to use SysBeep(30) or somesuch, to just get the system beep.
> After the connection is lost > (phone is hung up after listening to the sound file), the connection is > closed, Internet Connect quits and the script ends. Just keep checking $state->get until it is false, apparently. I didn't look too hard to get an accurate and complete list of $state values. It's 0 when not connected, 8 when connected, and 1-7 while in different connection phases (dialing, authentication, etc.).
 Signature Chris Nandor pudge@pobox.com http://pudge.net/ Open Source Technology Group pudge@ostg.com http://ostg.com/
Sherm Pendley - 27 Apr 2005 17:35 GMT > Error: Unable to locate installed Perl libraries or Perl source code. > [quoted text clipped - 15 lines] > What am I missing? Do I need to install the Developer Tools? Any > help would be appreciated. You appear to be running Panther, so what you want to install is Xcode. That's what used to be called "Developer Tools" on Jaguar and older - Apple renamed it. And to make matters even more confusing, Xcode is also the name of the IDE app that's included with the Xcode package...
sherm--
Cocoa programming in Perl: http://camelbones.sourceforge.net Hire me! My resume: http://www.dot-app.org
Mark Wheeler - 27 Apr 2005 17:50 GMT You appear to be running Panther, so what you want to install is Xcode. That's what used to be called "Developer Tools" on Jaguar and older - Apple renamed it. And to make matters even more confusing, Xcode is also the name of the IDE app that's included with the Xcode package...
sherm--
----------------------------------
So I need to install Xcode and then: cpan Mac::Glue again in the terminal. Is that right? I'm assuming the Xcode installation will include those missing modules, and the then Mac::Glue will install/build correctly.
Thanks,
Mark
Sherm Pendley - 27 Apr 2005 17:54 GMT > So I need to install Xcode and then: cpan Mac::Glue again in the > terminal. Is that right? Basically. However you install this or other modules, you'll need to install Xcode first.
> I'm assuming the Xcode installation will include those missing modules No, Xcode doesn't install any Perl modules at all. All it does is install the tools and header files that will allow the CPAN shell to compile modules. The CPAN shell should also resolve any dependencies, and install the prerequisite modules too.
sherm--
Cocoa programming in Perl: http://camelbones.sourceforge.net Hire me! My resume: http://www.dot-app.org
Mark Wheeler - 27 Apr 2005 18:08 GMT Got it. Thanks. I'll give it a go.
Mark
On Apr 27, 2005, at 12:50 PM, Mark Wheeler wrote:
> So I need to install Xcode and then: cpan Mac::Glue again in the > terminal. Is that right? Basically. However you install this or other modules, you'll need to install Xcode first.
> I'm assuming the Xcode installation will include those missing modules No, Xcode doesn't install any Perl modules at all. All it does is install the tools and header files that will allow the CPAN shell to compile modules. The CPAN shell should also resolve any dependencies, and install the prerequisite modules too.
sherm--
Cocoa programming in Perl: http://camelbones.sourceforge.net Hire me! My resume: http://www.dot-app.org
Mark Wheeler - 28 Apr 2005 17:14 GMT Hi all,
OK, I installed Xcode - 1.1 then upgraded to 1.5, and ran the cpan Mac::Glue again and still had problems. Here are snipits of the the output:
------------------------------------
Removing previously used /Users/markwhee/.cpan/build/Mac-Glue-1.23
CPAN.pm: Going to build C/CN/CNANDOR/Mac-Glue-1.23.tar.gz
Checking if your kit is complete... Looks good Warning: prerequisite MLDBM 0 not found. Warning: prerequisite Mac::AppleEvents 1.3 not found. Warning: prerequisite Mac::AppleEvents::Simple 1.14 not found. Warning: prerequisite Mac::Apps::Launch 1.9 not found. Warning: prerequisite Mac::Errors 0.91 not found. Warning: prerequisite Mac::Files 1.09 not found. Warning: prerequisite Mac::Processes 1.04 not found. Warning: prerequisite Time::Epoch 0.02 not found. Writing Makefile for Mac::Glue ---- Unsatisfied dependencies detected during [C/CN/CNANDOR/Mac-Glue-1.23.tar.gz] ----- Mac::AppleEvents Time::Epoch Mac::Processes Mac::Errors Mac::Apps::Launch Mac::Files MLDBM Mac::AppleEvents::Simple Shall I follow them and prepend them to the queue of modules we are processing right now? [yes] yes Running make test Delayed until after prerequisites Running make install Delayed until after prerequisites Running install for module Mac::AppleEvents Running make for C/CN/CNANDOR/Mac-Carbon-0.72.tar.gz Checksum for /Users/markwhee/.cpan/sources/authors/id/C/CN/CNANDOR/Mac-Carbon -0.72.tar.gz ok . . (lists contents of Mac-Carbon) . .
-----------------------------------
It continues on for a while installing modules (presumably) and then gives this final output:
-----------------------------------
Running make for C/CN/CNANDOR/Mac-Glue-1.23.tar.gz Is already unwrapped into directory /Users/markwhee/.cpan/build/Mac-Glue-1.23
CPAN.pm: Going to build C/CN/CNANDOR/Mac-Glue-1.23.tar.gz
-- NOT OK Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible
-----------------------------------
There seems to be a lot of:
Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible
throughout the whole process. I must be missing something. Does anyone have any ideas?
Thanks,
Mark
Chris Nandor - 28 Apr 2005 20:47 GMT > OK, I installed Xcode - 1.1 then upgraded to 1.5, and ran the cpan > Mac::Glue again and still had problems. Here are snipits of the the > output: You didn't include any actual error output.
> It continues on for a while installing modules (presumably) and then > gives this final output: [quoted text clipped - 12 lines] > Running make install > make had returned bad status, install seems impossible Somewhere in the snipped output, there would be the make output, showing an error.
 Signature Chris Nandor pudge@pobox.com http://pudge.net/ Open Source Technology Group pudge@ostg.com http://ostg.com/
Mark Wheeler - 28 Apr 2005 21:16 GMT Forgive the long reply, but I'm not sure exactly what to look for, so here is the complete output:
-----------------------
Mark-Wheelers-Computer:~ markwhee$ cpan Mac::Glue CPAN: Storable loaded ok Going to read /Users/markwhee/.cpan/Metadata Database was generated on Tue, 26 Apr 2005 23:56:03 GMT Running install for module Mac::Glue Running make for C/CN/CNANDOR/Mac-Glue-1.23.tar.gz CPAN: Digest::MD5 loaded ok Checksum for /Users/markwhee/.cpan/sources/authors/id/C/CN/CNANDOR/Mac-Glue -1.23.tar.gz ok Scanning cache /Users/markwhee/.cpan/build for sizes Mac-Glue-1.23/ Mac-Glue-1.23/Changes Mac-Glue-1.23/ex/ Mac-Glue-1.23/ex/00_README Mac-Glue-1.23/ex/address_book Mac-Glue-1.23/ex/appleworks_stuff Mac-Glue-1.23/ex/bettertelnet_login Mac-Glue-1.23/ex/dialog_director_more_lists Mac-Glue-1.23/ex/dialog_director_stuff Mac-Glue-1.23/ex/eudora_make_hidden Mac-Glue-1.23/ex/eudora_send_email Mac-Glue-1.23/ex/filemaker_extract_data Mac-Glue-1.23/ex/finder_clean_up Mac-Glue-1.23/ex/finder_get_system_folder_files Mac-Glue-1.23/ex/finder_label Mac-Glue-1.23/ex/finder_label_and_beep Mac-Glue-1.23/ex/finder_label_and_beep_cool_version Mac-Glue-1.23/ex/finder_volume_names Mac-Glue-1.23/ex/handle_errors Mac-Glue-1.23/ex/interarchy_stuff Mac-Glue-1.23/ex/itunes Mac-Glue-1.23/ex/netscape_open_window Mac-Glue-1.23/ex/progress_bar_stuff Mac-Glue-1.23/ex/sherlock_search_drive Mac-Glue-1.23/ex/sherlock_search_internet Mac-Glue-1.23/ex/simple_text_and_prefab_player Mac-Glue-1.23/ex/url_access Mac-Glue-1.23/Glue.pm Mac-Glue-1.23/lib/ Mac-Glue-1.23/lib/Mac/ Mac-Glue-1.23/lib/Mac/AETE/ Mac-Glue-1.23/lib/Mac/AETE/App.pm Mac-Glue-1.23/lib/Mac/AETE/Dialect.pm Mac-Glue-1.23/lib/Mac/AETE/Format/ Mac-Glue-1.23/lib/Mac/AETE/Format/Converter.pm Mac-Glue-1.23/lib/Mac/AETE/Format/Dictionary.pm Mac-Glue-1.23/lib/Mac/AETE/Format/Glue.pm Mac-Glue-1.23/lib/Mac/AETE/Parser.pm Mac-Glue-1.23/lib/Mac/Glue/ Mac-Glue-1.23/lib/Mac/Glue/Common.pm Mac-Glue-1.23/make_glues Mac-Glue-1.23/Makefile.PL Mac-Glue-1.23/MANIFEST Mac-Glue-1.23/MANIFEST.SKIP Mac-Glue-1.23/README Mac-Glue-1.23/scripts/ Mac-Glue-1.23/scripts/gluedialect.PL Mac-Glue-1.23/scripts/gluedoc.PL Mac-Glue-1.23/scripts/glueedit.PL Mac-Glue-1.23/scripts/gluemac.PL Mac-Glue-1.23/scripts/gluescriptadds.PL Mac-Glue-1.23/scripts/show_glue_pods Mac-Glue-1.23/t/ Mac-Glue-1.23/t/glue.t Mac-Glue-1.23/t/pod.t Removing previously used /Users/markwhee/.cpan/build/Mac-Glue-1.23
CPAN.pm: Going to build C/CN/CNANDOR/Mac-Glue-1.23.tar.gz
Checking if your kit is complete... Looks good Warning: prerequisite MLDBM 0 not found. Warning: prerequisite Mac::AppleEvents 1.3 not found. Warning: prerequisite Mac::AppleEvents::Simple 1.14 not found. Warning: prerequisite Mac::Apps::Launch 1.9 not found. Warning: prerequisite Mac::Errors 0.91 not found. Warning: prerequisite Mac::Files 1.09 not found. Warning: prerequisite Mac::Processes 1.04 not found. Warning: prerequisite Time::Epoch 0.02 not found. Writing Makefile for Mac::Glue ---- Unsatisfied dependencies detected during [C/CN/CNANDOR/Mac-Glue-1.23.tar.gz] ----- Mac::AppleEvents Time::Epoch Mac::Processes Mac::Errors Mac::Apps::Launch Mac::Files MLDBM Mac::AppleEvents::Simple Shall I follow them and prepend them to the queue of modules we are processing right now? [yes] yes Running make test Delayed until after prerequisites Running make install Delayed until after prerequisites Running install for module Mac::AppleEvents Running make for C/CN/CNANDOR/Mac-Carbon-0.72.tar.gz Checksum for /Users/markwhee/.cpan/sources/authors/id/C/CN/CNANDOR/Mac-Carbon -0.72.tar.gz ok Mac-Carbon-0.72/ Mac-Carbon-0.72/AppleEvents/ Mac-Carbon-0.72/AppleEvents/AppleEvents.pm Mac-Carbon-0.72/AppleEvents/AppleEvents.xs Mac-Carbon-0.72/AppleEvents/CarbonAE.h Mac-Carbon-0.72/AppleEvents/eg/ Mac-Carbon-0.72/AppleEvents/eg/AEReceiver.eg Mac-Carbon-0.72/AppleEvents/eg/AEReceiver2.eg Mac-Carbon-0.72/AppleEvents/eg/AESender.eg Mac-Carbon-0.72/AppleEvents/eg/AESender2.eg Mac-Carbon-0.72/AppleEvents/Makefile.PL Mac-Carbon-0.72/AppleEvents/PerlAEUtils.cp Mac-Carbon-0.72/AppleEvents/PerlAEUtils.h Mac-Carbon-0.72/Carbon.h Mac-Carbon-0.72/Carbon.pm Mac-Carbon-0.72/Changes Mac-Carbon-0.72/common.pl Mac-Carbon-0.72/Components/ Mac-Carbon-0.72/Components/Components.pm Mac-Carbon-0.72/Components/Components.xs Mac-Carbon-0.72/Components/eg/ Mac-Carbon-0.72/Components/eg/ListComponents.plx Mac-Carbon-0.72/Components/Makefile.PL Mac-Carbon-0.72/Components/t/ Mac-Carbon-0.72/Components/t/Components.t Mac-Carbon-0.72/Components/typemap Mac-Carbon-0.72/Files/ Mac-Carbon-0.72/Files/Files.pm Mac-Carbon-0.72/Files/Files.xs Mac-Carbon-0.72/Files/Makefile.PL Mac-Carbon-0.72/Files/t/ Mac-Carbon-0.72/Files/t/Alias.t Mac-Carbon-0.72/Files/t/Constants.t Mac-Carbon-0.72/Files/t/Files.t Mac-Carbon-0.72/Files/t/Info.t Mac-Carbon-0.72/Files/typemap Mac-Carbon-0.72/Gestalt/ Mac-Carbon-0.72/Gestalt/Gestalt.pm Mac-Carbon-0.72/Gestalt/Gestalt.xs Mac-Carbon-0.72/Gestalt/Makefile.PL Mac-Carbon-0.72/Gestalt/t/ Mac-Carbon-0.72/Gestalt/t/Gestalt.t Mac-Carbon-0.72/InternetConfig/ Mac-Carbon-0.72/InternetConfig/eg/ Mac-Carbon-0.72/InternetConfig/eg/IC.plx Mac-Carbon-0.72/InternetConfig/eg/ICDump.plx Mac-Carbon-0.72/InternetConfig/eg/ICDumpMap.plx Mac-Carbon-0.72/InternetConfig/InternetConfig.pm Mac-Carbon-0.72/InternetConfig/InternetConfig.xs Mac-Carbon-0.72/InternetConfig/Makefile.PL Mac-Carbon-0.72/InternetConfig/typemap Mac-Carbon-0.72/MacPerl/ Mac-Carbon-0.72/MacPerl/MacPerl.pm Mac-Carbon-0.72/MacPerl/MacPerl.xs Mac-Carbon-0.72/MacPerl/Makefile.PL Mac-Carbon-0.72/MacPerl/OSA.xs Mac-Carbon-0.72/MacPerl/t/ Mac-Carbon-0.72/MacPerl/t/MacPerl.t Mac-Carbon-0.72/Makefile.PL Mac-Carbon-0.72/MANIFEST Mac-Carbon-0.72/MANIFEST.SKIP Mac-Carbon-0.72/Memory/ Mac-Carbon-0.72/Memory/Makefile.PL Mac-Carbon-0.72/Memory/Memory.pm Mac-Carbon-0.72/Memory/Memory.xs Mac-Carbon-0.72/Memory/t/ Mac-Carbon-0.72/Memory/t/Memory.t Mac-Carbon-0.72/MoreFiles/ Mac-Carbon-0.72/MoreFiles/eg/ Mac-Carbon-0.72/MoreFiles/eg/Application.plx Mac-Carbon-0.72/MoreFiles/eg/Iterate.plx Mac-Carbon-0.72/MoreFiles/Makefile.PL Mac-Carbon-0.72/MoreFiles/MF.xs Mac-Carbon-0.72/MoreFiles/MoreFiles.pm Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/ Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/DirectoryCopy.c Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/DirectoryCopy.h Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/FileCopy.c Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/FileCopy.h Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/FSpCompat.c Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/FSpCompat.h Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/FullPath.c Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/FullPath.h Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/IterateDirectory.c Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/IterateDirectory.h Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/MoreDesktopMgr.c Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/MoreDesktopMgr.h Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/MoreFiles.c Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/MoreFiles.h Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/MoreFilesExtras.c Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/MoreFilesExtras.h Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/Optimization.h Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/OptimizationEnd.h Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/Search.c Mac-Carbon-0.72/MoreFiles/MoreFilesSrc/Search.h Mac-Carbon-0.72/MoreFiles/t/ Mac-Carbon-0.72/MoreFiles/t/MoreFiles.t Mac-Carbon-0.72/Notification/ Mac-Carbon-0.72/Notification/Makefile.PL Mac-Carbon-0.72/Notification/Notification.pm Mac-Carbon-0.72/Notification/Notification.xs Mac-Carbon-0.72/Notification/t/ Mac-Carbon-0.72/Notification/t/Notification.rsrc Mac-Carbon-0.72/Notification/t/Notification.t Mac-Carbon-0.72/Notification/typemap Mac-Carbon-0.72/OSA/ Mac-Carbon-0.72/OSA/eg/ Mac-Carbon-0.72/OSA/eg/AppleScript.eg Mac-Carbon-0.72/OSA/eg/AppleScript2.eg Mac-Carbon-0.72/OSA/eg/Frontier.eg Mac-Carbon-0.72/OSA/eg/Record.eg Mac-Carbon-0.72/OSA/Makefile.PL Mac-Carbon-0.72/OSA/OSA.pm Mac-Carbon-0.72/OSA/OSA.xs Mac-Carbon-0.72/OSA/typemap Mac-Carbon-0.72/Processes/ Mac-Carbon-0.72/Processes/eg/ Mac-Carbon-0.72/Processes/eg/Processes.plx Mac-Carbon-0.72/Processes/Makefile.PL Mac-Carbon-0.72/Processes/Processes.pm Mac-Carbon-0.72/Processes/Processes.xs Mac-Carbon-0.72/Processes/t/ Mac-Carbon-0.72/Processes/t/Processes.t Mac-Carbon-0.72/Processes/typemap Mac-Carbon-0.72/QuickDraw/ Mac-Carbon-0.72/QuickDraw/typemap Mac-Carbon-0.72/README Mac-Carbon-0.72/Resources/ Mac-Carbon-0.72/Resources/Makefile.PL Mac-Carbon-0.72/Resources/Resources.pm Mac-Carbon-0.72/Resources/Resources.xs Mac-Carbon-0.72/Resources/t/ Mac-Carbon-0.72/Resources/t/Resources.t Mac-Carbon-0.72/Sound/ Mac-Carbon-0.72/Sound/Makefile.PL Mac-Carbon-0.72/Sound/Sound.pm Mac-Carbon-0.72/Sound/Sound.xs Mac-Carbon-0.72/Sound/t/ Mac-Carbon-0.72/Sound/t/Scream.rsrc Mac-Carbon-0.72/Sound/t/Sound.t Mac-Carbon-0.72/Sound/typemap Mac-Carbon-0.72/Speech/ Mac-Carbon-0.72/Speech/eg/ Mac-Carbon-0.72/Speech/eg/Cellist.plx Mac-Carbon-0.72/Speech/eg/DumpVoices.plx Mac-Carbon-0.72/Speech/eg/JukeBox.plx Mac-Carbon-0.72/Speech/eg/Phonemes.plx Mac-Carbon-0.72/Speech/Makefile.PL Mac-Carbon-0.72/Speech/Speech.pm Mac-Carbon-0.72/Speech/Speech.xs Mac-Carbon-0.72/Speech/t/ Mac-Carbon-0.72/Speech/t/Speech.t Mac-Carbon-0.72/Speech/typemap Mac-Carbon-0.72/t/ Mac-Carbon-0.72/t/Carbon.t Mac-Carbon-0.72/typemap Mac-Carbon-0.72/Types/ Mac-Carbon-0.72/Types/Makefile.PL Mac-Carbon-0.72/Types/t/ Mac-Carbon-0.72/Types/t/Types.t Mac-Carbon-0.72/Types/Types.pm Mac-Carbon-0.72/Types/Types.xs Mac-Carbon-0.72/xsubpps/ Mac-Carbon-0.72/xsubpps/xsubpp-5.6.1 Mac-Carbon-0.72/xsubpps/xsubpp-5.8.0 Removing previously used /Users/markwhee/.cpan/build/Mac-Carbon-0.72
CPAN.pm: Going to build C/CN/CNANDOR/Mac-Carbon-0.72.tar.gz
Checking if your kit is complete... Looks good Writing Makefile for Mac::AppleEvents Writing Makefile for Mac::Components Writing Makefile for Mac::Files Writing Makefile for Mac::Gestalt Writing Makefile for Mac::InternetConfig Writing Makefile for MacPerl Writing Makefile for Mac::Memory Writing Makefile for Mac::MoreFiles Writing Makefile for Mac::Notification Writing Makefile for Mac::OSA Writing Makefile for Mac::Processes Writing Makefile for Mac::Resources Writing Makefile for Mac::Sound Writing Makefile for Mac::Speech Writing Makefile for Mac::Types Writing Makefile for Mac::Carbon -- NOT OK Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running install for module Time::Epoch Running make for C/CN/CNANDOR/Time-Epoch-0.02.tar.gz Checksum for /Users/markwhee/.cpan/sources/authors/id/C/CN/CNANDOR/Time-Epoch -0.02.tar.gz ok Time-Epoch-0.02/ Time-Epoch-0.02/Changes Time-Epoch-0.02/Epoch.pm Time-Epoch-0.02/Makefile.PL Time-Epoch-0.02/MANIFEST Time-Epoch-0.02/README Time-Epoch-0.02/t/ Time-Epoch-0.02/t/epoch.t Removing previously used /Users/markwhee/.cpan/build/Time-Epoch-0.02
CPAN.pm: Going to build C/CN/CNANDOR/Time-Epoch-0.02.tar.gz
Checking if your kit is complete... Looks good Writing Makefile for Time::Epoch -- NOT OK Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running install for module Mac::Processes Running make for C/CN/CNANDOR/Mac-Carbon-0.72.tar.gz Is already unwrapped into directory /Users/markwhee/.cpan/build/Mac-Carbon-0.72 Has already been processed within this session Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running install for module Mac::Errors Running make for B/BD/BDFOY/Mac-Errors-1.10.tar.gz Checksum for /Users/markwhee/.cpan/sources/authors/id/B/BD/BDFOY/Mac-Errors -1.10.tar.gz ok Mac-Errors-1.10/ Mac-Errors-1.10/bin/ Mac-Errors-1.10/bin/macerror Mac-Errors-1.10/Changes Mac-Errors-1.10/lib/ Mac-Errors-1.10/lib/Errors.pm Mac-Errors-1.10/Makefile.PL Mac-Errors-1.10/MANIFEST Mac-Errors-1.10/META.yml Mac-Errors-1.10/README Mac-Errors-1.10/t/ Mac-Errors-1.10/t/errors.t Mac-Errors-1.10/t/import.t Mac-Errors-1.10/t/load.t Mac-Errors-1.10/t/object.t Mac-Errors-1.10/t/pod.t Mac-Errors-1.10/t/test_manifest Removing previously used /Users/markwhee/.cpan/build/Mac-Errors-1.10
CPAN.pm: Going to build B/BD/BDFOY/Mac-Errors-1.10.tar.gz
Checking if your kit is complete... Looks good Writing Makefile for Mac::Errors -- NOT OK Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running install for module Mac::Apps::Launch Running make for C/CN/CNANDOR/Mac-Apps-Launch-1.91.tar.gz Checksum for /Users/markwhee/.cpan/sources/authors/id/C/CN/CNANDOR/Mac-Apps-Launch -1.91.tar.gz ok Mac-Apps-Launch-1.91/ Mac-Apps-Launch-1.91/.cvsignore Mac-Apps-Launch-1.91/.releaserc Mac-Apps-Launch-1.91/Changes Mac-Apps-Launch-1.91/Launch.pm Mac-Apps-Launch-1.91/Makefile.PL Mac-Apps-Launch-1.91/MANIFEST Mac-Apps-Launch-1.91/README Mac-Apps-Launch-1.91/t/ Mac-Apps-Launch-1.91/t/launch.t Mac-Apps-Launch-1.91/t/pod.t Removing previously used /Users/markwhee/.cpan/build/Mac-Apps-Launch-1.91
CPAN.pm: Going to build C/CN/CNANDOR/Mac-Apps-Launch-1.91.tar.gz
Checking if your kit is complete... Looks good Warning: prerequisite Mac::Processes 1.04 not found. Writing Makefile for Mac::Apps::Launch ---- Unsatisfied dependencies detected during [C/CN/CNANDOR/Mac-Apps-Launch-1.91.tar.gz] ----- Mac::Processes Shall I follow them and prepend them to the queue of modules we are processing right now? [yes] yes Running make test Delayed until after prerequisites Running make install Delayed until after prerequisites Running install for module Mac::Processes Running make for C/CN/CNANDOR/Mac-Carbon-0.72.tar.gz Is already unwrapped into directory /Users/markwhee/.cpan/build/Mac-Carbon-0.72 Has already been processed within this session Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running make for C/CN/CNANDOR/Mac-Apps-Launch-1.91.tar.gz Is already unwrapped into directory /Users/markwhee/.cpan/build/Mac-Apps-Launch-1.91
CPAN.pm: Going to build C/CN/CNANDOR/Mac-Apps-Launch-1.91.tar.gz
-- NOT OK Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running install for module Mac::Files Running make for C/CN/CNANDOR/Mac-Carbon-0.72.tar.gz Is already unwrapped into directory /Users/markwhee/.cpan/build/Mac-Carbon-0.72 Has already been processed within this session Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running install for module MLDBM Running make for C/CH/CHAMAS/MLDBM-2.01.tar.gz Checksum for /Users/markwhee/.cpan/sources/authors/id/C/CH/CHAMAS/MLDBM-2.01.tar.gz ok MLDBM-2.01/ MLDBM-2.01/t/ MLDBM-2.01/t/storable.t MLDBM-2.01/t/dumper.t MLDBM-2.01/t/compare.t MLDBM-2.01/t/freezethaw.t MLDBM-2.01/README MLDBM-2.01/lib/ MLDBM-2.01/lib/MLDBM/ MLDBM-2.01/lib/MLDBM/Serializer/ MLDBM-2.01/lib/MLDBM/Serializer/FreezeThaw.pm MLDBM-2.01/lib/MLDBM/Serializer/Data/ MLDBM-2.01/lib/MLDBM/Serializer/Data/Dumper.pm MLDBM-2.01/lib/MLDBM/Serializer/Storable.pm MLDBM-2.01/lib/MLDBM.pm MLDBM-2.01/MANIFEST MLDBM-2.01/Changes MLDBM-2.01/Makefile.PL Removing previously used /Users/markwhee/.cpan/build/MLDBM-2.01
CPAN.pm: Going to build C/CH/CHAMAS/MLDBM-2.01.tar.gz
Checking if your kit is complete... Looks good Writing Makefile for MLDBM -- NOT OK Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running install for module Mac::AppleEvents::Simple Running make for C/CN/CNANDOR/Mac-AppleEvents-Simple-1.16.tar.gz Checksum for /Users/markwhee/.cpan/sources/authors/id/C/CN/CNANDOR/Mac-AppleEvents- Simple-1.16.tar.gz ok Mac-AppleEvents-Simple-1.16/ Mac-AppleEvents-Simple-1.16/Changes Mac-AppleEvents-Simple-1.16/Makefile.PL Mac-AppleEvents-Simple-1.16/MANIFEST Mac-AppleEvents-Simple-1.16/README Mac-AppleEvents-Simple-1.16/Simple.pm Mac-AppleEvents-Simple-1.16/t/ Mac-AppleEvents-Simple-1.16/t/pod.t Mac-AppleEvents-Simple-1.16/t/simple.t Removing previously used /Users/markwhee/.cpan/build/Mac-AppleEvents-Simple-1.16
CPAN.pm: Going to build C/CN/CNANDOR/Mac-AppleEvents-Simple-1.16.tar.gz
Checking if your kit is complete... Looks good Warning: prerequisite Mac::AppleEvents 1.3 not found. Warning: prerequisite Mac::Apps::Launch 1.81 not found. Warning: prerequisite Mac::Errors 0.91 not found. Warning: prerequisite Mac::Processes 1.04 not found. Warning: prerequisite Time::Epoch 0.02 not found. Warning: prerequisite URI 0 not found. Writing Makefile for Mac::AppleEvents::Simple ---- Unsatisfied dependencies detected during [C/CN/CNANDOR/Mac-AppleEvents-Simple-1.16.tar.gz] ----- Mac::AppleEvents Time::Epoch Mac::Processes Mac::Apps::Launch Mac::Errors URI Shall I follow them and prepend them to the queue of modules we are processing right now? [yes] yes Running make test Delayed until after prerequisites Running make install Delayed until after prerequisites Running install for module Mac::AppleEvents Running make for C/CN/CNANDOR/Mac-Carbon-0.72.tar.gz Is already unwrapped into directory /Users/markwhee/.cpan/build/Mac-Carbon-0.72 Has already been processed within this session Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running install for module Time::Epoch Running make for C/CN/CNANDOR/Time-Epoch-0.02.tar.gz Is already unwrapped into directory /Users/markwhee/.cpan/build/Time-Epoch-0.02 Has already been processed within this session Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running install for module Mac::Processes Running make for C/CN/CNANDOR/Mac-Carbon-0.72.tar.gz Is already unwrapped into directory /Users/markwhee/.cpan/build/Mac-Carbon-0.72 Has already been processed within this session Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running install for module Mac::Apps::Launch Running make for C/CN/CNANDOR/Mac-Apps-Launch-1.91.tar.gz Is already unwrapped into directory /Users/markwhee/.cpan/build/Mac-Apps-Launch-1.91 Has already been processed within this session Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running install for module Mac::Errors Running make for B/BD/BDFOY/Mac-Errors-1.10.tar.gz Is already unwrapped into directory /Users/markwhee/.cpan/build/Mac-Errors-1.10 Has already been processed within this session Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running install for module URI Running make for G/GA/GAAS/URI-1.35.tar.gz Checksum for /Users/markwhee/.cpan/sources/authors/id/G/GA/GAAS/URI-1.35.tar.gz ok URI-1.35/ URI-1.35/t/ URI-1.35/t/ldap.t URI-1.35/t/rsync.t URI-1.35/t/clone.t URI-1.35/t/pop.t URI-1.35/t/heuristic.t URI-1.35/t/roytest2.html URI-1.35/t/old-base.t URI-1.35/t/generic.t URI-1.35/t/news.t URI-1.35/t/file.t URI-1.35/t/roytest1.html URI-1.35/t/ftp.t URI-1.35/t/urn-isbn.t URI-1.35/t/abs.t URI-1.35/t/storable-test.pl URI-1.35/t/mix.t URI-1.35/t/split.t URI-1.35/t/urn-oid.t URI-1.35/t/mailto.t URI-1.35/t/roytest5.html URI-1.35/t/sip.t URI-1.35/t/data.t URI-1.35/t/rfc2732.t URI-1.35/t/old-relbase.t URI-1.35/t/http.t URI-1.35/t/roytest4.html URI-1.35/t/query.t URI-1.35/t/mms.t URI-1.35/t/rel.t URI-1.35/t/roy-test.t URI-1.35/t/old-absconf.t URI-1.35/t/storable.t URI-1.35/t/query-param.t URI-1.35/t/escape.t URI-1.35/t/roytest3.html URI-1.35/t/old-file.t URI-1.35/t/rtsp.t URI-1.35/URI/ URI-1.35/URI/mailto.pm URI-1.35/URI/_generic.pm URI-1.35/URI/_ldap.pm URI-1.35/URI/urn.pm URI-1.35/URI/file.pm URI-1.35/URI/_login.pm URI-1.35/URI/Heuristic.pm URI-1.35/URI/rtsp.pm URI-1.35/URI/file/ URI-1.35/URI/file/Base.pm URI-1.35/URI/file/OS2.pm URI-1.35/URI/file/Mac.pm URI-1.35/URI/file/QNX.pm URI-1.35/URI/file/FAT.pm URI-1.35/URI/file/Win32.pm URI-1.35/URI/file/Unix.pm URI-1.35/URI/snews.pm URI-1.35/URI/rsync.pm URI-1.35/URI/URL.pm URI-1.35/URI/_foreign.pm URI-1.35/URI/tn3270.pm URI-1.35/URI/ftp.pm URI-1.35/URI/Escape.pm URI-1.35/URI/urn/ URI-1.35/URI/urn/oid.pm URI-1.35/URI/urn/isbn.pm URI-1.35/URI/data.pm URI-1.35/URI/Split.pm URI-1.35/URI/_segment.pm URI-1.35/URI/_query.pm URI-1.35/URI/rtspu.pm URI-1.35/URI/ldapi.pm URI-1.35/URI/QueryParam.pm URI-1.35/URI/rlogin.pm URI-1.35/URI/https.pm URI-1.35/URI/pop.pm URI-1.35/URI/http.pm URI-1.35/URI/sips.pm URI-1.35/URI/mms.pm URI-1.35/URI/nntp.pm URI-1.35/URI/sip.pm URI-1.35/URI/ldaps.pm URI-1.35/URI/news.pm URI-1.35/URI/ssh.pm URI-1.35/URI/ldap.pm URI-1.35/URI/telnet.pm URI-1.35/URI/_server.pm URI-1.35/URI/WithBase.pm URI-1.35/URI/gopher.pm URI-1.35/URI/_userpass.pm URI-1.35/URI.pm URI-1.35/rfc2396.txt URI-1.35/Makefile.PL URI-1.35/uri-test URI-1.35/MANIFEST URI-1.35/Changes URI-1.35/README Removing previously used /Users/markwhee/.cpan/build/URI-1.35
CPAN.pm: Going to build G/GA/GAAS/URI-1.35.tar.gz
Checking if your kit is complete... Looks good Writing Makefile for URI -- NOT OK Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running make for C/CN/CNANDOR/Mac-AppleEvents-Simple-1.16.tar.gz Is already unwrapped into directory /Users/markwhee/.cpan/build/Mac-AppleEvents-Simple-1.16
CPAN.pm: Going to build C/CN/CNANDOR/Mac-AppleEvents-Simple-1.16.tar.gz
-- NOT OK Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible Running make for C/CN/CNANDOR/Mac-Glue-1.23.tar.gz Is already unwrapped into directory /Users/markwhee/.cpan/build/Mac-Glue-1.23
CPAN.pm: Going to build C/CN/CNANDOR/Mac-Glue-1.23.tar.gz
-- NOT OK Running make test Can't test without successful make Running make install make had returned bad status, install seems impossible
--------------------------
Thanks,
Mark
Ted Zeng - 28 Apr 2005 21:15 GMT Someone might have a better solution. What I did was go to each downloaded module folders and Do "sudo make install" and it will install.
I have another Mac which doesn't have this problem at all.
It sounds like a permission problem.
Ted zeng Adobe system.
Writing Makefile for Mac::AppleEvents Writing Makefile for Mac::Components Writing Makefile for Mac::Files Writing Makefile for Mac::Gestalt Writing Makefile for Mac::InternetConfig Writing Makefile for MacPerl Writing Makefile for Mac::Memory Writing Makefile for Mac::MoreFiles Writing Makefile for Mac::Notification Writing Makefile for Mac::OSA Writing Makefile for Mac::Processes Writing Makefile for Mac::Resources Writing Makefile for Mac::Sound Writing Makefile for Mac::Speech Writing Makefile for Mac::Types Writing Makefile for Mac::Carbon -- NOT OK
Mark Wheeler - 28 Apr 2005 22:44 GMT Someone might have a better solution. What I did was go to each downloaded module folders and Do "sudo make install" and it will install.
I have another Mac which doesn't have this problem at all.
It sounds like a permission problem.
Ted zeng Adobe system.
Writing Makefile for Mac::AppleEvents Writing Makefile for Mac::Components Writing Makefile for Mac::Files Writing Makefile for Mac::Gestalt Writing Makefile for Mac::InternetConfig Writing Makefile for MacPerl Writing Makefile for Mac::Memory Writing Makefile for Mac::MoreFiles Writing Makefile for Mac::Notification Writing Makefile for Mac::OSA Writing Makefile for Mac::Processes Writing Makefile for Mac::Resources Writing Makefile for Mac::Sound Writing Makefile for Mac::Speech Writing Makefile for Mac::Types Writing Makefile for Mac::Carbon -- NOT OK
--------------------------
Then would it be OK to do subo cpan Mac::Glue? Would it have the same effect as installing each module with sudo?
Thanks,
Mark
Ted Zeng - 28 Apr 2005 22:51 GMT I thought you should use sudo cpan .....
My problem is even I used sudo MCPAN ... the problem still existed.
ted
> -------------------------- > [quoted text clipped - 4 lines] > > Mark Chris Nandor - 28 Apr 2005 23:12 GMT > Forgive the long reply, but I'm not sure exactly what to look for, so > here is the complete output: Here is the first error:
> Writing Makefile for Mac::AppleEvents > Writing Makefile for Mac::Components [quoted text clipped - 17 lines] > Running make install > make had returned bad status, install seems impossible And here's another:
> Writing Makefile for Time::Epoch > -- NOT OK > Running make test > Can't test without successful make > Running make install > make had returned bad status, install seems impossible Note the pattern. The make is failing for everything, without even any make actually happening. My guess is you didn't install all the parts of the Developer Tools or whatever.
Another possibility is that your CPAN config can't find make, since it wasn't there when you first configured CPAN.
 Signature Chris Nandor pudge@pobox.com http://pudge.net/ Open Source Technology Group pudge@ostg.com http://ostg.com/
Ted Zeng - 28 Apr 2005 23:58 GMT It is possible that it could not write out the makefile. Then everything will fail after that.
ted
>> Forgive the long reply, but I'm not sure exactly what to look for, so >> here is the complete output: [quoted text clipped - 40 lines] > Another possibility is that your CPAN config can't find make, since it > wasn't there when you first configured CPAN. Mark Wheeler - 29 Apr 2005 00:19 GMT It is possible that it could not write out the makefile. Then everything will fail after that.
ted
On Apr 28, 2005, at 3:12 PM, Chris Nandor wrote:
> In article <b0f2fd9a23360adacbe4537038ff79f9@comcast.net>, > musicarr@comcast.net (Mark Wheeler) wrote: [quoted text clipped - 43 lines] > Another possibility is that your CPAN config can't find make, since it > wasn't there when you first configured CPAN. I installed Xcode 1.1, then updated it 1.5. I did the standard install. But that was done after CPAN was configured. So would the next order of process be to RE-configure CPAN then try again to install Mac::Glue? And if so, how do I reconfigure CPAN?
Thanks,
Mark
Jeff Lowrey - 29 Apr 2005 00:15 GMT >And if so, how do I reconfigure CPAN? cpan o conf init
-Jeff Lowrey
Chris Nandor - 29 Apr 2005 03:31 GMT > It is possible that it could not write out the > makefile. Then everything will fail after that. That seems unlikely ... it created that directory, and wrote files to it already during the untar process.
 Signature Chris Nandor pudge@pobox.com http://pudge.net/ Open Source Technology Group pudge@ostg.com http://ostg.com/
|
|
|