1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#!/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
for distribution-ready builds.
you may wish to add --gtk=2 if the gtk3 interface is troublesome.
then
./waf build
and
sudo ./waf install
note that the --backend and --enable-webkit-editor options are gone.
only the webkit backend is used now, and only the most modern editor is present.
----------------------------------------------------------------
EOF
exit 1
|