fix for Ubuntu compilation
This commit is contained in:
parent
2f153b6a8e
commit
ac5066066c
1 changed files with 15 additions and 4 deletions
19
src/global.h
19
src/global.h
|
@ -1,10 +1,18 @@
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* Copyright (c) 2004-2011
|
* \copyright (c) 2004-2013
|
||||||
*
|
* \author Volker Fischer
|
||||||
* Author(s):
|
|
||||||
* Volker Fischer
|
|
||||||
*
|
*
|
||||||
|
|
||||||
|
\mainpage Llcon source code documentation
|
||||||
|
|
||||||
|
\section intro_sec Introduction
|
||||||
|
|
||||||
|
The llcon software enables musicians to perform real-time jam sessions over the
|
||||||
|
internet. There is one server running the llcon server software which collects
|
||||||
|
the audio data from each llcon client, mixes the audio data and sends the mix
|
||||||
|
back to each client.
|
||||||
|
|
||||||
|
|
||||||
Prefix definitions for the GUI:
|
Prefix definitions for the GUI:
|
||||||
|
|
||||||
label: lbl
|
label: lbl
|
||||||
|
@ -48,6 +56,9 @@ LED bar: lbr
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#ifndef _WIN32
|
||||||
|
# include <unistd.h> // solves a compile problem on recent Ubuntu
|
||||||
|
#endif
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue