2009-01-11 00:21:45 +03:00
|
|
|
--------------------------------------------------------------------------------
|
2014-05-03 19:38:58 +04:00
|
|
|
Build Instructions for AmigaOS NetSurf 02 May 2014
|
2009-01-11 00:21:45 +03:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
This document provides instructions for building the AmigaOS version of
|
|
|
|
NetSurf and provides guidance on obtaining NetSurf's build dependencies.
|
|
|
|
|
|
|
|
AmigaOS NetSurf has been tested on AmigaOS 4.0 July 2007 Update and AmigaOS
|
|
|
|
4.1. It will require modification for AmigaOS 3.9 or earlier, or other
|
|
|
|
Amiga-like platforms.
|
|
|
|
|
|
|
|
AmigaOS NetSurf will build against newlib by default, building against
|
|
|
|
clib2 has not been tested.
|
|
|
|
|
|
|
|
|
|
|
|
Building and executing NetSurf
|
2009-08-10 17:51:37 +04:00
|
|
|
================================
|
2009-01-11 00:21:45 +03:00
|
|
|
|
2009-03-27 14:23:25 +03:00
|
|
|
First of all, you should examine the contents of Makefile.defaults
|
|
|
|
and enable and disable relevant features as you see fit by creating
|
|
|
|
a Makefile.config. Some of these options can be automatically
|
|
|
|
detected and used, although it is better to explicitly enable or
|
|
|
|
disable options.
|
2009-01-11 00:21:45 +03:00
|
|
|
|
|
|
|
You should then obtain NetSurf's dependencies, keeping in mind which options
|
|
|
|
you have enabled in the configuration file. See the next section for
|
|
|
|
specifics.
|
|
|
|
|
|
|
|
Once done, to build AmigaOS NetSurf on OS4, simply run:
|
|
|
|
|
|
|
|
1> gmake
|
|
|
|
|
|
|
|
If that produces errors, you probably don't have some of NetSurf's build
|
|
|
|
dependencies installed. See "Obtaining NetSurf's dependencies" below, or turn
|
2009-03-27 14:23:25 +03:00
|
|
|
off the complaining features in a Makefile.config.
|
2009-01-11 00:21:45 +03:00
|
|
|
|
|
|
|
Running NetSurf from the build tree requires some setup:
|
|
|
|
|
|
|
|
1> makelink resources amiga/resources force
|
2009-07-26 20:23:34 +04:00
|
|
|
1> copy amiga/resources/themes/default/NetSurf.info NetSurf.info
|
2009-01-11 00:21:45 +03:00
|
|
|
|
|
|
|
It should then be possible to run NetSurf by executing NetSurf from the
|
|
|
|
Shell or by double-clicking on the icon.
|
|
|
|
|
|
|
|
|
|
|
|
Obtaining NetSurf's build dependencies
|
|
|
|
========================================
|
|
|
|
|
|
|
|
Many of NetSurf's dependencies are included with the OS4 SDK or available
|
|
|
|
from Aminet or OS4Depot. The remainder must be built manually.
|
|
|
|
|
2010-01-03 00:22:08 +03:00
|
|
|
The NetSurf project's libraries
|
|
|
|
---------------------------------
|
|
|
|
|
|
|
|
The NetSurf project has developed several libraries which are required by
|
2012-03-24 02:50:52 +04:00
|
|
|
the browser. To fetch each of these libraries, run the appropriate commands
|
|
|
|
from the Docs/LIBRARIES file.
|
2010-01-03 00:22:08 +03:00
|
|
|
|
|
|
|
To build and install these libraries, simply enter each of their directories
|
|
|
|
and run:
|
|
|
|
|
2014-03-30 01:47:04 +04:00
|
|
|
1> gmake PREFIX=/path/to/buildsystem
|
2010-01-03 00:22:08 +03:00
|
|
|
|
2014-03-30 01:47:04 +04:00
|
|
|
The path MUST be in UNIX format and point to directory containing "share".
|
2010-01-03 00:22:08 +03:00
|
|
|
|
|
|
|
| Note: Building libsvgtiny requires gperf, which is available from Aminet:
|
|
|
|
|
|
|
|
|
| http://www.aminet.net/package/dev/c/gperf
|
|
|
|
|
2009-01-11 00:21:45 +03:00
|
|
|
|
|
|
|
cURL
|
|
|
|
------
|
|
|
|
|
|
|
|
A version of libcurl built for newlib is available from Aminet
|
2009-01-15 15:24:53 +03:00
|
|
|
|
2014-03-30 01:47:04 +04:00
|
|
|
http://www.os4depot.net/share/development/library/misc/libcurl.lha
|
2009-01-11 00:21:45 +03:00
|
|
|
|
2009-01-15 15:24:53 +03:00
|
|
|
|
2009-01-11 00:21:45 +03:00
|
|
|
|
2014-01-04 21:07:11 +04:00
|
|
|
libpng
|
2009-01-11 00:21:45 +03:00
|
|
|
--------
|
|
|
|
|
2014-01-04 21:07:11 +04:00
|
|
|
NetSurf uses libPNG to display PNG files.
|
2014-03-30 01:47:04 +04:00
|
|
|
It builds without any problems on OS4, or available from OS4Depot:
|
2009-01-15 15:24:53 +03:00
|
|
|
|
2014-03-30 01:47:04 +04:00
|
|
|
http://www.os4depot.net/share/development/library/graphics/libpng.lha
|
|
|
|
|
2009-01-11 00:21:45 +03:00
|
|
|
|
|
|
|
OpenSSL
|
2009-08-10 17:51:37 +04:00
|
|
|
---------
|
2009-01-11 00:21:45 +03:00
|
|
|
|
2009-01-15 15:24:53 +03:00
|
|
|
NetSurf uses OpenSSL for encrypted transfers.
|
|
|
|
|
|
|
|
http://www.os4depot.net/share/development/library/misc/libopenssl.lha
|
|
|
|
|
2009-01-11 00:21:45 +03:00
|
|
|
|
2011-03-01 18:40:30 +03:00
|
|
|
Libharu
|
2009-01-11 00:21:45 +03:00
|
|
|
---------
|
|
|
|
|
2011-03-01 18:40:30 +03:00
|
|
|
NetSurf can use Haru PDF to enable PDF export. Haru PDF can be obtained
|
|
|
|
from http://libharu.org/. We require libharu 2.2 or later.
|
2009-01-11 00:21:45 +03:00
|
|
|
|
2011-03-01 18:40:30 +03:00
|
|
|
| Note: libharu cannot be auto-detected by the Makefile. If you wish to
|
|
|
|
| enable it, do so by creating a Makefile.config file.
|
2009-01-11 00:21:45 +03:00
|
|
|
|
|
|
|
|
|
|
|
libregex
|
|
|
|
----------
|
|
|
|
|
|
|
|
A version of the regular expression library can be obtained from Aminet:
|
|
|
|
|
|
|
|
http://www.aminet.net/package/dev/lib/libregex-4.4.3
|
|
|
|
|
|
|
|
|
|
|
|
openurl.library
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
The AmigaOS mailto: URL support uses openurl.library, this and the includes
|
|
|
|
can be obtained from Aminet:
|
|
|
|
|
|
|
|
http://www.aminet.net/package/comm/www/OpenURL-OS4
|
|
|
|
|
|
|
|
|
2014-03-30 01:47:04 +04:00
|
|
|
Spidermonkey
|
|
|
|
--------------
|
2009-01-11 00:21:45 +03:00
|
|
|
|
2014-03-30 01:47:04 +04:00
|
|
|
Experimental Javascript support requires Spidermonkey. The patches to
|
|
|
|
build v1.7 are available from the NetSurf toolchains Git repository.
|
2009-01-11 00:21:45 +03:00
|
|
|
|