Hydrar's mistserver dev branch
Find a file
2014-09-10 10:44:12 +02:00
lib Fixed shared memory initialization bug. 2014-09-10 10:44:12 +02:00
test Stability fixes for MP4 lib, fixed MP4 unit test. 2012-09-29 03:12:51 +02:00
.gitignore Changed buildsystems from automake to plain make. 2014-01-05 11:57:25 +01:00
COPYING Further tweaks to autotools config. 2012-05-11 15:33:09 +02:00
createhooks.sh Changed buildsystems from automake to plain make. 2014-01-05 11:57:25 +01:00
Doxyfile Abstraction of semaphore to a class 2014-04-30 11:33:46 +02:00
Makefile Fix install permissions, errors and, or omissions 2014-06-30 14:13:19 +02:00
README Prettified error messages, first work on Util::Config server helpers. 2014-01-27 09:41:24 +01:00

 _________________________________________________
|                Mist Libraries                   |
| Copyright 2010-2014 DDVTech BV, The Netherlands |
|                                                 |
|        Licensed under the aGPLv3 license        |
|        See COPYING file for full license        |
|_________________________________________________|

NOTE: TinyThread++ is included also, but *not* copyright DDVTech BV.
License and author information for TinyThread++ can be found in the tinythread.h/cpp files.


The latest version of this code can always be found at:
  https://github.com/DDVTECH/mistlib

For full documentation/changelogs/etc visit our wiki at:
  http://wiki.mistserver.com/

Code contributions and bug reports are welcomed! Please submit at:
  https://github.com/DDVTECH/mistlib

To install using default options, simply run:
  make && sudo make install

Dependencies:
  openssl

The makefile will listen to the following variables:
  DEBUG            Sets the debug message level. 4 is the default (and recommended setting for development), 0 is quiet, 10 is insanely high.
  PACKAGE_VERSION  Overrides the library version number string. You shouldn't need to use this, normally.
  prefix           Prefix to install files to. Defaults to /usr
  exec_prefix      Prefix to install object code and binaries to. Defaults to $(prefix)
  includedir       Directory to install headers to. Defaults to $(prefix)/include
  libdir           Directory to install libraries to. Defaults to $(exec_prefix)/lib
  DESTDIR          Global prefix that will be put in front of any and all other file paths.
  CPPFLAGS         Flags for compiling object files. Defaults to -Wall -g -O2 -fPIC
  LDLIBS           Libraries to include. Defaults to -lcrypto

Use "make var1=val1 var2=val2" to set these. For example:
  make install DEBUG=0 prefix=/usr/local