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