From 0317ddbf11b0bda9ae774a9aff3d6dbf2c689bee Mon Sep 17 00:00:00 2001 From: benfry Date: Mon, 9 Jun 2003 12:57:11 +0000 Subject: [PATCH] moving around the reference, and updating build scripts for it --- processing/build/linux/dist.sh | 5 +++++ processing/build/linux/make.sh | 5 +++++ processing/build/macosx/dist.sh | 6 ++++++ processing/build/macosx/make.sh | 7 +++++++ processing/build/shared/readme.txt | 4 ++++ processing/build/windows/dist.sh | 6 ++++++ processing/build/windows/make.sh | 6 ++++++ 7 files changed, 39 insertions(+) diff --git a/processing/build/linux/dist.sh b/processing/build/linux/dist.sh index 5da87e817..babbc6a0f 100755 --- a/processing/build/linux/dist.sh +++ b/processing/build/linux/dist.sh @@ -31,6 +31,11 @@ unzip -q examples.zip rm examples.zip cd ../.. +cd processing +unzip -q reference.zip +rm reference.zip +cd .. + # add java (jre) files #tar --extract --verbose --file=jre.tgz --ungzip --directory=processing tar --extract --file=jre.tgz --ungzip --directory=processing diff --git a/processing/build/linux/make.sh b/processing/build/linux/make.sh index b9d24ed85..a117e1810 100755 --- a/processing/build/linux/make.sh +++ b/processing/build/linux/make.sh @@ -15,6 +15,11 @@ else rm examples.zip cd ../.. + cd work + unzip -q reference.zip + rm reference.zip + cd .. + tar --extract --file=jre.tgz --ungzip --directory=work mkdir work/lib/export diff --git a/processing/build/macosx/dist.sh b/processing/build/macosx/dist.sh index ef328014f..cc36e258f 100755 --- a/processing/build/macosx/dist.sh +++ b/processing/build/macosx/dist.sh @@ -33,6 +33,12 @@ unzip -q examples.zip rm examples.zip cd ../.. +# new style reference +cd processing +unzip -q reference.zip +rm reference.zip +cd .. + # get package from the dist dir cp -r dist/Proce55ing.app processing/ rm -rf processing/Proce55ing.app/CVS diff --git a/processing/build/macosx/make.sh b/processing/build/macosx/make.sh index 7f9858f21..fd50f9707 100755 --- a/processing/build/macosx/make.sh +++ b/processing/build/macosx/make.sh @@ -10,11 +10,18 @@ else echo Setting up directories to build under Mac OS X cp -r ../shared work + echo Extracting examples cd work/sketchbook unzip -q examples.zip rm examples.zip cd ../.. + echo Extracting reference... + cd work + unzip -q reference.zip + rm reference.zip + cd .. + mkdir work/lib/export mkdir work/lib/build diff --git a/processing/build/shared/readme.txt b/processing/build/shared/readme.txt index ac6c1e28e..66d0328b5 100644 --- a/processing/build/shared/readme.txt +++ b/processing/build/shared/readme.txt @@ -325,6 +325,10 @@ the p5 community, whose name i have misplaced. if it was you, please drop me a line so you can be properly cited. this kind of help is huge for us, since we're such a small group!) +"hs_err_pid10XX.txt" error.. this is something within the java vm that +we can't fix. it's not clear what the problem is, but it seems to have +show up with java 1.4. + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . diff --git a/processing/build/windows/dist.sh b/processing/build/windows/dist.sh index feac1df7d..36261424e 100755 --- a/processing/build/windows/dist.sh +++ b/processing/build/windows/dist.sh @@ -31,6 +31,12 @@ unzip -q examples.zip rm examples.zip cd ../.. +# new style reference +cd processing +unzip -q reference.zip +rm reference.zip +cd .. + # add java (jre) files unzip -q -d processing jre.zip diff --git a/processing/build/windows/make.sh b/processing/build/windows/make.sh index 731a56e7c..c09083eb4 100755 --- a/processing/build/windows/make.sh +++ b/processing/build/windows/make.sh @@ -16,6 +16,12 @@ else rm examples.zip cd ../.. + echo Extracting reference... + cd work + unzip -q reference.zip + rm reference.zip + cd .. + echo Extracting big ass JRE... unzip -q -d work jre.zip # cygwin requires this because of unknown weirdness