summaryrefslogtreecommitdiff
path: root/ext/-test-/file/extconf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/-test-/file/extconf.rb')
-rw-r--r--ext/-test-/file/extconf.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/-test-/file/extconf.rb b/ext/-test-/file/extconf.rb
new file mode 100644
index 0000000000..9027ed1c3e
--- /dev/null
+++ b/ext/-test-/file/extconf.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: false
+require_relative "../auto_ext.rb"
+
+headers = %w[sys/param.h sys/mount.h sys/vfs.h].select {|h| have_header(h)}
+if have_type("struct statfs", headers)
+ have_struct_member("struct statfs", "f_fstypename", headers)
+ have_struct_member("struct statfs", "f_type", headers)
+ have_struct_member("struct statfs", "f_flags", headers)
+end
+
+headers = %w[sys/statvfs.h].select {|h| have_header(h)}
+if have_type("struct statvfs", headers)
+ have_struct_member("struct statvfs", "f_fstypename", headers)
+ have_struct_member("struct statvfs", "f_basetype", headers)
+ have_struct_member("struct statvfs", "f_type", headers)
+end
+
+auto_ext(inc: true)