bump libtool number in prep for release

This commit is contained in:
Josh Coalson
2007-07-10 02:09:38 +00:00
parent 224177c389
commit c90a5cad24
4 changed files with 37 additions and 8 deletions

View File

@@ -32,6 +32,29 @@
#ifndef FLACPP__EXPORT_H
#define FLACPP__EXPORT_H
/** \file include/FLAC++/export.h
*
* \brief
* This module contains #defines and symbols for exporting function
* calls, and providing version information and compiled-in features.
*
* See the \link flacpp_export export \endlink module.
*/
/** \defgroup flacpp_export FLAC++/export.h: export symbols
* \ingroup flacpp
*
* \brief
* This module contains #defines and symbols for exporting function
* calls, and providing version information and compiled-in features.
*
* If you are compiling with MSVC and will link to the static library
* (libFLAC++.lib) you should define FLAC__NO_DLL in your project to
* make sure the symbols are exported properly.
*
* \{
*/
#if defined(FLAC__NO_DLL) || !defined(_MSC_VER)
#define FLACPP_API
@@ -48,8 +71,10 @@
/* These #defines will mirror the libtool-based library version number, see
* http://www.gnu.org/software/libtool/manual.html#Libtool-versioning
*/
#define FLACPP_API_VERSION_CURRENT 6
#define FLACPP_API_VERSION_REVISION 1
#define FLACPP_API_VERSION_AGE 0
#define FLACPP_API_VERSION_CURRENT 7
#define FLACPP_API_VERSION_REVISION 0
#define FLACPP_API_VERSION_AGE 1
/* \} */
#endif