annotate src/of-mapping-1-cross-fixes.patch @ 4089:98a8748f0438

of-mapping: update to 1.2.1 * build_packages.m: update mapping version * src/of-mapping.mk: update checksum,version, subdir and add dependancy on gdal * src/of-mapping-1-cross-fixes.patch: new file
author John Donoghue <john.donoghue@ieee.org>
date Mon, 08 Feb 2016 06:15:11 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4089
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 diff -ur mapping-1.2.1.orig/src/configure mapping-1.2.1/src/configure
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 --- mapping-1.2.1.orig/src/configure 2016-02-08 12:49:21.906234446 -0500
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3 +++ mapping-1.2.1/src/configure 2016-02-08 12:50:26.136276230 -0500
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 @@ -1810,8 +1810,8 @@
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 OCTAVE=octave
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
6 fi
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 -HAS_RAD2DEG=`$OCTAVE -qf --eval "printf ('%i', exist ('rad2deg'))"`
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 -HAS_DEG2RAD=`$OCTAVE -qf --eval "printf ('%i', exist ('deg2rad'))"`
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 +HAS_RAD2DEG=0 #`$OCTAVE -qf --eval "printf ('%i', exist ('rad2deg'))"`
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11 +HAS_DEG2RAD=0 #`$OCTAVE -qf --eval "printf ('%i', exist ('deg2rad'))"`
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
13 if test "$HAS_RAD2DEG" == 0; then
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
14 ac_config_files="$ac_config_files rad2deg.m"
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
15 diff -ur mapping-1.2.1.orig/src/configure.ac mapping-1.2.1/src/configure.ac
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
16 --- mapping-1.2.1.orig/src/configure.ac 2016-02-08 12:49:21.906234446 -0500
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
17 +++ mapping-1.2.1/src/configure.ac 2016-02-08 12:50:01.067650216 -0500
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
18 @@ -11,8 +11,8 @@
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
19 OCTAVE=octave
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
20 fi
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
21
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
22 -HAS_RAD2DEG=`$OCTAVE -qf --eval "printf ('%i', exist ('rad2deg'))"`
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
23 -HAS_DEG2RAD=`$OCTAVE -qf --eval "printf ('%i', exist ('deg2rad'))"`
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
24 +HAS_RAD2DEG=0 #`$OCTAVE -qf --eval "printf ('%i', exist ('rad2deg'))"`
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
25 +HAS_DEG2RAD=0 #`$OCTAVE -qf --eval "printf ('%i', exist ('deg2rad'))"`
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
26
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
27 if test "$HAS_RAD2DEG" == 0; then
98a8748f0438 of-mapping: update to 1.2.1
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
28 AC_CONFIG_FILES([rad2deg.m])