CVS log for linuxsampler/Makefile.am

(logo)

Help

(back) Up to [ls] / linuxsampler

Request diff between arbitrary revisions


Default branch: MAIN
Bookmark a link to: HEAD / (download)

Revision 1.16 / (view) - annotate - [select for diffs] , Sat Jul 4 13:58:34 2009 UTC (12 months, 3 weeks ago) by persson
Branch: MAIN
CVS Tags: release1_0_0, HEAD
Changes since 1.15: +2 -0 lines
Diff to previous 1.15
* when cross-compiling, don't try to create instruments.db
* fix for new mingw-w64 version, which has usleep

Revision 1.15 / (view) - annotate - [select for diffs] , Thu Aug 30 10:40:14 2007 UTC (2 years, 10 months ago) by schoenebeck
Branch: MAIN
CVS Tags: release0_5_1, release0_5_0
Changes since 1.14: +4 -0 lines
Diff to previous 1.14
just added info notice for "make install" about automatic
creation of instruments DB file

Revision 1.14 / (view) - annotate - [select for diffs] , Tue May 29 22:01:46 2007 UTC (3 years, 2 months ago) by schoenebeck
Branch: MAIN
Changes since 1.13: +3 -3 lines
Diff to previous 1.13
- honor $(DESTDIR) on install rule when creating the instruments DB

Revision 1.13 / (view) - annotate - [select for diffs] , Wed May 16 13:22:25 2007 UTC (3 years, 2 months ago) by iliev
Branch: MAIN
Changes since 1.12: +3 -3 lines
Diff to previous 1.12
* updated instruments db support
* added transactions for improving the db performance
* added commands for copying and finding instruments and directories

Revision 1.12 / (view) - annotate - [select for diffs] , Mon Apr 16 14:51:16 2007 UTC (3 years, 3 months ago) by iliev
Branch: MAIN
Changes since 1.11: +13 -0 lines
Diff to previous 1.11
* Implemented instruments database

Revision 1.11 / (view) - annotate - [select for diffs] , Wed Jun 28 18:30:15 2006 UTC (4 years, 1 month ago) by schoenebeck
Branch: MAIN
CVS Tags: release0_4_0
Changes since 1.10: +4 -1 lines
Diff to previous 1.10
include benchmark source files in release tarball

Revision 1.10 / (view) - annotate - [select for diffs] , Tue Jul 19 15:03:12 2005 UTC (5 years ago) by schoenebeck
Branch: MAIN
Changes since 1.9: +3 -1 lines
Diff to previous 1.9
make renamed file 'Doxygen.in' and new file 'linuxsampler.pc.in' part
of the release tarball as well

Revision 1.9 / (view) - annotate - [select for diffs] , Tue Jul 19 14:43:40 2005 UTC (5 years ago) by schoenebeck
Branch: MAIN
Changes since 1.8: +7 -0 lines
Diff to previous 1.8
* install necessary development header files for allowing 3rd party
  applications to link against liblinuxsampler
* liblinuxsampler's API documentation can be generated with 'make docs'
  (Doxygen required)

Revision 1.8 / (view) - annotate - [select for diffs] , Wed Jun 15 19:48:18 2005 UTC (5 years, 1 month ago) by schoenebeck
Branch: MAIN
CVS Tags: release0_3_3, release0_3_2
Changes since 1.7: +2 -3 lines
Diff to previous 1.7
made it a "GNU" package by adding an empty NEWS file

Revision 1.7 / (view) - annotate - [select for diffs] , Wed Jun 15 19:25:25 2005 UTC (5 years, 1 month ago) by schoenebeck
Branch: MAIN
Changes since 1.6: +5 -3 lines
Diff to previous 1.6
* fixed 'make dist' build rule to include all necessary files

Revision 1.6 / (view) - annotate - [select for diffs] , Sun Jun 12 22:49:00 2005 UTC (5 years, 1 month ago) by capela
Branch: MAIN
Changes since 1.5: +1 -1 lines
Diff to previous 1.5
* RPM .spec script added to repository.

Revision 1.5 / (view) - annotate - [select for diffs] , Tue May 24 18:20:20 2005 UTC (5 years, 2 months ago) by schoenebeck
Branch: MAIN
CVS Tags: release0_3_1
Changes since 1.4: +2 -2 lines
Diff to previous 1.4
* src/network/lscpserver.cpp: fixed segfault
  (patch by Grigor Iliev, fixes #17)
* added man page
* final preparations for the first official release (which will be 0.3.1)

Revision 1.4 / (view) - annotate - [select for diffs] , Sun Jul 25 22:27:41 2004 UTC (6 years ago) by schoenebeck
Branch: MAIN
CVS Tags: v0_2_0
Changes since 1.3: +2 -0 lines
Diff to previous 1.3
* src/linuxsampler.cpp: tidied up a bit, "initialization completed"
  message shown only after the server is actually running
* src/testcases/: print the name of each test suite before running the
  tests of the suite, added first tests against the LSCP server using a
  socket connection to the LSCP server (tests for the following LSCP
  commands: "ADD CHANNEL", "GET CHANNELS", "REMOVE CHANNEL")

Revision 1.3 / (view) - annotate - [select for diffs] , Sun May 2 16:45:43 2004 UTC (6 years, 2 months ago) by schoenebeck
Branch: MAIN
Changes since 1.2: +5 -1 lines
Diff to previous 1.2
* src/common/Thread.cpp: method StartThread() now blocks until thread
  actually runs, mlockall() will only be applied for realtime threads
* libtoolized liblinuxsampler
* initiated automatic unit tests against the LinuxSampler codebase
  (see src/testcases): already added a couple of tests for the Thread and
  Mutex classes, you have to explicitly compile the unit tests by running
  'make testcases' (you need to have cppunit installed though) and then you
  can run the console version of the test runner by calling
  'src/testcases/linuxsamplertest'
* src/Sampler.h: added API documentation

Revision 1.2 / (view) - annotate - [select for diffs] , Fri Mar 5 13:46:15 2004 UTC (6 years, 4 months ago) by schoenebeck
Branch: MAIN
CVS Tags: v0_1_0, singlechannel
Changes since 1.1: +6 -0 lines
Diff to previous 1.1
* implemented parser for the LinuxSampler control protocol (LSCP) by using
  flex / bison (where src/network/lscp.l is the input file for lex / flex
  and src/network/lscp.y is the input file for yacc / bison), parser and
  scanner can be regenerated by 'make parser'
* implemented LSCP network server (only single threaded so far), LSCP
  server will be launched if LinuxSampler was started with "--server" flag,
  implemented the following LSCP commands so far: "LOAD INSTRUMENT", "GET
  CHANNEL VOICE_COUNT", "GET CHANNEL STREAM_COUNT", "GET CHANNEL
  BUFFER_FILL", "SET CHANNEL VOLUME" and "RESET CHANNEL"
* disk thread now started within the engine

Revision 1.1 / (view) - annotate - [select for diffs] , Wed Nov 5 14:47:10 2003 UTC (6 years, 8 months ago) by schoenebeck
Branch: MAIN
* transition from plain Makefile to autotools, source files moved to src/
* configure.in: added test for x86 architecture
* src/voice.h: x86 specific asm optimization for double to int casts only
  if compiling for x86 architecture

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Diffs between and
Type of Diff should be a

View only Branch:
Sort log by:

LinuxSampler Developers
Powered by
ViewCVS