parent
74bfddc1e4
commit
4ed6f6b35f
2
Makefile
2
Makefile
|
@ -17,7 +17,7 @@ build:
|
||||||
-mkdir -p plugins/
|
-mkdir -p plugins/
|
||||||
-cp ~/go/src/go.wit.com/gui/toolkits/*.so plugins/
|
-cp ~/go/src/go.wit.com/gui/toolkits/*.so plugins/
|
||||||
# GO111MODULE="off" go get -v -x .
|
# GO111MODULE="off" go get -v -x .
|
||||||
GO111MODULE="off" go build -v -o control-panel-dns
|
GO111MODULE="off" go build -v
|
||||||
|
|
||||||
# ./control-panel-dns.v1: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by ./control-panel-dns.v1)
|
# ./control-panel-dns.v1: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by ./control-panel-dns.v1)
|
||||||
# ./control-panel-dns.v1: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by ./control-panel-dns.v1)
|
# ./control-panel-dns.v1: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by ./control-panel-dns.v1)
|
||||||
|
|
2
fix.go
2
fix.go
|
@ -4,7 +4,7 @@ package main
|
||||||
import (
|
import (
|
||||||
"go.wit.com/log"
|
"go.wit.com/log"
|
||||||
"go.wit.com/gui/cloudflare"
|
"go.wit.com/gui/cloudflare"
|
||||||
"go.wit.com/control-panels/dns/smartwindow"
|
"go.wit.com/wit/control-panel-dns/smartwindow"
|
||||||
)
|
)
|
||||||
|
|
||||||
func fix() bool {
|
func fix() bool {
|
||||||
|
|
2
gui.go
2
gui.go
|
@ -12,7 +12,7 @@ import (
|
||||||
"go.wit.com/gui/cloudflare"
|
"go.wit.com/gui/cloudflare"
|
||||||
"go.wit.com/gui/debugger"
|
"go.wit.com/gui/debugger"
|
||||||
"go.wit.com/gui/gadgets/logsettings"
|
"go.wit.com/gui/gadgets/logsettings"
|
||||||
"go.wit.com/control-panels/dns/smartwindow"
|
"go.wit.com/wit/control-panel-dns/smartwindow"
|
||||||
)
|
)
|
||||||
|
|
||||||
// This setups up the dns control panel window
|
// This setups up the dns control panel window
|
||||||
|
|
2
main.go
2
main.go
|
@ -14,7 +14,7 @@ import (
|
||||||
"go.wit.com/gui/gui"
|
"go.wit.com/gui/gui"
|
||||||
"go.wit.com/gui/debugger"
|
"go.wit.com/gui/debugger"
|
||||||
|
|
||||||
"go.wit.com/control-panels/dns/linuxstatus"
|
"go.wit.com/wit/control-panel-dns/linuxstatus"
|
||||||
|
|
||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
)
|
)
|
||||||
|
|
|
@ -7,8 +7,8 @@ import (
|
||||||
"go.wit.com/gui/gui"
|
"go.wit.com/gui/gui"
|
||||||
"go.wit.com/gui/gadgets"
|
"go.wit.com/gui/gadgets"
|
||||||
// "go.wit.com/gui/cloudflare"
|
// "go.wit.com/gui/cloudflare"
|
||||||
"go.wit.com/control-panels/dns/linuxstatus"
|
"go.wit.com/wit/control-panel-dns/linuxstatus"
|
||||||
"go.wit.com/control-panels/dns/smartwindow"
|
"go.wit.com/wit/control-panel-dns/smartwindow"
|
||||||
|
|
||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue