Subversion Repositories slepc-dev

Compare Revisions

Ignore whitespace Rev 2273 → Rev 2274

/trunk/config/configure.py
236,6 → 236,7
if subversion:
slepcconf.write('#ifndef SLEPC_VERSION_SVN\n#define SLEPC_VERSION_SVN ' + svnrev + '\n#endif\n\n')
slepcconf.write('#ifndef SLEPC_VERSION_DATE_SVN\n#define SLEPC_VERSION_DATE_SVN "' + svndate + '"\n#endif\n\n')
slepcconf.write('#ifndef SLEPC_LIB_DIR\n#define SLEPC_LIB_DIR "' + prefixdir + '/lib"\n#endif\n\n')
except:
sys.exit('ERROR: cannot create configuration file in ' + confdir)
try:
/trunk/src/sys/slepcinit.c
139,7 → 139,7
if (found) {
ierr = PetscDLLibraryAppend(PETSC_COMM_WORLD,&DLLibrariesLoaded,libs);CHKERRQ(ierr);
} else {
SETERRQ1(PETSC_COMM_WORLD,1,"Unable to locate SLEPc dynamic library %s \n",libs);
SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Unable to locate SLEPc dynamic library\n You cannot move the dynamic libraries!");
}
#else
ierr = STInitializePackage(PETSC_NULL); CHKERRQ(ierr);
/trunk/src/sys/makefile
21,7 → 21,7
 
ALL: lib
 
CFLAGS = -DSLEPC_LIB_DIR='"${SLEPC_DESTDIR}/lib"'
CFLAGS =
FFLAGS =
SOURCEC = slepcinit.c slepcutil.c
SOURCEF =