libasn1c.git branch master updated. 41b85d5597119fa8105dc0641ffe5cd1bbae39b2

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/osmocom-commitlog@lists.osmocom.org/.

gitosis at osmocom.org gitosis at osmocom.org
Mon Aug 31 07:35:54 UTC 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "asn1c runtime code as shared library".

The branch, master has been updated
       via  41b85d5597119fa8105dc0641ffe5cd1bbae39b2 (commit)
       via  f6b9173b02bfac093177cf6fd0f48ad56c5786c7 (commit)
      from  c904c936d7b284d56602135327c9c544d56fa909 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libasn1c/commit/?id=41b85d5597119fa8105dc0641ffe5cd1bbae39b2

commit 41b85d5597119fa8105dc0641ffe5cd1bbae39b2
Author: Harald Welte <laforge at gnumonks.org>
Date:   Mon Aug 31 08:56:53 2015 +0200

    update to asn1c aper branch commit 6e00cbce7304a6972e82a12bb5fa82e41fa541be
    
    which is closes to Lev Walkins master 62913d8b8e1eb96d74315ff748475ca818b69752

http://cgit.osmocom.org/libasn1c/commit/?id=f6b9173b02bfac093177cf6fd0f48ad56c5786c7

commit f6b9173b02bfac093177cf6fd0f48ad56c5786c7
Author: Harald Welte <laforge at gnumonks.org>
Date:   Mon Aug 31 09:06:57 2015 +0200

    fix autoconf/automake warnings

-----------------------------------------------------------------------

Summary of changes:
 Makefile.am                        |   2 +-
 asn1c-talloc.patch                 |  16 +-
 configure.ac                       |   4 +-
 include/asn1c/ANY.h                |   3 +
 include/asn1c/BOOLEAN.h            |   2 +
 include/asn1c/ENUMERATED.h         |   2 +
 include/asn1c/INTEGER.h            |  27 +-
 include/asn1c/NULL.h               |   2 +
 include/asn1c/NativeEnumerated.h   |   2 +
 include/asn1c/NativeInteger.h      |   2 +
 include/asn1c/NativeReal.h         |   2 +
 include/asn1c/OBJECT_IDENTIFIER.h  |   8 +-
 include/asn1c/OCTET_STRING.h       |   4 +-
 include/asn1c/REAL.h               |   2 +
 include/asn1c/RELATIVE-OID.h       |   2 +-
 include/asn1c/asn_codecs.h         |   4 +-
 include/asn1c/asn_internal.h       |  19 +-
 include/asn1c/asn_system.h         |  12 +-
 include/asn1c/constr_CHOICE.h      |   6 +-
 include/asn1c/constr_SEQUENCE.h    |   8 +-
 include/asn1c/constr_SEQUENCE_OF.h |   2 +
 include/asn1c/constr_SET.h         |  10 +-
 include/asn1c/constr_SET_OF.h      |   4 +-
 include/asn1c/constr_TYPE.h        |  20 +-
 include/asn1c/per_decoder.h        |  22 +
 include/asn1c/per_encoder.h        |  11 +
 include/asn1c/per_opentype.h       |   2 +
 include/asn1c/per_support.h        |  44 +-
 include/asn1c/xer_decoder.h        |   7 +-
 src/ANY.c                          |  87 +++-
 src/BIT_STRING.c                   |   6 +-
 src/BMPString.c                    |   6 +-
 src/BOOLEAN.c                      |  58 ++-
 src/ENUMERATED.c                   |  36 +-
 src/GeneralString.c                |   4 +-
 src/GeneralizedTime.c              |  37 +-
 src/GraphicString.c                |   4 +-
 src/IA5String.c                    |   4 +-
 src/INTEGER.c                      | 815 ++++++++++++++++++++++++++++++-------
 src/ISO646String.c                 |   4 +-
 src/Makefile.am                    |   4 +-
 src/NULL.c                         |  56 ++-
 src/NativeEnumerated.c             | 130 +++++-
 src/NativeInteger.c                |  72 +++-
 src/NativeReal.c                   | 104 ++++-
 src/NumericString.c                |   4 +-
 src/OBJECT_IDENTIFIER.c            | 131 +++---
 src/OCTET_STRING.c                 | 405 ++++++++++++++++--
 src/ObjectDescriptor.c             |   4 +-
 src/PrintableString.c              |  10 +-
 src/REAL.c                         | 125 ++++--
 src/RELATIVE-OID.c                 |  16 +-
 src/T61String.c                    |   4 +-
 src/TeletexString.c                |   4 +-
 src/UTCTime.c                      |   4 +-
 src/UTF8String.c                   |   8 +-
 src/UniversalString.c              |   4 +-
 src/VideotexString.c               |   4 +-
 src/VisibleString.c                |   4 +-
 src/asn_codecs_prim.c              |  45 +-
 src/ber_decoder.c                  |   2 +-
 src/constr_CHOICE.c                | 194 ++++++++-
 src/constr_SEQUENCE.c              | 355 +++++++++++++++-
 src/constr_SEQUENCE_OF.c           |  69 +++-
 src/constr_SET.c                   | 218 +++++++++-
 src/constr_SET_OF.c                |  94 ++++-
 src/constr_TYPE.c                  |   2 +-
 src/der_encoder.c                  |  14 +-
 src/per_decoder.c                  |  87 +++-
 src/per_encoder.c                  |  95 ++++-
 src/per_opentype.c                 | 102 +++--
 src/per_support.c                  | 307 ++++++++++++--
 src/xer_decoder.c                  |  14 +-
 src/xer_support.c                  |  16 +-
 74 files changed, 3492 insertions(+), 527 deletions(-)


hooks/post-receive
-- 
asn1c runtime code as shared library



More information about the osmocom-commitlog mailing list