diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-06 15:18:55 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-06 17:16:40 -0500 |
commit | f0745d2257fce6d32090fe8548589679af6b8153 (patch) | |
tree | 6e37d04125e8bfe1814ba1c39108dcf8f4ff47a3 /libraries/equinox/equinox.SlackBuild | |
parent | 80343e3789b63904324f3a0133b78171809c2a80 (diff) |
libraries/equinox: Patched for glib 2.32+.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/equinox/equinox.SlackBuild')
-rw-r--r-- | libraries/equinox/equinox.SlackBuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libraries/equinox/equinox.SlackBuild b/libraries/equinox/equinox.SlackBuild index c0f1ff3596db5..04988490cba22 100644 --- a/libraries/equinox/equinox.SlackBuild +++ b/libraries/equinox/equinox.SlackBuild @@ -6,8 +6,9 @@ PRGNAM=equinox VERSION=${VERSION:-1.50} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} + DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README" if [ -z "$ARCH" ]; then @@ -52,6 +53,10 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# Starting with glib 2.32 it is now mandatory to +# include glib.h instead of individual headers. +patch -p1 -i $CWD/glib-single-include.patch + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |