Changeset 19709

Show
Ignore:
Timestamp:
12/19/06 08:40:26 (2 years ago)
Author:
patrick
Message:

Merged Doozer++ 2.1.10 from its vendor branch. This includes a critical bug
fix for DPP_ABI_SETUP—a macro used by all Juggler configure scripts.

Files:

Legend:

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

    r19567 r19709  
    11DATE       AUTHOR       CHANGE 
    22---------- ------------ ------------------------------------------------------- 
     32006-12-19 patrickh     Fixed a serious bug in DPP_ABI_SETUP. 
     4                        NEW VERSION: 2.1.10 
    352006-11-20 patrickh     Extended the NSPR detection tests to provide more 
    46                        information to the caller regarding the NSPR 
  • juggler/branches/2.0/Doozer++/config/abi.m4

    r19303 r19709  
    2929dnl ----------------------------------------------------------------- 
    3030dnl File:          abi.m4,v 
    31 dnl Date modified: 2006/08/31 15:46:33 
    32 dnl Version:       1.22 
     31dnl Date modified: 2006/12/19 14:36:16 
     32dnl Version:       1.23 
    3333dnl ----------------------------------------------------------------- 
    3434dnl ************** <auto-copyright.pl END do not edit this line> ************** 
     
    8080dnl =========================================================================== 
    8181 
    82 dnl abi.m4,v 1.22 2006/08/31 15:46:33 patrickh Exp 
     82dnl abi.m4,v 1.23 2006/12/19 14:36:16 patrickh Exp 
    8383 
    8484dnl --------------------------------------------------------------------------- 
     
    182182   case "x$DPP_ABI_TYPE" in 
    183183      x64_M3) 
    184          DPP_ABI_CFG('64', 'mips3', '64', '-64 -mips3'
     184         DPP_ABI_CFG([64], [mips3], [64], [-64 -mips3]
    185185         ;; 
    186186      x64_M4) 
    187          DPP_ABI_CFG('64', 'mips4', '64', '-64 -mips4'
     187         DPP_ABI_CFG([64], [mips4], [64], [-64 -mips4]
    188188         ;; 
    189189      xN32_M3) 
    190          DPP_ABI_CFG('N32', 'mips3', '32', '-n32 -mips3'
     190         DPP_ABI_CFG([N32], [mips3], [32], [-n32 -mips3]
    191191         ;; 
    192192      xN32_M4) 
    193          DPP_ABI_CFG('N32', 'mips4', '32', '-n32 -mips4'
     193         DPP_ABI_CFG([N32], [mips4], [32], [-n32 -mips4]
    194194         ;; 
    195195      xELF_i386) 
    196          DPP_ABI_CFG('ELF', 'i386', '', '-m32'
     196         DPP_ABI_CFG([ELF], [i386], , [-m32]
    197197         ;; 
    198198      xELF_x86_64) 
    199          DPP_ABI_CFG('ELF', 'x86_64', '64', '-m64'
     199         DPP_ABI_CFG([ELF], [x86_64], [64], [-m64]
    200200         ;; 
    201201      xWIN32_i386) 
    202          DPP_ABI_CFG('WIN32'
     202         DPP_ABI_CFG([WIN32]
    203203         ;; 
    204204      xCOFF_ALPHA) 
    205          DPP_ABI_CFG('COFF', 'alpha'
     205         DPP_ABI_CFG([COFF], [alpha]
    206206         ;; 
    207207      xELF_ALPHA) 
    208          DPP_ABI_CFG('ELF', 'alpha'
     208         DPP_ABI_CFG([ELF], [alpha]
    209209         ;; 
    210210      xHP) 
    211          DPP_ABI_CFG('HP', 'pa-risc'
     211         DPP_ABI_CFG([HP], [pa-risc]
    212212         ;; 
    213213      xHP64) 
    214          DPP_ABI_CFG('HP64', 'pa-risc', '/pa20_64', '+DD64'
     214         DPP_ABI_CFG([HP64], [pa-risc], [/pa20_64], [+DD64]
    215215         ;; 
    216216      xDARWIN_PPC) 
    217          DPP_ABI_CFG('Mach-O', 'powerpc', , [-arch ppc], [$osx_sdk_flags]) 
     217         DPP_ABI_CFG([Mach-O], [powerpc], , [-arch ppc], [$osx_sdk_flags]) 
    218218         ;; 
    219219      xDARWIN_i386) 
    220          DPP_ABI_CFG('Mach-O', 'i386', , [-arch i386], [$osx_sdk_flags]) 
     220         DPP_ABI_CFG([Mach-O], [i386], , [-arch i386], [$osx_sdk_flags]) 
    221221         ;; 
    222222      xDARWIN_UNIVERSAL) 
     
    226226            dpp_universal_arch_flags="$dpp_universal_arch_flags -arch $a" 
    227227         done 
    228          DPP_ABI_CFG('Mach-O', 'universal', , [$dpp_universal_arch_flags], 
     228         DPP_ABI_CFG([Mach-O], [universal], , [$dpp_universal_arch_flags], 
    229229                     [$osx_sdk_flags]) 
    230230         ;; 
  • juggler/branches/2.0/Doozer++/config/general.m4

    r19567 r19709  
    2222dnl ----------------------------------------------------------------- 
    2323dnl File:          general.m4,v 
    24 dnl Date modified: 2006/11/20 19:56:20 
    25 dnl Version:       1.92 
     24dnl Date modified: 2006/12/19 14:37:03 
     25dnl Version:       1.93 
    2626dnl ----------------------------------------------------------------- 
    2727dnl ************** <auto-copyright.pl END do not edit this line> ************** 
     
    4747dnl =========================================================================== 
    4848 
    49 dnl general.m4,v 1.92 2006/11/20 19:56:20 patrickh Exp 
     49dnl general.m4,v 1.93 2006/12/19 14:37:03 patrickh Exp 
    5050 
    5151dnl Set the version of Doozer++. 
    52 define(DPP_DPPVERSION, 2.1.9
     52define(DPP_DPPVERSION, 2.1.10
    5353 
    5454dnl ---------------------------------------------------------------------------