Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V5: Remove v2ctl #488

Merged
merged 6 commits into from
Dec 4, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix build
qjebbs committed Dec 4, 2020
commit c4d66574ad8b5edfddbf7869e880a7780eca7b9b
3 changes: 0 additions & 3 deletions release/user-package.sh
Original file line number Diff line number Diff line change
@@ -37,9 +37,6 @@ build_v2() {

echo ">>> Compile v2ray ..."
env CGO_ENABLED=0 go build -o "$TMP"/v2ray"${EXESUFFIX}" -ldflags "$LDFLAGS" ./main
if [[ $GOOS == "windows" ]]; then
env CGO_ENABLED=0 go build -o "$TMP"/wv2ray"${EXESUFFIX}" -ldflags "-H windowsgui $LDFLAGS" ./main
fi
}

build_dat() {
1 change: 1 addition & 0 deletions transport/internet/tcp/sockopt_freebsd.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// +build freebsd

package tcp

import (
1 change: 1 addition & 0 deletions transport/internet/tcp/sockopt_linux.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// +build linux

package tcp

import (
1 change: 1 addition & 0 deletions transport/internet/tcp/sockopt_other.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// +build !linux,!freebsd

package tcp

import (
1 change: 1 addition & 0 deletions transport/internet/tls/config_other.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// +build !windows

package tls

import (
1 change: 1 addition & 0 deletions transport/internet/tls/config_windows.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// +build windows

package tls

import "crypto/x509"