You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-visualization/grace/files/grace-5.1.21-netcdf.patch

12 lines
413 B

--- configure.orig 2007-02-16 22:44:49.000000000 +0000
+++ configure 2007-09-28 23:03:29.000000000 +0100
@@ -15181,7 +15181,7 @@
int main(void) {
char *vlib;
vlib = nc_inq_libvers();
- if (strcmp(vlib, "3.0") < 0) {
+ if (((vlib[0] == '"') && (strcmp(vlib, "\"3.0") < 0)) || ((vlib[0] != '"') && (strcmp(vlib, "3.0") < 0))){
exit(1);
}
exit(0);