~ubuntu-branches/ubuntu/jaunty/xulrunner-1.9/jaunty

« back to all changes in this revision

Viewing changes to mozilla/configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin, Sasa Bodiroza, Fabien Tassin, Alexander Sack
  • Date: 2008-09-02 11:54:00 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20080902115400-yfy26crvszpalvg5
Tags: 1.9.0.2+build3+nobinonly-0ubuntu1
[ Sasa Bodiroza ]
* In debian/rules:
  - Set 644 chmod to png files (LP: #252793) [Patch by Paolo Naldini]

[ Fabien Tassin ]
* improve create-build-system.sh to detect build-tree directory
  when embedded tarball is used. Fix un-escaped variables.
  Create build-system.tar.gz in the debian directory to prevent
  cdbs to check and unpack it during the build
  - update debian/create-build-system.sh
* Fix variables when an embedded tarball is used
  - update debian/rules
* Fix buffer overflow in realpath() at runtime and drop -U_FORTIFY_SOURCE
  from CPPFLAGS (LP: #263014)
  - add debian/patches/bz412610_att335369_realpath_overflow.patch
  - update debian/patches/series

[ Alexander Sack <asac@jwsdot.com> ]
* introduce preferred plugins by mime-type experimental feature;
  you can now set a pref to explicitly select a plugin to serve a particilar
  mime-type; patch contains further documentation.
  - add debian/patches/bzXXX_plugin_for_mimetype_pref.patch
  - update debian/patches/series
* drop patches applied upstream
  - drop bz120380_att326044.patch (fixed by bz442629)
  - update debian/patches/series

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
    COMPILE_ENVIRONMENT=1,
203
203
    COMPILE_ENVIRONMENT= )
204
204
 
 
205
MOZ_ARG_WITH_STRING(l10n-base,
 
206
[  --with-l10nbase=DIR     path to l10n repositories],
 
207
    L10NBASEDIR=$withval)
 
208
if test ! -z "$L10NBASEDIR"; then
 
209
    if test "$L10NBASEDIR" = "yes" -o "$L10NBASEDIR" = "no"; then
 
210
        AC_MSG_ERROR([--with-l10n-base must specify a path])
 
211
    elif test -d "$L10NBASEDIR"; then
 
212
        L10NBASEDIR=`cd "$L10NBASEDIR" && pwd`
 
213
    else
 
214
        AC_MSG_ERROR([Invalid value --with-l10n-base, $L10NBASEDIR doesn't exist])
 
215
    fi
 
216
else
 
217
    dnl default to $(topsrcdir)/../l10n for 1.9
 
218
    L10NBASEDIR='$(topsrcdir)/../l10n'
 
219
fi
 
220
AC_SUBST(L10NBASEDIR)
 
221
 
205
222
dnl ========================================================
206
223
dnl Checks for compilers.
207
224
dnl ========================================================
483
500
        elif test "$_CC_MAJOR_VERSION" = "15"; then
484
501
            _CC_SUITE=9
485
502
            CXXFLAGS="$CXXFLAGS -Zc:wchar_t-"
 
503
            LDFLAGS="$LDFLAGS -MANIFESTUAC:NO"
486
504
            _USE_DYNAMICBASE=1
487
505
            AC_DEFINE(_CRT_SECURE_NO_WARNINGS)
488
506
            AC_DEFINE(_CRT_NONSTDC_NO_WARNINGS)
5973
5991
     AC_DEFINE(MOZ_HELP_VIEWER)
5974
5992
fi
5975
5993
AC_SUBST(MOZ_HELP_VIEWER)
 
5994
if test "$MOZ_BUILD_APP" = "browser" -a -n "$MOZ_HELP_VIEWER"; then
 
5995
    AC_MSG_ERROR([Cannot build Firefox with --enable-help-viewer.])
 
5996
fi
5976
5997
 
5977
5998
dnl ========================================================
5978
5999
dnl = Enable safe browsing (anti-phishing)