Changeset 10309
- Timestamp:
- Nov 29, 2006, 6:13:44 PM (19 years ago)
- Location:
- trunk/psLib
- Files:
-
- 3 added
- 6 edited
-
configure.ac (modified) (1 diff)
-
src/math/Makefile.am (modified) (4 diffs)
-
src/math/psMD5.c (added)
-
src/math/psMD5.h (added)
-
src/pslib_strict.h (modified) (2 diffs)
-
test/math (modified) (1 prop)
-
test/math/.cvsignore (modified) (1 diff)
-
test/math/Makefile.am (modified) (1 diff)
-
test/math/tap_psMD5.c (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/configure.ac
r10308 r10309 421 421 dnl ------- openssl --------- 422 422 423 PKG_CHECK_MODULES([SSL], [openssl >= 0.9.6]) 423 dnl save LIBS/CFLAGS/LDFLAGS 424 TMP_LIBS=${LIBS} 425 TMP_CFLAGS=${CFLAGS} 426 TMP_LDFLAGS=${LDFLAGS} 427 TMP_CPPFLAGS=${CPPFLAGS} 428 429 AC_ARG_WITH(ssl, 430 [AS_HELP_STRING(--with-ssl=DIR,Specify location of SSL.)], 431 [SSL_CFLAGS="-I$withval/include" 432 SSL_LDFLAGS="-L$withval/lib"]) 433 AC_ARG_WITH(ssl-include, 434 [AS_HELP_STRING(--with-ssl-include=DIR,Specify SSL include directory.)], 435 [SSL_CFLAGS="-I$withval"]) 436 AC_ARG_WITH(ssl-lib, 437 [AS_HELP_STRING(--with-ssl-lib=DIR,Specify SSL library directory.)], 438 [SSL_LDFLAGS="-L$withval"]) 424 439 PSLIB_CFLAGS="${PSLIB_CFLAGS=} ${SSL_CFLAGS}" 425 PSLIB_LIBS="${PSLIB_LIBS=} ${SSL_LIBS}" 440 PSLIB_LIBS="${PSLIB_LIBS=} $SSL_LDFLAGS -lssl" 441 442 CFLAGS="${CFLAGS} ${SSL_CFLAGS}" 443 CPPFLAGS=${CFLAGS} 444 LDFLAGS="${LDFLAGS} ${SSL_LIBS}" 445 446 AC_CHECK_HEADERS([openssl/md5.h],[], 447 [AC_MSG_ERROR([SSL headers not found. Obtain it at http://www.openssl.org/ or use --with-ssl to specify location.])] 448 ) 449 AC_CHECK_LIB(ssl,MD5,[], 450 [AC_MSG_ERROR([SSL library not found. Obtain it at http://www.openssl.org/ or use --with-ssl to specify location.])] 451 ) 452 453 AC_SUBST([SSL_CFLAGS]) 454 455 dnl restore the CFLAGS/LDFLAGS 456 LIBS=${TMP_LIBS} 457 CFLAGS=${TMP_CFLAGS} 458 LDFLAGS=${TMP_LDFLAGS} 459 CPPFLAGS=${TMP_CPPFLAGS} 426 460 427 461 dnl ------- enable -Werror after all of the probes have run --------- -
trunk/psLib/src/math/Makefile.am
r9909 r10309 10 10 psCompare.c \ 11 11 psEllipse.c \ 12 psMathUtils.c \ 12 13 psMatrix.c \ 14 psMD5.c \ 13 15 psMinimizeLMM.c \ 14 16 psMinimizePowell.c \ … … 22 24 psSpline.c \ 23 25 psStats.c \ 24 psMathUtils.c \25 26 psVectorSmooth.c 26 27 … … 34 35 psConstants.h \ 35 36 psEllipse.h \ 37 psMathUtils.h \ 36 38 psMatrix.h \ 39 psMD5.h \ 37 40 psMinimizeLMM.h \ 38 41 psMinimizePowell.h \ … … 46 49 psSpline.h \ 47 50 psStats.h \ 48 psMathUtils.h \49 51 psVectorSmooth.h 50 52 -
trunk/psLib/src/pslib_strict.h
r8997 r10309 9 9 * @author Eric Van Alst, MHPCC 10 10 * 11 * @version $Revision: 1.2 3$ $Name: not supported by cvs2svn $12 * @date $Date: 2006- 09-27 01:31:46$11 * @version $Revision: 1.24 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2006-11-30 04:13:44 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 59 59 #include "psConstants.h" 60 60 #include "psMatrix.h" 61 #include "psMD5.h" 61 62 #include "psMinimizeLMM.h" 62 63 #include "psMinimizePowell.h" -
trunk/psLib/test/math
- Property svn:ignore
-
old new 51 51 tap_psSparse 52 52 tap_psStatsTiming 53 tap_psMD5
-
- Property svn:ignore
-
trunk/psLib/test/math/.cvsignore
r10193 r10309 51 51 tap_psSparse 52 52 tap_psStatsTiming 53 tap_psMD5 -
trunk/psLib/test/math/Makefile.am
r10166 r10309 13 13 14 14 TEST_PROGS = \ 15 tap_psMD5 \ 15 16 tap_psSparse \ 16 17 tap_psStatsTiming
Note:
See TracChangeset
for help on using the changeset viewer.
