From 82f4fc6da96a215f885798f84f4cd3f92ab3d0d1 Mon Sep 17 00:00:00 2001 From: young Date: Tue, 6 Sep 2011 12:33:37 +0000 Subject: [PATCH] Fix SLEPc libraries for slepc-dev git-svn-id: https://svn.dealii.org/trunk@24264 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/common/Make.global_options.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/deal.II/common/Make.global_options.in b/deal.II/common/Make.global_options.in index c552fab649..c253797046 100644 --- a/deal.II/common/Make.global_options.in +++ b/deal.II/common/Make.global_options.in @@ -279,6 +279,9 @@ else endif include-path-slepc = $(DEAL_II_SLEPC_DIR)/include include-path-slepc-conf = $(DEAL_II_SLEPC_DIR)/$(DEAL_II_PETSC_ARCH)/conf +ifeq ($(DEAL_II_PETSC_VERSION_DEV),yes) + include-path-slepc-include = $(DEAL_II_SLEPC_DIR)/$(DEAL_II_PETSC_ARCH)/include +endif include-path-trilinos = $(DEAL_II_TRILINOS_INCDIR) include-path-mumps = $(DEAL_II_MUMPS_DIR)/include @@ -312,6 +315,9 @@ endif ifeq ($(USE_CONTRIB_SLEPC),yes) INCLUDE += -I$(include-path-slepc) -I$(include-path-slepc-conf) +ifeq ($(DEAL_II_PETSC_VERSION_DEV),yes) + INCLUDE += -I$(include-path-slepc-include) +endif endif ifeq ($(USE_CONTRIB_TRILINOS),yes) -- 2.39.5