annotate src/mingw-cfitsio-1-fixes.patch @ 6354:9d1395334e68

mingw-w64: Handle negative zero input for cacosh (bug #49091). * src/mingw-w64-complex-inverse-trig.patch: Handle negative zero input for cacosh.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 05 Aug 2022 19:32:03 +0200
parents d3d051b4515f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6236
d3d051b4515f cfitsio: update to v4.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 4997
diff changeset
1 diff -ur cfitsio-4.1.0.orig/configure.in cfitsio-4.1.0/configure.in
d3d051b4515f cfitsio: update to v4.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 4997
diff changeset
2 --- cfitsio-4.1.0.orig/configure.in 2022-05-26 08:43:32.205001801 -0400
d3d051b4515f cfitsio: update to v4.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 4997
diff changeset
3 +++ cfitsio-4.1.0/configure.in 2022-05-26 08:44:53.020552448 -0400
d3d051b4515f cfitsio: update to v4.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 4997
diff changeset
4 @@ -489,7 +489,7 @@
d3d051b4515f cfitsio: update to v4.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 4997
diff changeset
5 if test "x$ADD_CURL" = xyes; then
d3d051b4515f cfitsio: update to v4.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 4997
diff changeset
6 # Use curl-config to get compiler & linker flags, if available.
d3d051b4515f cfitsio: update to v4.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 4997
diff changeset
7 AC_CHECK_PROG([CURLCONFIG], [curl-config], [curl-config], [], [], [])
d3d051b4515f cfitsio: update to v4.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 4997
diff changeset
8 - if test "x$CURLCONFIG" != x; then
d3d051b4515f cfitsio: update to v4.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 4997
diff changeset
9 + if test "x$CURLCONFIG" != x && test "x$CURLCONFIG" != "xnone"; then
d3d051b4515f cfitsio: update to v4.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 4997
diff changeset
10 CURL_LIB=`$CURLCONFIG --libs`
d3d051b4515f cfitsio: update to v4.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 4997
diff changeset
11 CURL_INC=`$CURLCONFIG --cflags`
d3d051b4515f cfitsio: update to v4.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 4997
diff changeset
12 if test "x$CURL_LIB" != x; then