Skip to content

Instantly share code, notes, and snippets.

diff --git a/lib/cgo.go b/lib/cgo.go
index 8627e61..efe23cc 100644
--- a/lib/cgo.go
+++ b/lib/cgo.go
@@ -1,4 +1,4 @@
package py
-// #cgo pkg-config: python-3.3
+// #cgo pkg-config: python3
import "C"
@EdVanDance
EdVanDance / ruby-2.0.0-p451-readline-6.3.patch
Created March 24, 2014 11:52
fix rbenv install 2.0.0-p451 with readline 6.3
--- ext/readline/extconf.rb
+++ ext/readline/extconf.rb
@@ -19,6 +19,10 @@ def readline.have_func(func)
return super(func, headers)
end
+def readline.have_type(type)
+ return super(type, headers)
+end
+