Projects STRLCPY criu Commits 69e35362
🤬
  • Bump SONAME to 2

    libcriu.so used to have the SONAME
    
    $ readelf -d lib/c/libcriu.so   | grep SONAME
     0x000000000000000e (SONAME)             Library soname: [libcriu.so.1]
    
    The recent changes to libcriu (removed and added functions, changes from
    `char *`-args to `const char *`) are breaking ABI and API. This requires
    a new SONAME of 2. This patch changes the SONAME to 2:
    
    $ readelf -d lib/c/libcriu.so   | grep SONAME
     0x000000000000000e (SONAME)             Library soname: [libcriu.so.2]
    
    Signed-off-by: Adrian Reber <[email protected]>
  • Loading...
  • Adrian Reber committed with Andrei Vagin 5 years ago
    69e35362
    1 parent 6c8ea604
  • ■ ■ ■ ■
    Makefile.versions
    skipped 11 lines
    12 12   
    13 13  #
    14 14  # C library for CRIU.
    15  -CRIU_SO_VERSION_MAJOR := 1
     15 +CRIU_SO_VERSION_MAJOR := 2
    16 16  CRIU_SO_VERSION_MINOR := 0
    17 17   
    18 18  export CRIU_SO_VERSION_MAJOR CRIU_SO_VERSION_MINOR
    skipped 14 lines
Please wait...
Page is in error, reload to recover