asn1c.git branch aper-prefix-onto-upstream created. b9b7c9e54d079c6093a5e77a79aabed409dc9bfb

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
Wed Jul 6 15:10:19 UTC 2016


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 "Lev Walkin's asn1 compiler".

The branch, aper-prefix-onto-upstream has been created
        at  b9b7c9e54d079c6093a5e77a79aabed409dc9bfb (commit)

- Log -----------------------------------------------------------------
http://cgit.osmocom.org/asn1c/commit/?id=b9b7c9e54d079c6093a5e77a79aabed409dc9bfb

commit b9b7c9e54d079c6093a5e77a79aabed409dc9bfb
Author: Harald Welte <laforge at gnumonks.org>
Date:   Sun May 1 01:02:17 2016 +0200

    aper fix for decoding constrained integer with lower boundary
    
    When decoding a constrained integer with a lower boundary, we need
    to make sure the lower bound is added after decoding the raw offset
    inside the range.
    
    Before this change, RANAP_CauseMisc_unspecified_failure (115) would be
    encoded as 2 (115 - 113 = 2), but would be decoded as 2, rather than
    113+2 = 115.
    
    Code for this was taken from
    openairinterface5g/openair3/S1AP/MESSAGES/ASN1/asn1cpatch.p0 which
    unfortunately doesn't carry much of a revision history :/

http://cgit.osmocom.org/asn1c/commit/?id=2edc63e3aadeef652c2c82a2c0c6a31bb9d2f4fa

commit 2edc63e3aadeef652c2c82a2c0c6a31bb9d2f4fa
Author: Holger Hans Peter Freyther <holger at moiji-mobile.com>
Date:   Wed Jan 13 13:49:52 2016 +0100

    automake: automake 1.11.1 does not have this macro, ignore it then

http://cgit.osmocom.org/asn1c/commit/?id=5e2364f614b114a5373bf0a445e31b682c5ff3bb

commit 5e2364f614b114a5373bf0a445e31b682c5ff3bb
Author: Harald Welte <laforge at gnumonks.org>
Date:   Thu Sep 10 09:31:18 2015 +0200

    prefixing of generated types using a ASN1C_PREFIX environment variable
    
    When generating code for multiple ASN.1 syntaxes that have clashing
    names, we need to add a prefix in order to prevent clashes in the global
    C symbol namespace.  Using the ASN1C_PREFIX environment variable and
    this patch serves as a work-around to that.  All non-basic type names
    as well as references to that type and source code + header file names
    will be pre-fixed accordingly.

http://cgit.osmocom.org/asn1c/commit/?id=840ee6d2c7f204f3da90485591f6402611040a39

commit 840ee6d2c7f204f3da90485591f6402611040a39
Author: roux <roux at mycompany.com>
Date:   Sat Apr 30 16:03:12 2016 +0200

    Fix a bug in asn1c PER code when skipping unknown extension
    
    Basically when skiping an unknown extension, asn1c did read 24 bits per
    24 bits and later on failed if the remaining bits (up to 23) were
    superior to 8.  The patch reads 1 bit per 1 bit.
    
    (imported from openairinterface5g/openair2/RRC/LITE/MESSAGES/asn1c/asn1cpatch.p0)

http://cgit.osmocom.org/asn1c/commit/?id=17c282425afa75b5672e0efa0abcb5cb448f177e

commit 17c282425afa75b5672e0efa0abcb5cb448f177e
Author: Harald Welte <laforge at gnumonks.org>
Date:   Sat Apr 30 17:31:33 2016 +0200

    fix APER encoding of integer (backport from openairinterface)
    
    The number of bytes used by an APER encoded integer depends on its
    actually encoded value, not on the maximum value that could be possibly
    encoded.
    
    The old code would e.g. always use 24 bits if the maximum encoded value
    would require 24 bits.
    
    To give an example RANAP MaxBitrate (INTEER 1 .. 16000000) value 64000
    was previously encoded as "80 00 f9 ff", while it is now the correct
    representation "40 f9 ff".
    
    Thanks to Dieter Spaar for detecting this problem in the Osmo-IUH
    generated RANAP output, and thanks to openairinterface for fixing the
    bug in their code (sadly not contributed to upstream asn1c, though).

http://cgit.osmocom.org/asn1c/commit/?id=2b3068fb85a07fbf3de8ba845194f800bb2107f5

commit 2b3068fb85a07fbf3de8ba845194f800bb2107f5
Author: Harald Welte <laforge at gnumonks.org>
Date:   Sat Dec 19 13:32:58 2015 +0100

    APER: Fix encoding of INTEGER with lower_bound != 0
    
    When encoding an INTEGER, we need to subtract the lower bound before
    encoding the value.  This is specified in Clause 10.5.7.x of X.691.
    
    The decoder already does this correct, but the encoder was wrong.

http://cgit.osmocom.org/asn1c/commit/?id=b9068d4cac84d5af732c0cf6498ea8981bdfdb3e

commit b9068d4cac84d5af732c0cf6498ea8981bdfdb3e
Author: Harald Welte <laforge at gnumonks.org>
Date:   Mon Aug 31 09:24:42 2015 +0200

    skeletons: Fix compiler warnings introduced by Eurecom aper patch
    
    ... some of which is related to the recent 'constification' of
    mainline asn1c.

http://cgit.osmocom.org/asn1c/commit/?id=cc803bd0b82cc6b0e3e5cea40fd24c338de2b7d2

commit cc803bd0b82cc6b0e3e5cea40fd24c338de2b7d2
Author: Sylvain Munaut <tnt at 246tNt.com>
Date:   Mon Jun 14 23:33:55 2010 +0200

    skeletons: Print member's name in CHOICE print
    
    Sometimes, if the choice is a null or integer or ...
    it's not easy to know what has really been selected without
    the choice member name.
    
    Signed-off-by: Sylvain Munaut <tnt at 246tNt.com>

http://cgit.osmocom.org/asn1c/commit/?id=96ed86a274ff7b16d384babad3fb430b2217ff2d

commit 96ed86a274ff7b16d384babad3fb430b2217ff2d
Author: Sylvain Munaut <tnt at 246tNt.com>
Date:   Mon Aug 31 08:43:36 2015 +0200

    skeletons: Add verbose pretty print for enumerated types
    
    This is just much easier to read when reading the text dumps.

http://cgit.osmocom.org/asn1c/commit/?id=b3a2304ce0863bc9445eee2cc390adf804fc58b2

commit b3a2304ce0863bc9445eee2cc390adf804fc58b2
Author: Harald Welte <laforge at gnumonks.org>
Date:   Sun Aug 30 16:41:20 2015 +0200

    aper: fixup after port

http://cgit.osmocom.org/asn1c/commit/?id=7fd73b92742bcb497c769444dc0ca877ffe9d702

commit 7fd73b92742bcb497c769444dc0ca877ffe9d702
Author: Harald Welte <laforge at gnumonks.org>
Date:   Sun Aug 30 16:36:38 2015 +0200

    Support automake-1.15
    
    Without this, autoreconf with automake-1.15 fails due to the "-Werror"

http://cgit.osmocom.org/asn1c/commit/?id=0b57b08e0d2ad54d42076f8f50f5acb183d62b8c

commit 0b57b08e0d2ad54d42076f8f50f5acb183d62b8c
Author: Harald Welte <laforge at gnumonks.org>
Date:   Sun Aug 30 16:33:07 2015 +0200

    port/merge Eurecom APER support from OPENAIRMME
    
    Eurecom has developed APER support for asn1c as part of the OPENAIRMME
    softare (a LTE MME).  This is too important to let it bit-rout out
    of asn1c.  Let's forward-port and merge it.

http://cgit.osmocom.org/asn1c/commit/?id=344520699cbb480b384a857e95af2efd14cc0b3a

commit 344520699cbb480b384a857e95af2efd14cc0b3a
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jul 3 07:06:42 2016 +0000

    oops; fixed argument substitution

http://cgit.osmocom.org/asn1c/commit/?id=92876d38ddb2fea5b3c870c3679d4f48e676cc8f

commit 92876d38ddb2fea5b3c870c3679d4f48e676cc8f
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jul 3 00:00:41 2016 -0700

    checked with shellcheck

http://cgit.osmocom.org/asn1c/commit/?id=bce0ce4351e595ae25f2cb91ffe6d2949ce7ea25

commit bce0ce4351e595ae25f2cb91ffe6d2949ce7ea25
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jul 2 23:51:32 2016 -0700

    _BSD_SOURCE moved to a more global location

http://cgit.osmocom.org/asn1c/commit/?id=eabd277f064f86f20aa4eecab471fab0af84fec2

commit eabd277f064f86f20aa4eecab471fab0af84fec2
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jul 2 23:22:58 2016 -0700

    _BSD_SOURCE might be defined in unber.c

http://cgit.osmocom.org/asn1c/commit/?id=88434eed3246821ae60231c4d318f19bed0f6218

commit 88434eed3246821ae60231c4d318f19bed0f6218
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jul 2 23:03:32 2016 -0700

    avoid too much verbosity

http://cgit.osmocom.org/asn1c/commit/?id=74757c8be30bd620b6e85fc9ac8951143fd3f469

commit 74757c8be30bd620b6e85fc9ac8951143fd3f469
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jul 2 23:02:59 2016 -0700

    avoid shifting negative value

http://cgit.osmocom.org/asn1c/commit/?id=a6040115b33ae2d0ae1b0ebdfba51fb15ce133c3

commit a6040115b33ae2d0ae1b0ebdfba51fb15ce133c3
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jul 2 23:01:30 2016 -0700

    unlock snprintf on some systems

http://cgit.osmocom.org/asn1c/commit/?id=f6e4fc9f228ceb4185ca261cfe3d9c141eea619e

commit f6e4fc9f228ceb4185ca261cfe3d9c141eea619e
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jul 2 23:44:40 2016 +0000

    make distcheck works now

http://cgit.osmocom.org/asn1c/commit/?id=b2adf16083f4aa6ed229bb3659deb91ae27620d1

commit b2adf16083f4aa6ed229bb3659deb91ae27620d1
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jul 2 23:34:15 2016 +0000

    ignore autogenerated m4 stuff

http://cgit.osmocom.org/asn1c/commit/?id=d8cc847d8745b41de280b87f30cc72ee9e62438e

commit d8cc847d8745b41de280b87f30cc72ee9e62438e
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jul 2 23:33:32 2016 +0000

    working better with new automake test suite driver

http://cgit.osmocom.org/asn1c/commit/?id=619f0cd736b579eb88a25951d8b5698aebca5f7d

commit 619f0cd736b579eb88a25951d8b5698aebca5f7d
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jul 2 19:55:23 2016 +0000

    alloca.h is not universally available

http://cgit.osmocom.org/asn1c/commit/?id=0ec6b19a78ac3457fb306fb9785f579b4ae9545b

commit 0ec6b19a78ac3457fb306fb9785f579b4ae9545b
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 05:17:34 2016 -0700

    try to move it around for travis

http://cgit.osmocom.org/asn1c/commit/?id=64dd70cfc1cefbdddbdeb31c3d6014db841bda59

commit 64dd70cfc1cefbdddbdeb31c3d6014db841bda59
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 05:14:07 2016 -0700

    EMIT_ASN_DEBUG is in skeletons flags

http://cgit.osmocom.org/asn1c/commit/?id=d60414d95722352fb33befdaa932f51454bb0a47

commit d60414d95722352fb33befdaa932f51454bb0a47
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 05:11:57 2016 -0700

    leave only skeleton flags

http://cgit.osmocom.org/asn1c/commit/?id=25307f6eb6922e97706b7e3e92827c9eee262b1c

commit 25307f6eb6922e97706b7e3e92827c9eee262b1c
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 04:44:03 2016 -0700

    explicit stdio for snprintf

http://cgit.osmocom.org/asn1c/commit/?id=f379fe3ac9669575dc84ab233327077f2fe05dba

commit f379fe3ac9669575dc84ab233327077f2fe05dba
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 04:30:27 2016 -0700

    check-src has its own extra_dist

http://cgit.osmocom.org/asn1c/commit/?id=f84fc1c23d84b2379dc64c7c616b4b14646b257d

commit f84fc1c23d84b2379dc64c7c616b4b14646b257d
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 04:29:50 2016 -0700

    ignore makefiles

http://cgit.osmocom.org/asn1c/commit/?id=681f0590d07920030e733b6bfb2fa49e6a5b5695

commit 681f0590d07920030e733b6bfb2fa49e6a5b5695
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 04:21:26 2016 -0700

    DBL_TRUE_MIN is C11, make it portable

http://cgit.osmocom.org/asn1c/commit/?id=19a2118f3ca35213be332414546155312b113422

commit 19a2118f3ca35213be332414546155312b113422
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 04:15:32 2016 -0700

    alloca.h for alloca (c89)

http://cgit.osmocom.org/asn1c/commit/?id=3798f34a8df3c7b3e865a1ffbfc5b6eaf27df092

commit 3798f34a8df3c7b3e865a1ffbfc5b6eaf27df092
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 04:07:45 2016 -0700

    tests code uses C99

http://cgit.osmocom.org/asn1c/commit/?id=9db13ab322c1c0704bd76d2f8a9fcb422d1e969e

commit 9db13ab322c1c0704bd76d2f8a9fcb422d1e969e
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 04:04:08 2016 -0700

    more verbose builds

http://cgit.osmocom.org/asn1c/commit/?id=55982b820ac4e6c9d6fd784dc2b0f413c1451efb

commit 55982b820ac4e6c9d6fd784dc2b0f413c1451efb
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 03:56:16 2016 -0700

    undo skeletons hierarchy detection

http://cgit.osmocom.org/asn1c/commit/?id=7623d8c33e285bc959bd23080ed42cf4869e4e18

commit 7623d8c33e285bc959bd23080ed42cf4869e4e18
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 03:55:21 2016 -0700

    try to fetch timegm from the environment

http://cgit.osmocom.org/asn1c/commit/?id=4ecc33785d60604974ba2c31168aa72f446bd0fc

commit 4ecc33785d60604974ba2c31168aa72f446bd0fc
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 03:49:06 2016 -0700

    Makefile is part of distribution

http://cgit.osmocom.org/asn1c/commit/?id=9ee77995ba3c81a7a4ca457a6e901cfb751a597a

commit 9ee77995ba3c81a7a4ca457a6e901cfb751a597a
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 03:46:16 2016 -0700

    more explicit test spec

http://cgit.osmocom.org/asn1c/commit/?id=9e66d16ab307c347b5357187bfaa0e4956781763

commit 9e66d16ab307c347b5357187bfaa0e4956781763
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 03:36:35 2016 -0700

    infer skeletons level

http://cgit.osmocom.org/asn1c/commit/?id=819c832b86aee1e5d6ecffc8263ebbfa53b88793

commit 819c832b86aee1e5d6ecffc8263ebbfa53b88793
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 03:24:28 2016 -0700

    go one dir deeper, still, if possible

http://cgit.osmocom.org/asn1c/commit/?id=04532ccc2a8d92b3101c1070e35bb22587fc239a

commit 04532ccc2a8d92b3101c1070e35bb22587fc239a
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 03:09:00 2016 -0700

    another attempt at travis debug

http://cgit.osmocom.org/asn1c/commit/?id=7c1dc05f0e10ede24f577fe4b9fa0fdf8036e1f2

commit 7c1dc05f0e10ede24f577fe4b9fa0fdf8036e1f2
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 03:08:15 2016 -0700

    do not use reserved identifiers, contd

http://cgit.osmocom.org/asn1c/commit/?id=c6cac8e958ef898fc2d36cc4ef354ff599711731

commit c6cac8e958ef898fc2d36cc4ef354ff599711731
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 02:57:07 2016 -0700

    do not use reserved identifiers

http://cgit.osmocom.org/asn1c/commit/?id=327bab2b532646622b98fe22ee7377c2d1b05b1c

commit 327bab2b532646622b98fe22ee7377c2d1b05b1c
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 02:36:27 2016 -0700

    run autoupdate

http://cgit.osmocom.org/asn1c/commit/?id=26303bd894c1f3c7da3e0252a3e1ea97417f097f

commit 26303bd894c1f3c7da3e0252a3e1ea97417f097f
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 02:30:52 2016 -0700

    fixed https://github.com/vlm/asn1c/issues/78

http://cgit.osmocom.org/asn1c/commit/?id=034ee194f4d7d4b760cd5e0808a124d2b5ee005f

commit 034ee194f4d7d4b760cd5e0808a124d2b5ee005f
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 02:28:33 2016 -0700

    no dereference before check

http://cgit.osmocom.org/asn1c/commit/?id=f2b2f3766068fb87e5ad2c2827e730229fa7bd7f

commit f2b2f3766068fb87e5ad2c2827e730229fa7bd7f
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 02:23:48 2016 -0700

    error values check from printf, fprintf, fwrite

http://cgit.osmocom.org/asn1c/commit/?id=4cc4599a7cda13e39891eae9d92dec48093cd81b

commit 4cc4599a7cda13e39891eae9d92dec48093cd81b
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 02:08:12 2016 -0700

    more diagnostics if memory fails

http://cgit.osmocom.org/asn1c/commit/?id=13e57efbd50c7ed66f0312ba13b7b17360b02f14

commit 13e57efbd50c7ed66f0312ba13b7b17360b02f14
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 02:05:23 2016 -0700

    removed superfluous check before free

http://cgit.osmocom.org/asn1c/commit/?id=d8b8364c8acea078ff098d8b6fbaa0a29da9346a

commit d8b8364c8acea078ff098d8b6fbaa0a29da9346a
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Mar 14 02:00:27 2016 -0700

    removed unneeded check before free()

http://cgit.osmocom.org/asn1c/commit/?id=c6b34cc6de9ad401dac2f41ecb6620b89e4c71cf

commit c6b34cc6de9ad401dac2f41ecb6620b89e4c71cf
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Mar 13 23:46:09 2016 -0700

    another attempt at travis debug

http://cgit.osmocom.org/asn1c/commit/?id=88badc8a5b78cab32eb92cf772c50de0d7db8ff3

commit 88badc8a5b78cab32eb92cf772c50de0d7db8ff3
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Mar 13 17:17:49 2016 -0700

    another attempt at travis debug

http://cgit.osmocom.org/asn1c/commit/?id=1ec76055007a79b1568bebc8f9e6ae015262df8c

commit 1ec76055007a79b1568bebc8f9e6ae015262df8c
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Mar 13 17:13:20 2016 -0700

    do not use reserved identifiers for variables

http://cgit.osmocom.org/asn1c/commit/?id=84b578827c9d16888ccfe45fb9e3c6f4c2790cb8

commit 84b578827c9d16888ccfe45fb9e3c6f4c2790cb8
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Mar 13 16:55:28 2016 -0700

    show the environment to debug absense of tests

http://cgit.osmocom.org/asn1c/commit/?id=e8eb52b4134f917235f0fbedcc264885afa93a4a

commit e8eb52b4134f917235f0fbedcc264885afa93a4a
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Mar 13 16:27:12 2016 -0700

    ignore .tmp.* files

http://cgit.osmocom.org/asn1c/commit/?id=08068b26d31a9382cae0606edeb9c2a0fe18b30f

commit 08068b26d31a9382cae0606edeb9c2a0fe18b30f
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jan 24 22:49:06 2016 -0800

    environment override for tests directory

http://cgit.osmocom.org/asn1c/commit/?id=8ca13c8a984a13e033231000aa786575c8ed915f

commit 8ca13c8a984a13e033231000aa786575c8ed915f
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jan 24 22:40:00 2016 -0800

    test subnormals

http://cgit.osmocom.org/asn1c/commit/?id=104af19d65bc356c1e7df2d628e13ff8021bfb91

commit 104af19d65bc356c1e7df2d628e13ff8021bfb91
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jan 24 22:13:27 2016 -0800

    pedantic c89 safety

http://cgit.osmocom.org/asn1c/commit/?id=9736348c470b7641663009316fc8d94ba6a409c1

commit 9736348c470b7641663009316fc8d94ba6a409c1
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jan 24 19:23:02 2016 -0800

    remove compiler warnings

http://cgit.osmocom.org/asn1c/commit/?id=a57f2827b5c85cb2e975479e9a78183a6adb796c

commit a57f2827b5c85cb2e975479e9a78183a6adb796c
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jan 24 18:19:35 2016 -0800

    different relative path

http://cgit.osmocom.org/asn1c/commit/?id=3b2278aa3541c3bc2a8591a112c8aa478bc2f2b8

commit 3b2278aa3541c3bc2a8591a112c8aa478bc2f2b8
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jan 24 16:43:50 2016 -0800

    fix overflow bug comparing ranges

http://cgit.osmocom.org/asn1c/commit/?id=8be766aa8ea0ec65bad84f007ecd65b1bed59b9a

commit 8be766aa8ea0ec65bad84f007ecd65b1bed59b9a
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 13:07:06 2016 -0800

    use -Define to figure out where to get tests from

http://cgit.osmocom.org/asn1c/commit/?id=d7a4621673400f1ea07f43b44389f7a04161e4b4

commit d7a4621673400f1ea07f43b44389f7a04161e4b4
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 13:06:30 2016 -0800

    do a distcheck as well

http://cgit.osmocom.org/asn1c/commit/?id=8efef2edfb167874ae5d3c7262b4f964d165eb9b

commit 8efef2edfb167874ae5d3c7262b4f964d165eb9b
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 13:01:43 2016 -0800

    keep LICENSE in distribution

http://cgit.osmocom.org/asn1c/commit/?id=f8b56f8a7b2d1590012b2ba0c041978b02565068

commit f8b56f8a7b2d1590012b2ba0c041978b02565068
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 12:33:11 2016 -0800

    unneeded flag

http://cgit.osmocom.org/asn1c/commit/?id=ca1b9e568af4841c62398b4788562e5378b88afd

commit ca1b9e568af4841c62398b4788562e5378b88afd
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 12:25:43 2016 -0800

    libtool macros autorconf-generated

http://cgit.osmocom.org/asn1c/commit/?id=897bb8ac6663da509cf692ca715099770570e317

commit 897bb8ac6663da509cf692ca715099770570e317
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 12:06:33 2016 -0800

    get back to space-based quoting

http://cgit.osmocom.org/asn1c/commit/?id=f5aff0287da4e46439e52822a8f4c3f940abda30

commit f5aff0287da4e46439e52822a8f4c3f940abda30
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 12:05:40 2016 -0800

    different quoting

http://cgit.osmocom.org/asn1c/commit/?id=fde3d9747b9a973ee3d33199923e824ec27c80cb

commit fde3d9747b9a973ee3d33199923e824ec27c80cb
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 12:05:00 2016 -0800

    formatting

http://cgit.osmocom.org/asn1c/commit/?id=79a75f24fb3aacfdf279b82a075ca112dc606a95

commit 79a75f24fb3aacfdf279b82a075ca112dc606a95
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 12:03:08 2016 -0800

    update README

http://cgit.osmocom.org/asn1c/commit/?id=36b913f785e337e4d63c9abbe7f34dfc441919de

commit 36b913f785e337e4d63c9abbe7f34dfc441919de
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 09:45:07 2016 -0800

    ignore man Makefile

http://cgit.osmocom.org/asn1c/commit/?id=790b57973c7a5b30b8f5a15ea923dd4622c5a11c

commit 790b57973c7a5b30b8f5a15ea923dd4622c5a11c
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 09:43:40 2016 -0800

    RPM spec is not part of asn1c

http://cgit.osmocom.org/asn1c/commit/?id=2087f1f2aa436cc2e02e9f00486280332b744d6c

commit 2087f1f2aa436cc2e02e9f00486280332b744d6c
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 09:24:38 2016 -0800

    RPM spec is not part of asn1c anymore

http://cgit.osmocom.org/asn1c/commit/?id=7e55cac51c170a8627be5d6530c2951798208692

commit 7e55cac51c170a8627be5d6530c2951798208692
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 09:19:17 2016 -0800

    modernize distribution a bit

http://cgit.osmocom.org/asn1c/commit/?id=0f9685fa2e224e44e88591eff0a01cb2da297d56

commit 0f9685fa2e224e44e88591eff0a01cb2da297d56
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 09:06:19 2016 -0800

    copyright years: 2003-2016

http://cgit.osmocom.org/asn1c/commit/?id=848456b42a4b1bfd1475c10322f5afc3d8e97f7b

commit 848456b42a4b1bfd1475c10322f5afc3d8e97f7b
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 09:00:47 2016 -0800

    clang-format config with my preferred style

http://cgit.osmocom.org/asn1c/commit/?id=41a1da63e5f812899be173dfb1b92d0c1eb981f5

commit 41a1da63e5f812899be173dfb1b92d0c1eb981f5
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 08:50:28 2016 -0800

    autoformatted (no semantic change)

http://cgit.osmocom.org/asn1c/commit/?id=438fe8796fd1c6f270e2a98cef2958f6cacb2b02

commit 438fe8796fd1c6f270e2a98cef2958f6cacb2b02
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 08:32:57 2016 -0800

    avoid compile warning

http://cgit.osmocom.org/asn1c/commit/?id=d62d7d51b06f17550e971e8aef16cb115875669a

commit d62d7d51b06f17550e971e8aef16cb115875669a
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 08:04:46 2016 -0800

    ftruncate output should not be ignored under some compilers

http://cgit.osmocom.org/asn1c/commit/?id=47d884c7828140a4ca793631e0a2855f64ff93be

commit 47d884c7828140a4ca793631e0a2855f64ff93be
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 06:38:16 2016 -0800

    removed AM_MAINTAINER_MODE

http://cgit.osmocom.org/asn1c/commit/?id=c6080fdd93934eb1936c01835f76c3690e143f3e

commit c6080fdd93934eb1936c01835f76c3690e143f3e
Author: Lev Walkin <vlm at lionet.info>
Date:   Sat Jan 23 06:35:34 2016 -0800

    generate manual pages from Markdown instead of writing directly

http://cgit.osmocom.org/asn1c/commit/?id=483c14fcecf75316cdcbc59e6f3f95c2a52286c2

commit 483c14fcecf75316cdcbc59e6f3f95c2a52286c2
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jan 10 20:41:57 2016 -0800

    gcc warning fix?

http://cgit.osmocom.org/asn1c/commit/?id=04abdb24636ed70603c090ae6e00bba4af9c0a8b

commit 04abdb24636ed70603c090ae6e00bba4af9c0a8b
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jan 10 20:03:04 2016 -0800

    get rid of compiler warning of too smart compiler

http://cgit.osmocom.org/asn1c/commit/?id=0f2624523b06040c4bd61581b573b9b09b791a97

commit 0f2624523b06040c4bd61581b573b9b09b791a97
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jan 10 13:33:08 2016 -0800

    bit strings also can haz members

http://cgit.osmocom.org/asn1c/commit/?id=f76132009a38af5d83bf51bca69747dd5eea794b

commit f76132009a38af5d83bf51bca69747dd5eea794b
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jan 10 13:27:18 2016 -0800

    split --enable-Werror and --enable-test-Werror

http://cgit.osmocom.org/asn1c/commit/?id=304a93e6c8172b1cbd60a9e46a7c424558d95898

commit 304a93e6c8172b1cbd60a9e46a7c424558d95898
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jan 10 13:15:18 2016 -0800

    warnings as errors

http://cgit.osmocom.org/asn1c/commit/?id=1b3a135184aa300e25b28b3215debdefb732a6fd

commit 1b3a135184aa300e25b28b3215debdefb732a6fd
Author: Lev Walkin <vlm at lionet.info>
Date:   Sun Jan 10 13:15:02 2016 -0800

    fix compiler warnings

http://cgit.osmocom.org/asn1c/commit/?id=6b949bbd7ae00081a510622016f16eaa2b3b48f1

commit 6b949bbd7ae00081a510622016f16eaa2b3b48f1
Merge: 7c69105 9d59a40
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Sep 14 13:50:17 2015 -0700

    Merge branch 'master' of github.com:vlm/asn1c

http://cgit.osmocom.org/asn1c/commit/?id=7c69105e7029d5cbf887a398bbc7ab50adad762c

commit 7c69105e7029d5cbf887a398bbc7ab50adad762c
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Sep 14 13:50:14 2015 -0700

    add Jaroslav Imrich to ChangeLog

http://cgit.osmocom.org/asn1c/commit/?id=9d59a402a60d144c35a86c7041b3ec807b9ea15c

commit 9d59a402a60d144c35a86c7041b3ec807b9ea15c
Merge: c644d99 2253e6b
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Sep 14 13:49:35 2015 -0700

    Merge pull request #50 from jariq/master
    
    C89 compliant variable declaration

http://cgit.osmocom.org/asn1c/commit/?id=c644d99b8c506931127e9b027d99e7a9c7aefd8d

commit c644d99b8c506931127e9b027d99e7a9c7aefd8d
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Sep 14 13:45:36 2015 -0700

    add Adrien Destugues to ChangeLog

http://cgit.osmocom.org/asn1c/commit/?id=88152c8bd8927c1061015b2d724926329d0c129f

commit 88152c8bd8927c1061015b2d724926329d0c129f
Merge: 51a7fdc ce71d91
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Sep 14 12:55:11 2015 -0700

    Merge pull request #66 from simo5/memleak
    
    Avoid memory leak on error

http://cgit.osmocom.org/asn1c/commit/?id=51a7fdc6af564f7a04eb98dc1121e7e5ae644e45

commit 51a7fdc6af564f7a04eb98dc1121e7e5ae644e45
Merge: a1e5b9d 4f47bf5
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Sep 14 12:54:42 2015 -0700

    Merge pull request #67 from simo5/fallthrough
    
    Keep static analyzers happy

http://cgit.osmocom.org/asn1c/commit/?id=a1e5b9d3c4a4398ac69cf2c30b001ce6e70a032e

commit a1e5b9d3c4a4398ac69cf2c30b001ce6e70a032e
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Sep 14 12:50:42 2015 -0700

    autoreconf-2.69 fix

http://cgit.osmocom.org/asn1c/commit/?id=c4edd19acacd825d94d36fb37d10f2ad6822f041

commit c4edd19acacd825d94d36fb37d10f2ad6822f041
Merge: 62913d8 f9c7f85
Author: Lev Walkin <vlm at lionet.info>
Date:   Mon Sep 14 12:44:28 2015 -0700

    Merge pull request #63 from brchiu/master
    
    Update configure.ac

http://cgit.osmocom.org/asn1c/commit/?id=4f47bf56d40ca4da56e86862f0d930fb4081d025

commit 4f47bf56d40ca4da56e86862f0d930fb4081d025
Author: Simo Sorce <simo at redhat.com>
Date:   Thu Sep 3 17:35:04 2015 -0400

    Keep static analyzers happy
    
    Make it clear fall through is intentional.
    
    Signed-off-by: Simo Sorce <simo at redhat.com>

http://cgit.osmocom.org/asn1c/commit/?id=ce71d91898b27f21fe9a2ebddefe48114aee307d

commit ce71d91898b27f21fe9a2ebddefe48114aee307d
Author: Simo Sorce <simo at redhat.com>
Date:   Thu Sep 3 16:34:20 2015 -0400

    Avoid memory leak on error
    
    This was found on an internal Red Hat scan with multiple fuzzers.
    
    Signed-off-by: Simo Sorce <simo at redhat.com>

http://cgit.osmocom.org/asn1c/commit/?id=f9c7f85041b9914b68a6b582bf78d5c539854f6e

commit f9c7f85041b9914b68a6b582bf78d5c539854f6e
Author: brchiu <brchiu at ms35.hinet.net>
Date:   Sat Aug 1 09:52:42 2015 +0800

    Update configure.ac
    
    fixing problem found when using autoreconf-2.69

http://cgit.osmocom.org/asn1c/commit/?id=2253e6b45a42883563b6b3ee996f0bc9708ddb7d

commit 2253e6b45a42883563b6b3ee996f0bc9708ddb7d
Author: Jaroslav Imrich <jaroslav.imrich at gmail.com>
Date:   Fri Oct 31 23:05:21 2014 +0100

    C89 compliant variable declaration

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


hooks/post-receive
-- 
Lev Walkin's asn1 compiler



More information about the osmocom-commitlog mailing list