Skip to content

Commit 4a6638f

Browse files
committed
fix makefile
1 parent 2d26a34 commit 4a6638f

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

fdw/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ PG_CFLAGS = -I${SERVER_LIB} -I${INTERNAL_LIB} -g
3333
include $(PGXS)
3434

3535
go: ../fdw.go
36-
go1.19rc1 build -o steampipe_postgres_fdw.a -buildmode=c-archive ../*.go
36+
go build -o steampipe_postgres_fdw.a -buildmode=c-archive ../*.go
3737

3838
inst:
3939
mkdir -p ../build-${PLATFORM}

go.mod

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
module github.com/turbot/steampipe-postgres-fdw
22

3-
go 1.19
3+
go 1.18
44

5-
replace github.com/turbot/steampipe-plugin-sdk/v4 => /Users/kai/Dev/github/turbot/steampipe-plugin-sdk
6-
7-
replace github.com/turbot/steampipe => /Users/kai/Dev/github/turbot/steampipe
5+
//replace github.com/turbot/steampipe-plugin-sdk/v4 => /Users/kai/Dev/github/turbot/steampipe-plugin-sdk
6+
//replace github.com/turbot/steampipe => /Users/kai/Dev/github/turbot/steampipe
87

98
require (
109
github.com/dgraph-io/ristretto v0.1.0 // indirect
1110
github.com/golang/protobuf v1.5.2
1211
github.com/hashicorp/go-hclog v1.2.1
1312
github.com/hashicorp/go-version v1.6.0 // indirect
1413
github.com/turbot/go-kit v0.4.0
15-
// revert_cache_stream
16-
github.com/turbot/steampipe v1.7.0-rc.0.0.20220722125407-74cf746365a4
17-
github.com/turbot/steampipe-plugin-sdk/v4 v4.0.0-alpha.2
14+
// madvdontneed
15+
github.com/turbot/steampipe v1.7.0-rc.0.0.20220727165344-3111569705db
16+
github.com/turbot/steampipe-plugin-sdk/v4 v4.0.0-rc.0
1817
go.opentelemetry.io/otel v1.7.0
1918
google.golang.org/protobuf v1.28.0
2019
)

go.sum

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -935,6 +935,10 @@ github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1
935935
github.com/tombuildsstuff/giovanni v0.15.1/go.mod h1:0TZugJPEtqzPlMpuJHYfXY6Dq2uLPrXf98D2XQSxNbA=
936936
github.com/turbot/go-kit v0.4.0 h1:EdD7Bf2EGAjvHRGQxRiWpDawzZSk3T+eghqbj74qiSc=
937937
github.com/turbot/go-kit v0.4.0/go.mod h1:SBdPRngbEfYubiR81iAVtO43oPkg1+ASr+XxvgbH7/k=
938+
github.com/turbot/steampipe v1.7.0-rc.0.0.20220727165344-3111569705db h1:L2ss5EgSoRkah1KT9dJFY9NaumuhnruWwFpyL13Y5j4=
939+
github.com/turbot/steampipe v1.7.0-rc.0.0.20220727165344-3111569705db/go.mod h1:V/V61xiP7TOy33MhYUJJxfSCWskABpI6XxcNNahp4fE=
940+
github.com/turbot/steampipe-plugin-sdk/v4 v4.0.0-rc.0 h1:H5E2pnH9mfYiDX94yzhXAntnknmj4jAkQvDv3VWXrcI=
941+
github.com/turbot/steampipe-plugin-sdk/v4 v4.0.0-rc.0/go.mod h1:+ayMgrv9C3Nc61YlkJIyqgSff9+Weqx+w6vH1+3yZtQ=
938942
github.com/ugorji/go v0.0.0-20180813092308-00b869d2f4a5/go.mod h1:hnLbHMwcvSihnDhEfx2/BzKp2xb0Y+ErdfYcrs9tkJQ=
939943
github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc=
940944
github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0=

0 commit comments

Comments
 (0)