summaryrefslogtreecommitdiff
path: root/newmoon
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-02-21 23:06:10 -0500
committerB. Stack <bgstack15@gmail.com>2023-02-21 23:06:10 -0500
commitb992789f4c1f9b2a47bf8fec7bf5ee34a66600d7 (patch)
treebb2c8506c325ba1eedf41fc8bf8fe88270f73dc3 /newmoon
parentnm 32.0.1 rc1 (diff)
downloadstackrpms-b992789f4c1f9b2a47bf8fec7bf5ee34a66600d7.tar.gz
stackrpms-b992789f4c1f9b2a47bf8fec7bf5ee34a66600d7.tar.bz2
stackrpms-b992789f4c1f9b2a47bf8fec7bf5ee34a66600d7.zip
newmoon rpm mozconfig closer to dpkg mozconfig
The 32-bit newmoon dpkg builds, but 32-bit rpm does not yet. Maybe this will fix it. 67:39.27 /usr/bin/ld: /tmp/ccaDPDEe.ltrans124.ltrans.o: in function `mozilla::gfx::ScaleYCbCrToRGB32_deprecated(unsigned char const*, unsigned char const*, unsigned char const*, unsigned char*, int, int, int, int, int, int, int, mozilla::gfx::YUVType, mozilla::gfx::Rotate, mozilla::gfx::ScaleFilter) [clone .constprop.0]': 67:39.27 /builddir/build/BUILD/pale-moon/platform/gfx/ycbcr/yuv_row_posix.cpp:882: undefined reference to `PICLinearScaleYUVToRGB32Row_SSE' 67:39.27 /usr/bin/ld: /builddir/build/BUILD/pale-moon/platform/gfx/ycbcr/yuv_row_posix.cpp:743: undefined reference to `PICScaleYUVToRGB32Row_SSE' 67:39.27 /usr/bin/ld: /builddir/build/BUILD/pale-moon/platform/gfx/ycbcr/yuv_row_posix.cpp:645: undefined reference to `PICConvertYUVToRGB32Row_SSE' 67:39.27 /usr/bin/ld: /tmp/ccaDPDEe.ltrans124.ltrans.o: in function `mozilla::gfx::ConvertYCbCrToRGB(mozilla::layers::PlanarYCbCrData const&, mozilla::gfx::SurfaceFormat const&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, unsigned char*, int) [clone .constprop.0]': 67:39.27 /builddir/build/BUILD/pale-moon/platform/gfx/ycbcr/yuv_row_posix.cpp:645: undefined reference to `PICConvertYUVToRGB32Row_SSE' 67:39.27 /usr/bin/ld: libxul.so: hidden symbol `PICConvertYUVToRGB32Row_SSE' isn't defined 67:39.27 /usr/bin/ld: final link failed: bad value 67:39.27 collect2: error: ld returned 1 exit status
Diffstat (limited to 'newmoon')
-rw-r--r--newmoon/newmoon-mozconfig3
1 files changed, 2 insertions, 1 deletions
diff --git a/newmoon/newmoon-mozconfig b/newmoon/newmoon-mozconfig
index feb1e68..f993e62 100644
--- a/newmoon/newmoon-mozconfig
+++ b/newmoon/newmoon-mozconfig
@@ -2,7 +2,7 @@ mk_add_options AUTOCLOBBER=1
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/pmbuild
ac_add_options --enable-application=palemoon
-ac_add_options --enable-optimize="-O2 -Wl,--no-keep-memory -Wl,--reduce-memory-overhead"
+ac_add_options --enable-optimize="-O2 -w"
ac_add_options --enable-official-branding
ac_add_options --enable-official-vendor
@@ -42,4 +42,5 @@ ac_add_options --disable-updater
# Disable telemetry reporting
export MOZ_TELEMETRY_REPORTING=
+ac_add_options --prefix=/usr
ac_add_options --x-libraries=/usr/lib
bgstack15