~ubuntu-branches/ubuntu/karmic/nspr/karmic

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin
  • Date: 2008-05-21 14:50:02 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080521145002-cr27w44je0vttvwb
Tags: 4.7.1+1.9-0ubuntu1
* New upstream release, picked from FIREFOX_3_0rc1_RELEASE cvs tag
  (LP: #233922)
* update diverged patches
  - update debian/patches/30_pkgconfig.patch
  - update debian/patches/81_sonames.patch
  - update debian/patches/99_configure.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
MACOS_SDK_DIR=
78
78
NEXT_ROOT=
79
79
MT=
 
80
MOZ_OS2_HIGH_MEMORY=1
80
81
 
81
82
dnl Link in libraries necessary to resolve all symbols for shared libs
82
83
RESOLVE_LINK_SYMBOLS=
243
244
            USE_CPLUS=1
244
245
      fi]) 
245
246
 
 
247
AC_ARG_WITH(arm-kuser,
 
248
    [  --with-arm-kuser        Use kuser helpers (Linux/ARM only)
 
249
                          (Requires kernel 2.6.13 or later)],
 
250
    [ if test "$withval" = "yes"; then
 
251
            AC_DEFINE(_PR_ARM_KUSER)
 
252
      fi ])
 
253
 
246
254
dnl ========================================================
247
255
dnl = Mac OS X SDK support
248
256
dnl ========================================================
792
800
OS_CONFIG="${OS_TARGET}${OS_RELEASE}"
793
801
 
794
802
dnl ========================================================
795
 
dnl Enable high-memory support on OS/2, disabled by default
 
803
dnl Enable high-memory support on OS/2 by default.
796
804
dnl ========================================================
797
805
AC_ARG_ENABLE(os2-high-mem,
798
 
    [  --enable-os2-high-mem Enable high-memory support on OS/2],
799
 
    [ if test "$enableval" = "yes"; then
 
806
    [  --disable-os2-high-mem  Disable high-memory support on OS/2],
 
807
    [ if test "$enableval" = "no"; then
 
808
        MOZ_OS2_HIGH_MEMORY=
 
809
      else
800
810
        MOZ_OS2_HIGH_MEMORY=1
801
 
      else
802
 
        MOZ_OS2_HIGH_MEMORY=
803
811
      fi ])
804
812
 
805
813
dnl ========================================================