From cc278efd225a5b69fee8d36f2e9c59219465376c Mon Sep 17 00:00:00 2001 From: pertusus Date: Jan 23 2008 19:30:46 +0000 Subject: - correct netcdf detection patch, thanks José. --- diff --git a/grace-detect-netcdf.diff b/grace-detect-netcdf.diff index 3ca5016..ba2a200 100644 --- a/grace-detect-netcdf.diff +++ b/grace-detect-netcdf.diff @@ -5,7 +5,7 @@ char *vlib; vlib = nc_inq_libvers(); - if (strcmp(vlib, "3.0") < 0) { -+ if ((strcmp(vlib, "\"3.0") < 0) && (strcmp(vlib, "3.0" < 0))){ ++ if (((vlib[0] == '"') && (strcmp(vlib, "\"3.0") < 0)) || ((vlib[0] != '"') && (strcmp(vlib, "3.0") < 0))){ exit(1); } exit(0); diff --git a/grace.spec b/grace.spec index fdcd00d..25d6806 100644 --- a/grace.spec +++ b/grace.spec @@ -3,7 +3,7 @@ Name: grace Version: 5.1.21 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Numerical Data Processing and Visualization Tool License: GPLv2+ @@ -225,9 +225,12 @@ fi %changelog +* Wed Jan 23 2008 Patrice Dumas - 5.1.21-8 +- correct netcdf detection patch, thanks José. + * Wed Jan 23 2008 Patrice Dumas - 5.1.21-7 -- add support for previous netcdf version (in epel) -- drop support for monolithic X +- add support for previous netcdf version (in epel). +- drop support for monolithic X. * Tue Jan 22 2008 Patrice Dumas - 5.1.21-6 - don't add the grace fonts to the X server fonts. Instead use the @@ -235,8 +238,8 @@ fi - use xdg-utils instead of htmlview. - use relative links. - add links to doc and examples in GRACE_HOME to have correct help. -- use debian patch -- clean docs +- use debian patch. +- clean docs. * Fri Sep 28 2007 José Matos - 5.1.21-4 - Correctly detect netcdf (signature has changed).