Changeset 19564

Show
Ignore:
Timestamp:
11/20/06 13:58:57 (2 years ago)
Author:
patrick
Message:

Merged Doozer++ 2.1.9 from its vendor branch. This update facilitates easy
creation of a Flagpoll file for NSPR.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/trunk/Doozer++/ChangeLog

    r19561 r19564  
    11DATE       AUTHOR       CHANGE 
    22---------- ------------ ------------------------------------------------------- 
     32006-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 
    372006-11-20 patrickh     Fixed NSPR detection tests. 
    48                        NEW VERSION: 2.1.8 
  • juggler/trunk/Doozer++/config/general.m4

    r19561 r19564  
    2222dnl ----------------------------------------------------------------- 
    2323dnl File:          general.m4,v 
    24 dnl Date modified: 2006/11/20 19:32:57 
    25 dnl Version:       1.91 
     24dnl Date modified: 2006/11/20 19:56:20 
     25dnl Version:       1.92 
    2626dnl ----------------------------------------------------------------- 
    2727dnl ************** <auto-copyright.pl END do not edit this line> ************** 
     
    4747dnl =========================================================================== 
    4848 
    49 dnl general.m4,v 1.91 2006/11/20 19:32:57 patrickh Exp 
     49dnl general.m4,v 1.92 2006/11/20 19:56:20 patrickh Exp 
    5050 
    5151dnl Set the version of Doozer++. 
    52 define(DPP_DPPVERSION, 2.1.8
     52define(DPP_DPPVERSION, 2.1.9
    5353 
    5454dnl --------------------------------------------------------------------------- 
  • juggler/trunk/Doozer++/config/pkgs/nspr.m4

    r19561 r19564  
    2222dnl ----------------------------------------------------------------- 
    2323dnl File:          nspr.m4,v 
    24 dnl Date modified: 2006/11/20 19:32:57 
    25 dnl Version:       1.42 
     24dnl Date modified: 2006/11/20 19:56:21 
     25dnl Version:       1.43 
    2626dnl ----------------------------------------------------------------- 
    2727dnl ************** <auto-copyright.pl END do not edit this line> ************** 
     
    4949dnl Variables defined: 
    5050dnl     NSPR_ROOT             - The root of the NSPR installation. 
     51dnl     NSPR_INCLUDE_DIR      - The directory containing the root of the NSPR 
     52dnl                             header files. This may contain a subdirectory 
     53dnl                             called 'nspr'. 
    5154dnl     NSPR_INCLUDES         - The compiler option giving the NSPR include 
    5255dnl                             path. 
     
    8386dnl =========================================================================== 
    8487 
    85 dnl nspr.m4,v 1.42 2006/11/20 19:32:57 patrickh Exp 
     88dnl nspr.m4,v 1.43 2006/11/20 19:56:21 patrickh Exp 
    8689 
    8790dnl --------------------------------------------------------------------------- 
     
    249252 
    250253      if test "x$dpp_have_nspr" = "xyes" ; then 
     254         NSPR_INCLUDE_DIR="$dpp_include_path" 
    251255         NSPR_INCLUDES="-I$dpp_include_path" 
    252256         NSPR_LIB="-l$dpp_nspr_lib" 
     
    273277   fi 
    274278 
    275    dnl ----------------------------------------------------------------------- 
    276    dnl Do the substition step for $NSPR_ROOT. 
    277    dnl ----------------------------------------------------------------------- 
    278279   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) 
    279285   AC_SUBST(NSPR_LIB_STATIC) 
    280286   AC_SUBST(PLC_LIB_STATIC) 
    281287   AC_SUBST(PLDS_LIB_STATIC) 
    282288   AC_SUBST(NSPR_LIBDIR) 
     289   AC_SUBST(NSPR_LDFLAGS) 
     290   AC_SUBST(NSPR_LDFLAGS_LINK_EXE) 
    283291]) 
    284292 
     
    354362 
    355363      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) 
    357368])