> well, the only additional thing i can see in config.log is line numbers:
>
> configure:11592: checking for PETSc library directory
> configure:11606: result: /home/dng/petsc-3.0.0-p7
> configure:11612: error: Path to PETSc specified with --with-petsc does
> not point to a complete PETSc installation
You can follow what's happening in aclocal.m4, around line 5522 (on the
current svn version). Essentially, it sets
DEAL_II_PETSC_DIR="$withval"
(which in you case should be $PETSC_DIR) and then does this:
dnl Make sure that what was specified is actually correct
if test ! -d $DEAL_II_PETSC_DIR/include \
; then
AC_MSG_ERROR([Path to PETSc specified with --with-petsc does
not
point to a complete PETSc installation])
fi
Does the include directory not exist for you?
Best
W.
-------------------------------------------------------------------------
Wolfgang Bangerth email: [email protected]
www: http://www.math.tamu.edu/~bangerth/
_______________________________________________
dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii