xpather 0.0.9 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/xpather/extconf.rb +4 -4
- metadata +1 -1
data/ext/xpather/extconf.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'mkmf'
|
2
2
|
have_library("xml2")
|
3
|
-
find_header("libxml/tree.h", "/usr/include/libxml2")
|
4
|
-
find_header("libxml/parser.h", "/usr/include/libxml2")
|
5
|
-
find_header("libxml/xpath.h", "/usr/include/libxml2")
|
6
|
-
find_header("libxml/xpathInternals.h", "/usr/include/libxml2")
|
3
|
+
find_header("libxml/tree.h", "/usr/include/libxml2", "/usr/local/include/libxml2")
|
4
|
+
find_header("libxml/parser.h", "/usr/include/libxml2", "/usr/local/include/libxml2")
|
5
|
+
find_header("libxml/xpath.h", "/usr/include/libxml2", "/usr/local/include/libxml2")
|
6
|
+
find_header("libxml/xpathInternals.h", "/usr/include/libxml2", "/usr/local/include/libxml2")
|
7
7
|
create_makefile('xpather/xpather')
|