OS X is beginning to show a warning when a 32-bit application is
opened, so it's high time that this gets enabled. Fix a clang warning
exposed by this build.
/org
/*.ppc
/*.i386
+/*.x86_64
/Puzzles.ppc.bin
/Puzzles.i386.bin
+/Puzzles.x86_64.bin
/version2.def
/preprocessed.but
/*.a
cluevals[j] *= grid[i];
break;
case C_SUB:
- cluevals[j] = abs(cluevals[j] - grid[i]);
+ cluevals[j] = labs(cluevals[j] - grid[i]);
break;
case C_DIV:
{
cluevals[j] *= state->grid[i];
break;
case C_SUB:
- cluevals[j] = abs(cluevals[j] - state->grid[i]);
+ cluevals[j] = labs(cluevals[j] - state->grid[i]);
break;
case C_DIV:
{
if (defined $makefiles{'osx'}) {
$mftyp = 'osx';
$dirpfx = &dirpfx($makefiles{'osx'}, "/");
- @osxarchs = ('i386');
+ @osxarchs = ('i386', 'x86_64');
##-- Mac OS X makefile
open OUT, ">$makefiles{'osx'}"; select OUT;