Added USE_CLIB_DLL evaluation.
This commit is contained in:
parent
ab084472a7
commit
9b0b360398
1 changed files with 12 additions and 1 deletions
|
|
@ -41,6 +41,18 @@ if test "x${OS_IS_CYGWIN}" = "x1"; then
|
|||
fi
|
||||
AC_SUBST(CVF_LIBDIR)
|
||||
|
||||
#
|
||||
# Determine if clib is to be a static or dynamic library
|
||||
# -> will test to see if USE_DLL is defined in the cygwmin environment
|
||||
#
|
||||
USE_CLIB_DLL=0
|
||||
if test "x${OS_IS_WIN}" = "x1"; then
|
||||
if test -n ${USE_CLIB_DLL} ; then
|
||||
USE_CLIB_DLL=1
|
||||
fi
|
||||
fi
|
||||
AC_SUBST(USE_CLIB_DLL)
|
||||
|
||||
prdef="/usr/local"
|
||||
if test "x$OS_IS_DARWIN" = "x1"; then prdef="/Applications/Cantera"; fi
|
||||
#AC_PREFIX_DEFAULT([$prdef])
|
||||
|
|
@ -171,7 +183,6 @@ AC_SUBST(ct_docdir)
|
|||
AC_SUBST(ct_dir)
|
||||
AC_SUBST(COMPACT_INSTALL)
|
||||
|
||||
|
||||
#
|
||||
# Cantera directory structure
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue