• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r4wp

[!REBOL3] General discussion about REBOL 3

Andreas
10-Mar-2013
[1591]
TO_OSXI and TO_OSX
MarcS
10-Mar-2013
[1592]
Oh, thanks.
Andreas
10-Mar-2013
[1593]
sys-system.h is unused, and only there to cause confusion :)
MarcS
10-Mar-2013
[1594]
:)
Andreas
10-Mar-2013
[1595]
The multitude of defines for platforms in the same "major" group 
is a bit of an annoyance as well.
MarcS
10-Mar-2013
[1596]
hmm, so we'd need a disjunction
Andreas
10-Mar-2013
[1597]
Yes, exactly.
MarcS
10-Mar-2013
[1598]
TO_OSX || TO_OSXI
BrianH
10-Mar-2013
[1599]
Is TO_OSX for all OSX or just PPC?
MarcS
10-Mar-2013
[1600x2]
that's what this comment indicates
src/include/reb-config.h:#ifdef TO_OSXI					// OSX/Intel
src/include/reb-config.h:#ifdef TO_OSX					// OSX/PPC
Andreas
10-Mar-2013
[1602]
TO_OSX is osx-ppc, TO_OSXI is osx-intel
BrianH
10-Mar-2013
[1603]
OK. Good to know.
Andreas
10-Mar-2013
[1604]
And we have no common defines for "all of ..." at the moment, unfortunately.
BrianH
10-Mar-2013
[1605]
My only Mac is a G5.
MarcS
10-Mar-2013
[1606x4]
Hmm
-#ifdef __APPLE__
+#if defined(TO_OSX) || defined(TO_OSXI)
neither are defined (unless I screwed that up!)
The only references I see in the codebase are the above ifdefs (reb-config.h)
Andreas
10-Mar-2013
[1610]
Should be defined and passed along in your makefile.
MarcS
10-Mar-2013
[1611]
$ grep -R TO_OSX *
src/include/reb-config.h:#ifdef TO_OSXI					// OSX/Intel
src/include/reb-config.h:#ifdef TO_OSX					// OSX/PPC
Andreas
10-Mar-2013
[1612]
in a make/makefile for osx-intel:
TO_OS?= TO_OSXI
...
RFLAGS= -c -D$(TO_OS) -DREB_API  $(RAPI_FLAGS) $I
HFLAGS= -c -D$(TO_OS) -DREB_CORE $(HOST_FLAGS) $I
MarcS
10-Mar-2013
[1613x3]
hmm
oh, mine reads TO_LINUX
shouldn't make prep have set that correctly?
Andreas
10-Mar-2013
[1616]
make make OS_ID=0.2.5
MarcS
10-Mar-2013
[1617]
Is there a reason that this isn't autodetected?
Andreas
10-Mar-2013
[1618]
No good reason. But that's just how the build currently works.
MarcS
10-Mar-2013
[1619]
Okay, thanks for the tip.
BrianH
10-Mar-2013
[1620x2]
To support building Rebol for old crappy platforms with stupid make.
At least that's the stated reason. There is likely a better approach.
MarcS
10-Mar-2013
[1622]
https://github.com/0branch/r3/commits/browse-macosx
Andreas
10-Mar-2013
[1623]
http://issue.cc/r3/1991- BROWSE none
MarcS
10-Mar-2013
[1624]
https://github.com/0branch/r3/commit/8eea3cf8217bd8f05ea5190fa81f5e8d8ed41cad
Andreas
10-Mar-2013
[1625]
MarcS, with mainline R3 browse doesn't currently work on OSX, right?
MarcS
10-Mar-2013
[1626x2]
Right
Unless, I guess, you have XQuartz installed with xdg-open or x-www-browse
Andreas
10-Mar-2013
[1628]
http://issue.cc/r3/1992- BROWSE doesn't work on OSX
MarcS
10-Mar-2013
[1629x2]
Great.
So should I submit pull requests referencing these tickets?
Andreas
10-Mar-2013
[1631]
Squash the two 1992-related commits into one, and also mention the 
CureCode ticket in the commit message (something like "This fixes 
CureCode issue #1992.") and submit a pull for that.
MarcS
10-Mar-2013
[1632]
To squash I need to rebase locally then repush?
Andreas
10-Mar-2013
[1633]
Yes, exactly (push --force).
MarcS
10-Mar-2013
[1634]
Okay
BrianH
10-Mar-2013
[1635]
For #1991 se need a better approach. We aren't at the point where 
we would need to disable a feature while we wait to figure it out, 
at least for something you have to explicitly call.
Andreas
10-Mar-2013
[1636]
Hope you don't mind the cosmetics :)
MarcS
10-Mar-2013
[1637]
Andreas: np, just testing the squashed changeset
Andreas
10-Mar-2013
[1638]
For #1991, we should at least get the crash removed right away.
MarcS
10-Mar-2013
[1639]
Sufficient detail, https://github.com/rebol/r3/pull/101?
Andreas
10-Mar-2013
[1640]
Looks good.