wok annotate thunderbird/stuff/mozconfig @ rev 20255

firefox, thunderbird: try to force i686
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 21:40:37 2018 +0100 (2018-03-13)
parents cd72738a73b8
children
rev   line source
domcox@14214 1 # mozconfig file for building thunderbird (17.0.0esr) on SliTaz
domcox@14214 2
domcox@14214 3 # This file contains the options used in the Thunderbird build. You may
domcox@14214 4 # need to specify additional options for your specific build needs.
domcox@14214 5 # Use the information provided by running './configure --help' to
domcox@14214 6 # help you determine if you need to add any additional options.
domcox@14214 7 # Some additional options can be added by uncommenting the examples
domcox@14214 8 # in this file or adding options by inserting a line containing
domcox@14214 9 # 'ac_add_options --some-option-you-need'. Be aware that some accepted
domcox@14214 10 # options, such as '--with-system-bz2', do not affect the build.
domcox@14214 11
domcox@14214 12 # tb for slitaz:
domcox@14214 13 ac_add_options --with-distribution-id=slitaz
domcox@14214 14
domcox@14214 15 # we want to build thunderbird:
domcox@14214 16 ac_add_options --enable-application=mail
domcox@14214 17
domcox@14214 18 # Create an object directory and specify to build the package in that
domcox@14214 19 # directory. If desired, modify the location of the object directory
domcox@14214 20 # to a directory inside the source tree by removing '../' from the
domcox@14214 21 # line below:
domcox@14214 22 mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-thunderbird
domcox@14214 23
domcox@14214 24 # Specify arch option and level of optimization:
domcox@14214 25 ac_add_options --enable-optimize="$CFLAGS -Wno-all -Wno-extra -Wno-empty-body \
domcox@14214 26 -Wno-type-limits -Wno-unused-result -Wno-attributes -Wno-enum-compare \
domcox@14214 27 -Wno-multichar"
domcox@14214 28
domcox@14214 29 # Issue all warnings demanded by strict ANSI C
domcox@14214 30 ac_add_options --disable-pedantic
domcox@14214 31
domcox@14214 32 # Speed up the build by running several jobs (set the number of CPU cores):
domcox@14214 33 mk_add_options MOZ_MAKE_FLAGS="-j$(grep processor /proc/cpuinfo | wc -l)"
domcox@14214 34
domcox@14214 35 # Reduce the log size:
domcox@14214 36 ac_add_options --silent
domcox@14214 37
domcox@14214 38 # Recommended dependencies:
domcox@14214 39 ac_add_options --enable-system-sqlite
domcox@14214 40 ac_add_options --with-system-libevent
domcox@14214 41 ac_add_options --with-system-libvpx
domcox@14214 42 ac_add_options --with-system-nspr
domcox@14214 43 ac_add_options --with-system-nss
domcox@14214 44
domcox@14214 45 # Uncomment these lines if you have installed optional dependencies:
domcox@14214 46 #ac_add_options --enable-system-hunspell
domcox@14214 47 #ac_add_options --enable-startup-notification
domcox@14214 48
domcox@14214 49 # If you you do not want dbus-glib, comment out this line:
domcox@14214 50 #ac_add_options --disable-dbus
domcox@14214 51
domcox@14214 52 # If you have installed wireless-tools comment out this line:
domcox@14214 53 ac_add_options --disable-necko-wifi
domcox@14214 54
domcox@14214 55 # If you have installed libnotify comment out this line:
domcox@14214 56 #ac_add_options --disable-libnotify
domcox@14214 57
domcox@14214 58 # We dont use --enable-official-branding since we dont have any authorization
domcox@14214 59 # to use trademarks per http://www.mozilla.org/foundation/trademarks/
domcox@14214 60 ac_add_options --enable-official-branding
domcox@14214 61
domcox@14214 62 # It is recommended not to touch anything below this line
domcox@14214 63 ac_add_options --prefix=/usr
domcox@14214 64
domcox@14214 65 ac_add_options --disable-crashreporter
domcox@14214 66 ac_add_options --disable-installer
domcox@14214 67 ac_add_options --disable-updater
domcox@14214 68 ac_add_options --disable-debug
domcox@14214 69 ac_add_options --disable-tests
domcox@14214 70
domcox@14214 71 ac_add_options --enable-strip
domcox@14214 72 ac_add_options --enable-install-strip
domcox@14214 73
domcox@14214 74 ac_add_options --enable-gio
domcox@14214 75 ac_add_options --enable-safe-browsing
domcox@14214 76 ac_add_options --enable-url-classifier
domcox@14214 77
domcox@14214 78 ac_add_options --enable-system-ffi
domcox@14214 79 ac_add_options --enable-system-pixman
domcox@14214 80
domcox@14214 81 ac_add_options --enable-shared-js
domcox@14214 82 ac_add_options --with-pthreads
domcox@14214 83
domcox@14214 84 ac_add_options --with-system-bz2
domcox@14214 85 ac_add_options --with-system-jpeg
domcox@14214 86 #ac_add_options --with-system-png # features missing
domcox@14214 87 ac_add_options --with-system-zlib
domcox@14214 88
domcox@14214 89 ac_add_options --disable-gconf
domcox@14214 90 #ac_add_options --enable-system-cairo # crash
domcox@14214 91 ac_add_options --disable-logging
pascal@20255 92
pascal@20255 93 ac_add_options --host=i686-pc-linux-gnu
pascal@20255 94 ac_add_options --target=i686-pc-linux-gnu