Skip to content

Commit 690ed3e

Browse files
committed
CentOS build issues.
1 parent c94628f commit 690ed3e

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,16 @@ On Debian / Ubuntu / Raspbian:
125125

126126
Or on Red Hat / Fedora / Centos:
127127

128-
sudo yum install cmake
128+
CentOS 6 & 7 currently have cmake 2.8 but we need 3.1 or later.
129+
First you need to enable the EPEL repository. Add a symlink if you want to type cmake rather than cmake3.
130+
131+
sudo yum install epel-release
132+
sudo rpm -e cmake
133+
sudo yum install cmake3
134+
sudo ln -s /usr/bin/cmake3 /usr/bin/cmake
135+
136+
Continue with the other required packages:
137+
129138
sudo yum install alsa-lib-devel
130139
sudo yum install libudev-devel
131140

src/ptt.c

+16-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
*---------------------------------------------------------------*/
6363

6464
/*
65-
A growing number of people have been asking about support for the DMK URI
66-
or the similar RB-USB RIM.
65+
A growing number of people have been asking about support for the DMK URI,
66+
RB-USB RIM, etc.
6767
6868
These use a C-Media CM108/CM119 with an interesting addition, a GPIO
6969
pin is used to drive PTT. Here is some related information.
@@ -78,6 +78,15 @@
7878
http://www.repeater-builder.com/products/usb-rim-lite.html
7979
http://www.repeater-builder.com/voip/pdf/cm119-datasheet.pdf
8080
81+
RA-35:
82+
83+
http://www.masterscommunications.com/products/radio-adapter/ra35.html
84+
85+
DINAH:
86+
87+
https://hamprojects.info/dinah/
88+
89+
8190
Homebrew versions of the same idea:
8291
8392
http://images.ohnosec.org/usbfob.pdf
@@ -147,6 +156,11 @@
147156
#include <unistd.h>
148157
#include <errno.h>
149158
#include <grp.h>
159+
160+
#ifndef __USE_BSD
161+
#define __USE_BSD // Needed for gcc 4.8.5 to find definitions for scandir
162+
// and alphasort. Newer compilers don't have this issue.
163+
#endif
150164
#include <dirent.h>
151165

152166
#ifdef USE_HAMLIB

0 commit comments

Comments
 (0)