Package: libantlr3c / 3.4+dfsg-4

Metadata

Package Version Patches format
libantlr3c 3.4+dfsg-4 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
00 debian soname.patch | (download)

Makefile.am | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 set a proper soname
 Upstream doesn't version the ANTLR 3 C runtime (uses -avoid-version!). Use
 -release X.Y -version-info 0:0:0 for the Debian packages.
01 fix configure warning.patch | (download)

configure.ac | 3 1 + 2 - 0 !
1 file changed, 1 insertion(+), 2 deletions(-)

 fix a warning in configure script
 Kill AC_INCLUDES_DEFAULT() which is misused here and causes a warning
 during execution of the configure script.
02 convert utf.patch | (download)

Makefile.am | 2 1 + 1 - 0 !
configure.ac | 1 1 + 0 - 0 !
include/antlr3convertutf.h | 61 61 + 0 - 0 !
src/antlr3convertutf.cc | 47 47 + 0 - 0 !
src/antlr3string.c | 14 9 + 5 - 0 !
5 files changed, 119 insertions(+), 6 deletions(-)

 add the required convertutf16toutf8 function
 include/antlr3convertutf.h and src/antlr3convertutf.c had to be removed
 due to licensing issues. This patch provides an alternative implementation
 of ConvertUTF16toUTF8, the only function that was defined in the removed
 files that is actually used in the rest of the code.