summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authorFrançois Revel <mmu_man@netsurf-browser.org>2008-06-07 01:07:50 +0000
committerFrançois Revel <mmu_man@netsurf-browser.org>2008-06-07 01:07:50 +0000
commit87df7ca228be55b8a11f1dbe7691a731af3454de (patch)
tree3c6b8ff83f8c80b24b7ddebfb82ace1f3826d393 /Docs
parent6cfdcb7b3cd5579e4e345fbd305bd2873149b718 (diff)
downloadnetsurf-87df7ca228be55b8a11f1dbe7691a731af3454de.tar.gz
netsurf-87df7ca228be55b8a11f1dbe7691a731af3454de.tar.bz2
Forgot to tell about the need to make css/scanner.c on Linux and copy it back as re2c wants gcc4.
svn path=/trunk/netsurf/; revision=4291
Diffstat (limited to 'Docs')
-rw-r--r--Docs/BUILDING-BeOS20
1 files changed, 20 insertions, 0 deletions
diff --git a/Docs/BUILDING-BeOS b/Docs/BUILDING-BeOS
index 6a2fbfcde..182024788 100644
--- a/Docs/BUILDING-BeOS
+++ b/Docs/BUILDING-BeOS
@@ -72,6 +72,26 @@
$ cp lemon lempar.c /boot/home/config/bin/
+ RE2C
+------
+
+ BeOS doesn't come with the re2c lexer. Unfortunately it requires gcc4
+ currently, so it cannot be built on BeOS. It might be possible on gcc4 built
+ Haiku.
+ The workaround is currently to generate the scanner.c file from Linux, and
+ copy it back to the source tree. Touching it in the future will make sure
+ make won't try to rebuild it.
+
+ (on Linux)
+ $ make css/scanner.c
+
+ (copy to the BeOS box)
+
+ (on BeOS/Haiku)
+ $ cp <somewhere>/scanner.c css/
+ $ touch -t 201801010000 css/scanner.c
+
+
cURL
------