aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2021-08-13 19:28:10 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2021-08-13 19:28:10 +0000
commit497f7b9f1696a940af25c29fefe6844a53d0f2ec (patch)
tree5710ca34b79c6e700ef05a3eb3b3681fbf5ac5ee
parent3b5dff3ea583726dca0709140447c653dcc90706 (diff)
downloadports-497f7b9f1696a940af25c29fefe6844a53d0f2ec.tar.gz
ports-497f7b9f1696a940af25c29fefe6844a53d0f2ec.zip
www/firefox: fix build on powerpc64
sqlite3 needs libm linking to buildon powerpc64.
-rw-r--r--www/firefox/files/patch-third__party_sqlite3_src_moz.build12
1 files changed, 12 insertions, 0 deletions
diff --git a/www/firefox/files/patch-third__party_sqlite3_src_moz.build b/www/firefox/files/patch-third__party_sqlite3_src_moz.build
new file mode 100644
index 000000000000..8f1ed77f2be7
--- /dev/null
+++ b/www/firefox/files/patch-third__party_sqlite3_src_moz.build
@@ -0,0 +1,12 @@
+--- third_party/sqlite3/src/moz.build.old 2021-08-09 16:08:59.381182000 -0500
++++ third_party/sqlite3/src/moz.build 2021-08-09 16:10:25.370954000 -0500
+@@ -92,7 +92,8 @@
+
+ # Enabling sqlite math functions
+ DEFINES['SQLITE_ENABLE_MATH_FUNCTIONS'] = True
+-if CONFIG["OS_TARGET"] == "Linux" or CONFIG["OS_TARGET"] == "Android":
++if CONFIG["OS_TARGET"] == "Linux" or CONFIG["OS_TARGET"] == "Android" or \
++ CONFIG["OS_TARGET"] == "FreeBSD":
+ OS_LIBS += [
+ "m"
+ ]