Changeset 19708
- Timestamp:
- 12/19/06 08:39:53 (2 years ago)
- Files:
-
- juggler/trunk/Doozer++/ChangeLog (modified) (1 diff)
- juggler/trunk/Doozer++/config/abi.m4 (modified) (4 diffs)
- juggler/trunk/Doozer++/config/general.m4 (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/Doozer++/ChangeLog
r19564 r19708 1 1 DATE AUTHOR CHANGE 2 2 ---------- ------------ ------------------------------------------------------- 3 2006-12-19 patrickh Fixed a serious bug in DPP_ABI_SETUP. 4 NEW VERSION: 2.1.10 3 5 2006-11-20 patrickh Extended the NSPR detection tests to provide more 4 6 information to the caller regarding the NSPR juggler/trunk/Doozer++/config/abi.m4
r19302 r19708 29 29 dnl ----------------------------------------------------------------- 30 30 dnl File: abi.m4,v 31 dnl Date modified: 2006/ 08/31 15:46:3332 dnl Version: 1.2 231 dnl Date modified: 2006/12/19 14:36:16 32 dnl Version: 1.23 33 33 dnl ----------------------------------------------------------------- 34 34 dnl ************** <auto-copyright.pl END do not edit this line> ************** … … 80 80 dnl =========================================================================== 81 81 82 dnl abi.m4,v 1.2 2 2006/08/31 15:46:33patrickh Exp82 dnl abi.m4,v 1.23 2006/12/19 14:36:16 patrickh Exp 83 83 84 84 dnl --------------------------------------------------------------------------- … … 182 182 case "x$DPP_ABI_TYPE" in 183 183 x64_M3) 184 DPP_ABI_CFG( '64', 'mips3', '64', '-64 -mips3')184 DPP_ABI_CFG([64], [mips3], [64], [-64 -mips3]) 185 185 ;; 186 186 x64_M4) 187 DPP_ABI_CFG( '64', 'mips4', '64', '-64 -mips4')187 DPP_ABI_CFG([64], [mips4], [64], [-64 -mips4]) 188 188 ;; 189 189 xN32_M3) 190 DPP_ABI_CFG( 'N32', 'mips3', '32', '-n32 -mips3')190 DPP_ABI_CFG([N32], [mips3], [32], [-n32 -mips3]) 191 191 ;; 192 192 xN32_M4) 193 DPP_ABI_CFG( 'N32', 'mips4', '32', '-n32 -mips4')193 DPP_ABI_CFG([N32], [mips4], [32], [-n32 -mips4]) 194 194 ;; 195 195 xELF_i386) 196 DPP_ABI_CFG( 'ELF', 'i386', '', '-m32')196 DPP_ABI_CFG([ELF], [i386], , [-m32]) 197 197 ;; 198 198 xELF_x86_64) 199 DPP_ABI_CFG( 'ELF', 'x86_64', '64', '-m64')199 DPP_ABI_CFG([ELF], [x86_64], [64], [-m64]) 200 200 ;; 201 201 xWIN32_i386) 202 DPP_ABI_CFG( 'WIN32')202 DPP_ABI_CFG([WIN32]) 203 203 ;; 204 204 xCOFF_ALPHA) 205 DPP_ABI_CFG( 'COFF', 'alpha')205 DPP_ABI_CFG([COFF], [alpha]) 206 206 ;; 207 207 xELF_ALPHA) 208 DPP_ABI_CFG( 'ELF', 'alpha')208 DPP_ABI_CFG([ELF], [alpha]) 209 209 ;; 210 210 xHP) 211 DPP_ABI_CFG( 'HP', 'pa-risc')211 DPP_ABI_CFG([HP], [pa-risc]) 212 212 ;; 213 213 xHP64) 214 DPP_ABI_CFG( 'HP64', 'pa-risc', '/pa20_64', '+DD64')214 DPP_ABI_CFG([HP64], [pa-risc], [/pa20_64], [+DD64]) 215 215 ;; 216 216 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]) 218 218 ;; 219 219 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]) 221 221 ;; 222 222 xDARWIN_UNIVERSAL) … … 226 226 dpp_universal_arch_flags="$dpp_universal_arch_flags -arch $a" 227 227 done 228 DPP_ABI_CFG( 'Mach-O', 'universal', , [$dpp_universal_arch_flags],228 DPP_ABI_CFG([Mach-O], [universal], , [$dpp_universal_arch_flags], 229 229 [$osx_sdk_flags]) 230 230 ;; juggler/trunk/Doozer++/config/general.m4
r19564 r19708 22 22 dnl ----------------------------------------------------------------- 23 23 dnl File: general.m4,v 24 dnl Date modified: 2006/1 1/20 19:56:2025 dnl Version: 1.9 224 dnl Date modified: 2006/12/19 14:37:03 25 dnl Version: 1.93 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 2 2006/11/20 19:56:20patrickh Exp49 dnl general.m4,v 1.93 2006/12/19 14:37:03 patrickh Exp 50 50 51 51 dnl Set the version of Doozer++. 52 define(DPP_DPPVERSION, 2.1. 9)52 define(DPP_DPPVERSION, 2.1.10) 53 53 54 54 dnl ---------------------------------------------------------------------------
