Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (b7dc3404d432ecc47b7270115f91a44eecc784ad)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (b7dc3404d432ecc47b7270115f91a44eecc784ad)
  • Date: Sun, 11 Aug 2019 01:01:24 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

gnome2-libs/startup-notification/HISTORY | 3 +++
gnome2-libs/startup-notification/PRE_BUILD | 3 +++
windowmanagers/i3/BUILD | 6 ++++++
windowmanagers/i3/HISTORY | 3 +++
4 files changed, 15 insertions(+)

New commits:
commit b7dc3404d432ecc47b7270115f91a44eecc784ad
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

i3: Fix build against musl

Linking fails with musl because the buildsystem assumes iconv is part of
libc. Force linking with libiconv.

commit c17e9b69e72309818e068b3e2b665174cb129913
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

startup-notification: Fix build against musl

diff --git a/gnome2-libs/startup-notification/HISTORY
b/gnome2-libs/startup-notification/HISTORY
index 83e3827..61f4e3b 100644
--- a/gnome2-libs/startup-notification/HISTORY
+++ b/gnome2-libs/startup-notification/HISTORY
@@ -1,3 +1,6 @@
+2019-08-10 Ismael Luceno <ismael AT sourcemage.org>
+ * PRE_BUILD: Fixed build against musl
+
2011-07-12 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 0.12

diff --git a/gnome2-libs/startup-notification/PRE_BUILD
b/gnome2-libs/startup-notification/PRE_BUILD
new file mode 100755
index 0000000..3c8cac2
--- /dev/null
+++ b/gnome2-libs/startup-notification/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+sedit 's!maybe_os in$!& linux-musl*|\\!' config.sub
diff --git a/windowmanagers/i3/BUILD b/windowmanagers/i3/BUILD
index bf65a78..a038582 100755
--- a/windowmanagers/i3/BUILD
+++ b/windowmanagers/i3/BUILD
@@ -1,2 +1,8 @@
OPTS+=" --disable-builddir" &&
+case "$HOST" in
+*-musl)
+ # The buildsystem assumes iconv is in libc
+ export LIBS="-liconv"
+ ;;
+esac &&
default_build
diff --git a/windowmanagers/i3/HISTORY b/windowmanagers/i3/HISTORY
index c313ace..63bc81e 100644
--- a/windowmanagers/i3/HISTORY
+++ b/windowmanagers/i3/HISTORY
@@ -1,3 +1,6 @@
+2019-08-11 Ismael Luceno <ismael AT sourcemage.org>
+ * BUILD: Fixed build against musl
+
2017-08-15 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 4.13
* DEPENDS: Depends on xcb-util-xrm



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (b7dc3404d432ecc47b7270115f91a44eecc784ad), Ismael Luceno, 08/10/2019

Archive powered by MHonArc 2.6.24.

Top of Page