Changeset 19564
- Timestamp:
- 11/20/06 13:58:57 (2 years ago)
- Files:
-
- juggler/trunk/Doozer++/ChangeLog (modified) (1 diff)
- juggler/trunk/Doozer++/config/general.m4 (modified) (2 diffs)
- juggler/trunk/Doozer++/config/pkgs/nspr.m4 (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/Doozer++/ChangeLog
r19561 r19564 1 1 DATE AUTHOR CHANGE 2 2 ---------- ------------ ------------------------------------------------------- 3 2006-11-20 patrickh Extended the NSPR detection tests to provide more 4 information to the caller regarding the NSPR 5 installation. 6 NEW VERSION: 2.1.9 3 7 2006-11-20 patrickh Fixed NSPR detection tests. 4 8 NEW VERSION: 2.1.8 juggler/trunk/Doozer++/config/general.m4
r19561 r19564 22 22 dnl ----------------------------------------------------------------- 23 23 dnl File: general.m4,v 24 dnl Date modified: 2006/11/20 19: 32:5725 dnl Version: 1.9 124 dnl Date modified: 2006/11/20 19:56:20 25 dnl Version: 1.92 26 26 dnl ----------------------------------------------------------------- 27 27 dnl ************** <auto-copyright.pl END do not edit this line> ************** … … 47 47 dnl =========================================================================== 48 48 49 dnl general.m4,v 1.9 1 2006/11/20 19:32:57patrickh Exp49 dnl general.m4,v 1.92 2006/11/20 19:56:20 patrickh Exp 50 50 51 51 dnl Set the version of Doozer++. 52 define(DPP_DPPVERSION, 2.1. 8)52 define(DPP_DPPVERSION, 2.1.9) 53 53 54 54 dnl --------------------------------------------------------------------------- juggler/trunk/Doozer++/config/pkgs/nspr.m4
r19561 r19564 22 22 dnl ----------------------------------------------------------------- 23 23 dnl File: nspr.m4,v 24 dnl Date modified: 2006/11/20 19: 32:5725 dnl Version: 1.4 224 dnl Date modified: 2006/11/20 19:56:21 25 dnl Version: 1.43 26 26 dnl ----------------------------------------------------------------- 27 27 dnl ************** <auto-copyright.pl END do not edit this line> ************** … … 49 49 dnl Variables defined: 50 50 dnl NSPR_ROOT - The root of the NSPR installation. 51 dnl NSPR_INCLUDE_DIR - The directory containing the root of the NSPR 52 dnl header files. This may contain a subdirectory 53 dnl called 'nspr'. 51 54 dnl NSPR_INCLUDES - The compiler option giving the NSPR include 52 55 dnl path. … … 83 86 dnl =========================================================================== 84 87 85 dnl nspr.m4,v 1.4 2 2006/11/20 19:32:57patrickh Exp88 dnl nspr.m4,v 1.43 2006/11/20 19:56:21 patrickh Exp 86 89 87 90 dnl --------------------------------------------------------------------------- … … 249 252 250 253 if test "x$dpp_have_nspr" = "xyes" ; then 254 NSPR_INCLUDE_DIR="$dpp_include_path" 251 255 NSPR_INCLUDES="-I$dpp_include_path" 252 256 NSPR_LIB="-l$dpp_nspr_lib" … … 273 277 fi 274 278 275 dnl -----------------------------------------------------------------------276 dnl Do the substition step for $NSPR_ROOT.277 dnl -----------------------------------------------------------------------278 279 AC_SUBST(NSPR_ROOT) 280 AC_SUBST(NSPR_INCLUDE_DIR) 281 AC_SUBST(NSPR_INCLUDES) 282 AC_SUBST(NSPR_LIB) 283 AC_SUBST(PLC_LIB) 284 AC_SUBST(PLDS_LIB) 279 285 AC_SUBST(NSPR_LIB_STATIC) 280 286 AC_SUBST(PLC_LIB_STATIC) 281 287 AC_SUBST(PLDS_LIB_STATIC) 282 288 AC_SUBST(NSPR_LIBDIR) 289 AC_SUBST(NSPR_LDFLAGS) 290 AC_SUBST(NSPR_LDFLAGS_LINK_EXE) 283 291 ]) 284 292 … … 354 362 355 363 NSPR_VER="$dpp_nspr_ver_major" 356 fi 364 NSPR_VERSION_DOT="$dpp_nspr_ver_major.$dpp_nspr_ver_minor.$dpp_nspr_ver_patch" 365 fi 366 367 AC_SUBST(NSPR_VERSION_DOT) 357 368 ])
