diff options
-rw-r--r-- | academic/gwyddion/gwyddion-2.46-no-minizip.patch | 12 | ||||
-rw-r--r-- | academic/gwyddion/gwyddion.SlackBuild | 5 |
2 files changed, 16 insertions, 1 deletions
diff --git a/academic/gwyddion/gwyddion-2.46-no-minizip.patch b/academic/gwyddion/gwyddion-2.46-no-minizip.patch new file mode 100644 index 0000000000..fc851e3637 --- /dev/null +++ b/academic/gwyddion/gwyddion-2.46-no-minizip.patch @@ -0,0 +1,12 @@ +Index: modules/file/jpkscan.c +=================================================================== +--- modules/file/jpkscan.c (revision 19092) ++++ modules/file/jpkscan.c (working copy) +@@ -52,6 +52,7 @@ + + #include "config.h" + #include <string.h> ++#include <stdlib.h> + #include <libgwyddion/gwymacros.h> + #include <libgwyddion/gwymath.h> + #include <libgwyddion/gwyutils.h> diff --git a/academic/gwyddion/gwyddion.SlackBuild b/academic/gwyddion/gwyddion.SlackBuild index 9127ba917d..04397682e1 100644 --- a/academic/gwyddion/gwyddion.SlackBuild +++ b/academic/gwyddion/gwyddion.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=gwyddion VERSION=${VERSION:-2.46} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -69,6 +69,9 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +# patch for 2.46 version atoi problem +patch -p0 < $CWD/gwyddion-2.46-no-minizip.patch + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |