Follow the steps below to setup a local development environment:
Recommended to download latest XQuartz
#!/bin/bash | |
wget http://downloads.sourceforge.net/tmux/tmux-1.8.tar.gz | |
wget https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz | |
tar zxvf tmux-1.8.tar.gz | |
tar zxvf libevent-2.0.21-stable.tar.gz | |
yum install gcc kernel-devel make ncurses-devel -y | |
Follow the steps below to setup a local development environment:
Recommended to download latest XQuartz
//To compile: | |
//cc vlcsms.c -o vlcsms -lvlc | |
//This source is by Tim Sheerman-Chase and it is released as public domain. | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <inttypes.h> | |
#include <vlc/vlc.h> |