Not sure if this has been brought up before. I compiled and installed mod_perl/1.27 via apxs like so:
$ perl Makefile.PL EVERYTHING=1 USE_APXS=1 WITH_APXS=/usr/local/sbin/apxs $ cd apaci $ make $ make install The installation went well, I did a graceful and it wouldn't restart, instead apache shutdown and it spit out aprox. 2,880 lines in my logs that said: Attempt to free non-existent shared string during global destruction. Seems like it got stuck in a loop trying to do a graceful restart. So I used apachectl. to start the server and it started fine, with the module. It seems that everytime I do a graceful retstart it crashes and spits out the exact same amount of lines (apprx 2,880) in my logs, same message. Again it runs fine (apache and the module (libperl.so)) until I do a graceful. Luckily, I made a backup of my old libperl.so. I removed the newly installed module (1.27) and put back my old one (1.25) and I no,longer have problems with a graceful restart. I'm using Darwin/OSX 10.1.5 apache/1.3.23 perl/5.6.0, Any suggestions???