diff options
author | Bojan Popovic <bocke@slackware-srbija.org> | 2014-01-29 16:54:07 +0100 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-01-29 23:20:29 -0600 |
commit | 767b647414eb2cfcd9ef05fd70c9ccde2bef4f5f (patch) | |
tree | fccb948e66f341d4860364ace5a39c5360c308f6 /system/bochs/bochs.SlackBuild | |
parent | 42f7e907cd5710384a101d3215ddf4920b77f8c1 (diff) | |
download | slackbuilds-767b647414eb2cfcd9ef05fd70c9ccde2bef4f5f.tar.gz |
system/bochs: Updated for version 2.6.2, fixed linking on x86_64.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'system/bochs/bochs.SlackBuild')
-rw-r--r-- | system/bochs/bochs.SlackBuild | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/system/bochs/bochs.SlackBuild b/system/bochs/bochs.SlackBuild index 6b117e4211..db6efdc4ea 100644 --- a/system/bochs/bochs.SlackBuild +++ b/system/bochs/bochs.SlackBuild @@ -1,7 +1,7 @@ #!/bin/sh # Slackware build script for Bochs -# Copyright 2012, Bojan Popovic, Belgrade, Serbia <bocke@slackware-srbija.org> +# Copyright 2012, 2013, 2014, Bojan Popovic, Belgrade, Serbia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,8 +23,14 @@ # Modified by the slackbuilds.org project +# ChangeLog: +# +# * build 2 (2014-01-29): +# New upstream version (2.6.2). Solved the problem with dynamic +# linking on x86_64. + PRGNAM=bochs -VERSION=${VERSION:-2.6} +VERSION=${VERSION:-2.6.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -74,6 +80,12 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# We need this on x86_64 to fix a libtldl problem +libtoolize -c +rm -rf libltdl +aclocal +autoconf + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |