Hydrar's mistserver dev branch
Find a file
2014-01-15 09:30:48 +01:00
lsp LSP - bugfix - conversion page: don't try to set audio or video settings when the checkbox is not checked, dont overwrite the encoders object when refreshing conversion status, and for mp3 audio codec set a samplerate of 44100 2014-01-15 09:30:48 +01:00
src Removed compiled warnings etc from ogg optimizes. 2014-01-15 09:16:06 +01:00
.gitignore Improved Makefile. 2014-01-06 18:26:00 +01:00
.mailmap Added mailmap with all contributors. 2013-04-04 00:55:08 +02:00
COPYING Further tweaks to autotools config. 2012-05-11 15:33:09 +02:00
createhooks.sh Changed buildsystem from automake to plain make. 2014-01-04 22:28:09 +01:00
Doxyfile Prevent tinythread from showing up in doxygen documentation. 2014-01-08 00:58:51 +01:00
Makefile Removed compiled warnings etc from ogg optimizes. 2014-01-15 09:16:06 +01:00
README Changed buildsystem from automake to plain make. 2014-01-04 22:28:09 +01:00
tinythread.cpp Changed buildsystem from automake to plain make. 2014-01-04 22:28:09 +01:00
tinythread.h Changed buildsystem from automake to plain make. 2014-01-04 22:28:09 +01:00

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


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

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/mistserver

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

Dependencies:
  libmist ( https://github.com/DDVTECH/mistlib )
  libpthread

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 server version number string. You shouldn't need to use this, normally.
  RELEASE          Overrides the release name. 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)
  bindir           Directory to install binaries to. Defaults to $(exec_prefix)/bin
  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 -DDEBUG="$(DEBUG)" -DPACKAGE_VERSION="\"$(PACKAGE_VERSION)\""
  LDLIBS           Libraries to include. Defaults to -lmist, adding -lpthread for some binaries.

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