Merge pull request #1 from n-connect/FreeBSD

FreeBSD updates
This commit is contained in:
n-connect 2020-05-14 01:14:20 +02:00 committed by GitHub
commit 29cd5b8c59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 3 deletions

View file

@ -16,6 +16,10 @@ dependencies are fetched automatically while building.
$ make build $ make build
or on FreeBSD
$ gmake build
Afterwards the binary is created as `bin/signaling`. Afterwards the binary is created as `bin/signaling`.

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -e set -e
ROOT="$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)" ROOT="$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"

View file

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3.7
# #
# Standalone signaling server for the Nextcloud Spreed app. # Standalone signaling server for the Nextcloud Spreed app.
# Copyright (C) 2019 struktur AG # Copyright (C) 2019 struktur AG
@ -51,7 +51,7 @@ else:
def generate_map(filename): def generate_map(filename):
data = subprocess.check_output([ data = subprocess.check_output([
'/usr/bin/curl', 'curl',
'-L', '-L',
URL, URL,
]) ])