Skip to content

Instantly share code, notes, and snippets.

@mattetti
Created December 26, 2012 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattetti/4383203 to your computer and use it in GitHub Desktop.
Save mattetti/4383203 to your computer and use it in GitHub Desktop.
$ brew install libxml2 $ go build
$ go build
# gokogiri/xpath
error: 'xmlXPathContextSetDeadline' undeclared (first use in this function)
error: (Each undeclared identifier is reported only once
error: 'time_t' undeclared (first use in this function)
package xpath
/*
#cgo CFLAGS: -I/usr/local/opt/libxml2/include/libxml2
#cgo LDFLAGS: -lxml2 -L/usr/local/opt/libxml2/lib
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
#include <libxml/parser.h>
xmlNode* fetchNode(xmlNodeSet *nodeset, int index) {
return nodeset->nodeTab[index];
}
*/
@moraes
Copy link

moraes commented Jan 18, 2013

Hey. How did you solve this? I'm trying to test gokogiri and getting this same error.

@moraes
Copy link

moraes commented Jan 18, 2013

Ignore me. The master branch is just completely messed. That function doesn't exist anywhere.

@jhinrichsen
Copy link

Strolling the same path...

So what revision did you use then?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment