mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-29 00:25:28 +03:00
Compare commits
8 Commits
6145eeab73
...
b82bc776b3
Author | SHA1 | Date | |
---|---|---|---|
|
b82bc776b3 | ||
|
057be6ce64 | ||
|
3a4a69f50d | ||
|
ba3f0cacb5 | ||
|
d28e8f76ae | ||
|
b20b4f6fae | ||
|
8b78300e99 | ||
|
9262863cae |
25
.github/workflows/freebsd.yml
vendored
Normal file
25
.github/workflows/freebsd.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
name: freebsd
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: macos-12
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: make
|
||||
uses: vmactions/freebsd-vm@v0
|
||||
with:
|
||||
prepare: |
|
||||
pkg install -y \
|
||||
devel/check \
|
||||
devel/git \
|
||||
devel/pkgconf
|
||||
run: |
|
||||
make
|
||||
make test
|
25
.github/workflows/openbsd.yml
vendored
Normal file
25
.github/workflows/openbsd.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
name: openbsd
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: macos-12
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: make
|
||||
uses: vmactions/openbsd-vm@v0
|
||||
with:
|
||||
prepare: |
|
||||
pkg_add \
|
||||
check \
|
||||
git \
|
||||
pkgconf
|
||||
run: |
|
||||
make
|
||||
make test
|
@ -1,10 +1,14 @@
|
||||
|
||||
iodine - https://code.kryo.se/iodine
|
||||
|
||||
***********************************
|
||||
************************************
|
||||
|
||||
CHANGES:
|
||||
|
||||
master:
|
||||
- Changed deprecated tzsetwall() to tzset() (only used by FreeBSD),
|
||||
patch by Pouria Mousavizadeh Tehrani.
|
||||
|
||||
2023-04-17: 0.8.0 "Burning Snowman"
|
||||
- Mac OS X: Support native utun VPN devices. Patch by
|
||||
Peter Sagerson, ported from OpenVPN by Catalin Patulea.
|
||||
|
@ -2754,7 +2754,7 @@ main(int argc, char **argv)
|
||||
do_pidfile(pidfile);
|
||||
|
||||
#ifdef FREEBSD
|
||||
tzsetwall();
|
||||
tzset();
|
||||
#endif
|
||||
#ifndef WINDOWS32
|
||||
openlog(__progname, LOG_NDELAY, LOG_DAEMON);
|
||||
|
Loading…
Reference in New Issue
Block a user