Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to library to 0:2.0 #23

Merged
merged 2 commits into from
Nov 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions bfile/bfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,14 @@ int bfs_shadow_directory_stat(BFiles bfs, int no, const char **directory,
return mf_area_directory_stat(bfs->commit_area, no, directory,
used_bytes, max_bytes);
}

/* unimplemented functions not in use, but kept to ensure ABI */
void bf_xclose() {}
void bf_xopen() {}
void bf_alloc() {}
void bf_free() {}


/*
* Local variables:
* c-basic-offset: 4
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ AC_CONFIG_AUX_DIR([config])
AM_INIT_AUTOMAKE([1.9])
PACKAGE_SUFFIX="-2.0"
AC_SUBST(PACKAGE_SUFFIX)
dnl http://www.gnu.org/software/libtool/manual.html#Versioning
ZEBRALIBS_VERSION_INFO=0:1:0
dnl https://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning
ZEBRALIBS_VERSION_INFO=0:2:0
AC_SUBST([ZEBRALIBS_VERSION_INFO])
main_zebralib=index/libidzebra${PACKAGE_SUFFIX}.la
AC_SUBST(main_zebralib)
Expand Down