diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2014-03-24 16:04:57 +0100 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-04-12 13:58:47 -0500 |
commit | 2c4d6bad0e9fbfc07b524b63a517ecff5659443d (patch) | |
tree | a1d455cd2aab0b3a0e8fcfe68949ccb41ce6ff4c /office/texmacs/texmacs.SlackBuild | |
parent | a211ff3cc9b2988894eec687a391d84568fe8b52 (diff) | |
download | slackbuilds-2c4d6bad0e9fbfc07b524b63a517ecff5659443d.tar.gz |
office/texmacs: Link against guile1.8 (to avoid segfaults).
Thanks to foobarz on irc for the hint
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'office/texmacs/texmacs.SlackBuild')
-rw-r--r-- | office/texmacs/texmacs.SlackBuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/office/texmacs/texmacs.SlackBuild b/office/texmacs/texmacs.SlackBuild index 04a1c45c38..a5df00b5b2 100644 --- a/office/texmacs/texmacs.SlackBuild +++ b/office/texmacs/texmacs.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=texmacs VERSION=${VERSION:-1.0.7.21} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} SRCNAM=TeXmacs @@ -71,6 +71,11 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# Use guile1.8, guile-2.x in Slackware causes segfaults +sed -i -e "s|guile-config\ |guile-config1.8 |g" -e "s|guile\ |guile1.8 |g" configure + +export GUILE_AUTO_COMPILE=0 + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |