| | 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 |
| | 22 | edita el archivo configure y ubica las lineas siguientes: |
| | 23 | |
| | 24 | {{{ |
| | 25 | elif test -f $prefix/include/php/ext/pdo/php_pdo_driver.h; then |
| | 26 | pdo_inc_path=$prefix/include/php/ext |
| | 27 | else |
| | 28 | as_fn_error "Cannot find php_pdo_driver.h." "$LINENO" 5 |
| | 29 | }}} |
| | 30 | |
| | 31 | cambialas por |
| | 32 | {{{ |
| | 33 | elif test -f $prefix/include/php5/ext/pdo/php_pdo_driver.h; then |
| | 34 | pdo_inc_path=$prefix/include/php5/ext |
| | 35 | else |
| | 36 | as_fn_error "Cannot find php_pdo_driver.h." "$LINENO" 5 |
| | 37 | }}} |