1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/bin/sh
cat - <<\EOF
----------------------------------------------------------------
"configure" is no longer used in building Xiphos.
please run "./waf --help" to understand current build habits.
for recent (i.e. gnome3) linux and unix, we recommend
./waf configure --prefix=/usr --debug-level=optimized --enable-webkit-editor
for distribution-ready builds.
then
./waf build
and
sudo ./waf install
note that the --backend option is gone -- only webkit is used now.
----------------------------------------------------------------
EOF
exit 1
|