Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
flac
Commits
c90a5cad
Commit
c90a5cad
authored
Jul 10, 2007
by
Josh Coalson
Browse files
bump libtool number in prep for release
parent
224177c3
Changes
4
Hide whitespace changes
Inline
Side-by-side
include/FLAC++/export.h
View file @
c90a5cad
...
...
@@ -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
include/FLAC/export.h
View file @
c90a5cad
...
...
@@ -48,6 +48,10 @@
* 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.
*
* \{
*/
...
...
@@ -67,9 +71,9 @@
/** These #defines will mirror the libtool-based library version number, see
* http://www.gnu.org/software/libtool/manual.html#Libtool-versioning
*/
#define FLAC_API_VERSION_CURRENT
8
#define FLAC_API_VERSION_REVISION
1
/**< see above */
#define FLAC_API_VERSION_AGE
0
/**< see above */
#define FLAC_API_VERSION_CURRENT
9
#define FLAC_API_VERSION_REVISION
0
/**< see above */
#define FLAC_API_VERSION_AGE
1
/**< see above */
#ifdef __cplusplus
extern
"C"
{
...
...
src/libFLAC++/Makefile.am
View file @
c90a5cad
...
...
@@ -44,7 +44,7 @@ EXTRA_DIST = \
libFLAC++.m4
# see 'http://www.gnu.org/software/libtool/manual.html#Libtool-versioning' for numbering convention
libFLAC___la_LDFLAGS
=
-version-info
6:1:0
libFLAC___la_LDFLAGS
=
-version-info
7:0:1
libFLAC___la_LIBADD
=
../libFLAC/libFLAC.la
libFLAC___la_SOURCES
=
\
...
...
src/libFLAC/Makefile.am
View file @
c90a5cad
...
...
@@ -94,7 +94,7 @@ extra_ogg_sources = \
ogg_mapping.c
endif
# see 'http://www.gnu.org/software/libtool/manual.html#Libtool-versioning' for numbering convention
libFLAC_la_LDFLAGS
=
-version-info
8:1:0
-lm
$(LOCAL_EXTRA_LDFLAGS)
libFLAC_la_LDFLAGS
=
-version-info
9:0:1
-lm
$(LOCAL_EXTRA_LDFLAGS)
libFLAC_la_SOURCES
=
\
bitmath.c
\
bitreader.c
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment