I'd like to use the PclZip lib in a Magento module. I installed it through my package manager (libphp-pclzip) but I'm not able to use it directly in my module, the Magento autoloader tries to get the class and fails:
Warning: include(PclZip.php): failed to open stream: No such file or directory in /home/frleq/Dev/projets/Compario/magento-community-1.4.2.0/lib/Varien/Autoload.php on line 93
#0 /home/frleq/Dev/projets/Compario/magento-community-1.4.2.0/lib/Varien/Autoload.php(93): mageCoreErrorHandler(2, 'include(PclZip....', '/home/frleq/Dev...', 93, Array)
#1 /home/frleq/Dev/projets/Compario/magento-community-1.4.2.0/lib/Varien/Autoload.php(93): Varien_Autoload::autoload()
#2 [internal function]: Varien_Autoload->autoload('PclZip')
#3 [internal function]: spl_autoload_call('PclZip')
#4 /home/frleq/Dev/projets/Compario/magento-community-1.4.2.0/app/code/community/Compario/Connector/Helper/Data.php(8): class_exists('PclZip')
How can I manage to disable the autoload or make it find my lib?
Thanks!