Changes between Version 4 and Version 5 of InstalarPDO


Ignore:
Timestamp:
16/12/14 12:19:09 (10 years ago)
Author:
jguerra
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstalarPDO

    v4 v5  
    1818make install 
    1919}}} 
     20 
     21 * Es posible que aqui te marque un error de que no encuentra el php_pdo_driver.h en determinada linea, si te lo marca, entonces 
     22edita el archivo configure y ubica las lineas siguientes: 
     23 
     24{{{ 
     25elif test -f $prefix/include/php/ext/pdo/php_pdo_driver.h; then 
     26pdo_inc_path=$prefix/include/php/ext 
     27else 
     28as_fn_error "Cannot find php_pdo_driver.h." "$LINENO" 5 
     29}}} 
     30 
     31 cambialas por 
     32{{{ 
     33elif test -f $prefix/include/php5/ext/pdo/php_pdo_driver.h; then 
     34pdo_inc_path=$prefix/include/php5/ext 
     35else 
     36as_fn_error "Cannot find php_pdo_driver.h." "$LINENO" 5 
     37}}}