Codebase list gsl / de967e1
Import Debian changes 2.1+dfsg-2 gsl (2.1+dfsg-2) unstable; urgency=low * debian/patches/dont-disable-deprecated: Re-apply first half of patch by Iain Lane to not disable deprecated functions (Closes: #804765) Dirk Eddelbuettel 5 years ago
5 changed file(s) with 36 addition(s) and 14 deletion(s). Raw diff Collapse all Expand all
0 gsl (2.1+dfsg-2) unstable; urgency=low
1
2 * debian/patches/dont-disable-deprecated: Re-apply first half of patch
3 by Iain Lane to not disable deprecated functions (Closes: #804765)
4
5 -- Dirk Eddelbuettel <edd@debian.org> Tue, 24 Nov 2015 22:52:14 -0600
6
07 gsl (2.1+dfsg-1) unstable; urgency=low
18
29 * New upstream version released today
1212 dnl
1313 AC_CONFIG_FILES([ \
1414 Makefile \
15 Index: b/multifit/fdjac.c
16 ===================================================================
17 --- a/multifit/fdjac.c
18 +++ b/multifit/fdjac.c
19 @@ -135,7 +135,7 @@
20 if (status)
21 return status;
22
23 - status = fdjac(x, fdf, f, J);
24 + status = fdjac(x, NULL, fdf, f, J);
25 if (status)
26 return status;
27
0 Index: b/configure.ac
1 ===================================================================
2 --- a/configure.ac
3 +++ b/configure.ac
4 @@ -566,10 +566,6 @@
5 AH_BOTTOM([#define RETURN_IF_NULL(x) if (!x) { return ; }
6 ])
7
8 -AH_VERBATIM([GSL_DISABLE_DEPRECATED],
9 -[/* Disable deprecated functions and enums while building */
10 -#define GSL_DISABLE_DEPRECATED 1])
11 -
12 dnl
13 AC_CONFIG_FILES([ \
14 Makefile \
15 Index: b/multifit/fdjac.c
16 ===================================================================
17 --- a/multifit/fdjac.c
18 +++ b/multifit/fdjac.c
19 @@ -135,7 +135,7 @@
20 if (status)
21 return status;
22
23 - status = fdjac(x, fdf, f, J);
24 + status = fdjac(x, NULL, fdf, f, J);
25 if (status)
26 return status;
27
0 dont-disable-deprecated
+0
-1
debian/patches/series.disabled less more
0 dont-disable-deprecated