1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-04 06:15:24 +00:00
freebsd-ports/www/cgicc/files/patch-Cgicc
Mikhail Teterin 18492fd79a Upgrade from 3.2.9 to 3.2.10. Fix a couple of warnings and an actual
error introduced in the new version by the developers.

Remove the library's .la file in post-install (no other way to suppress
the junk, apparently). Turn on parallel-building (MAKE_JOBS_SAFE).

Notified by: portscout
2013-01-14 17:55:58 +00:00

10 lines
383 B
Plaintext

--- cgicc/Cgicc.cpp 2013-01-12 06:48:13.000000000 -0500
+++ cgicc/Cgicc.cpp 2013-01-14 12:33:56.000000000 -0500
@@ -388,5 +388,5 @@
// Find the '&' or ';' separating subsequent name/value pairs
- pos = data.find_first_of(';&', oldPos);
+ pos = data.find_first_of(";&", oldPos);
// Even if an '&' wasn't found the rest of the string is a value