diff options
author | Thomas Groman <tgroman@nuegia.net> | 2020-05-17 02:00:00 -0700 |
---|---|---|
committer | Thomas Groman <tgroman@nuegia.net> | 2020-05-17 02:00:00 -0700 |
commit | 9b8957d0a626e0dbf0602cf1d214b007afd7290e (patch) | |
tree | da4440967d90e4858724c2d0411fa741decf3825 /doc | |
parent | 4389d9ee302bf4f707cc272d3fd6c80605cad964 (diff) | |
download | webbrowser-9b8957d0a626e0dbf0602cf1d214b007afd7290e.tar webbrowser-9b8957d0a626e0dbf0602cf1d214b007afd7290e.tar.gz webbrowser-9b8957d0a626e0dbf0602cf1d214b007afd7290e.tar.lz webbrowser-9b8957d0a626e0dbf0602cf1d214b007afd7290e.tar.xz webbrowser-9b8957d0a626e0dbf0602cf1d214b007afd7290e.zip |
further refined example mozconfig
Diffstat (limited to 'doc')
-rw-r--r-- | doc/mozconfig.example | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/doc/mozconfig.example b/doc/mozconfig.example index 33293e7..4ac5e00 100644 --- a/doc/mozconfig.example +++ b/doc/mozconfig.example @@ -1,17 +1,17 @@ # Where stuff is on the system mk_add_options PYTHON=/usr/bin/python2 mk_add_options AUTOCONF=/usr/bin/autoconf-2.13 +mk_add_options MOZ_OBJDIR=$HOME/build/wbobjects/ +ac_add_options --x-libraries=/usr/lib64 -# Clear this if not a 64bit build +# Clear this if not a 64bit build (also see x-libraries option) _BUILD_64=1 # Set GTK Version to 2 or 3 _GTK_VERSION=2 mk_add_options AUTOCLOBBER=1 -mk_add_options MOZ_OBJDIR=/home/$USER/build/wbbuild/ ac_add_options --enable-application=webbrowser -ac_add_options --x-libraries=/usr/lib # Compiler Optimizations # Note: add -march=<yourcpufamily> for a CPU optimized build. @@ -53,11 +53,5 @@ ac_add_options --disable-pulseaudio ac_add_options --enable-alsa ac_add_options --enable-jack -# Processor architecure specific build options -if [ -n "$_BUILD_64" ]; then - ac_add_options --x-libraries=/usr/lib64 -else - ac_add_options --x-libraries=/usr/lib -fi - +# Misc export MOZ_PKG_SPECIAL=gtk$_GTK_VERSION |