diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-09-16 11:45:30 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-09-16 11:45:30 +0000 |
commit | 849562a897431915fd760f83524de0ac8e81c548 (patch) | |
tree | 9692fb591291aa8f6396facee0d7286a134d2194 /src | |
parent | 21f8cb527572321cdc43b35c074735b93b513589 (diff) | |
download | xine-lib-849562a897431915fd760f83524de0ac8e81c548.tar.gz xine-lib-849562a897431915fd760f83524de0ac8e81c548.tar.bz2 |
Fixed libtool versionning.
CVS patchset: 640
CVS date: 2001/09/16 11:45:30
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/Makefile.am | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/xine-engine/Makefile.am b/src/xine-engine/Makefile.am index 0448aba9d..3ca8ce806 100644 --- a/src/xine-engine/Makefile.am +++ b/src/xine-engine/Makefile.am @@ -12,11 +12,13 @@ libxine_la_SOURCES = xine.c metronom.c configfile.c buffer.c monitor.c \ utils.c load_plugins.c video_decoder.c \ audio_decoder.c video_out.c audio_out.c resample.c events.c libxine_la_LIBADD = cpu_accel.lo \ - $(THREAD_LIBS) \ - $(DYNAMIC_LD_LIBS) \ + $(THREAD_LIBS) \ + $(DYNAMIC_LD_LIBS) \ -lm -libxine_la_LDFLAGS = -version-info 5:0:5 +libxine_la_LDFLAGS = \ + -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ + -release $(LT_RELEASE) include_HEADERS = buffer.h metronom.h configfile.h \ monitor.h cpu_accel.h attributes.h utils.h \ |