annotate src/fltk-2-uuid-mod.patch @ 5579:2734b3818171

Avoid double-free with librsb (bug #58957). * src/librsb.mk: Add work-around to avoid double-free (provided by Michele Martone). * src/mingw-of-sparsersb-1-no-render.patch: Remove patch. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Mon, 02 Nov 2020 08:55:18 +0100
parents 1f944d8d6fe5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2993
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 diff -ur fltk-1.3.1.orig/fltk-config.in fltk-1.3.1/fltk-config.in
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 --- fltk-1.3.1.orig/fltk-config.in 2013-05-24 20:20:53.000000000 -0400
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3 +++ fltk-1.3.1/fltk-config.in 2013-05-24 20:22:12.000000000 -0400
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 @@ -341,7 +341,7 @@
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 libdirs=$libs
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
6
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7 for i in $LDLIBS ; do
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 - if test $i != -L$libdir ; then
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 + if test $i != -L$libdir -a $i != -luuid ; then
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 if test -z "$my_libs" ; then
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11 my_libs="$i"
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12 else