summaryrefslogtreecommitdiff
path: root/ext/win32ole/extconf.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-03-17 15:59:40 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-03-17 15:59:40 +0000
commit508d65a542a2fcdd7b591b5f12a89bd3d48249a6 (patch)
treec3ade5d2545202acaebecfeb7622a1f5b0b16bb1 /ext/win32ole/extconf.rb
parent3ae0dbccd2b56c0c0d0938a150344423265d4fa2 (diff)
* ext/win32ole/extconf.rb (create_docfile): removed. should not
modify source directory unnecessarily, platform dependent documentation should be dealt with by rdoc. [ruby-core:35495] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31121 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/win32ole/extconf.rb')
-rw-r--r--ext/win32ole/extconf.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/ext/win32ole/extconf.rb b/ext/win32ole/extconf.rb
index 95f229b041..c3717316d4 100644
--- a/ext/win32ole/extconf.rb
+++ b/ext/win32ole/extconf.rb
@@ -12,16 +12,6 @@ end
dir_config("win32", inc, lib)
-SRCFILES=<<SRC
-win32ole.c
-SRC
-
-def create_docfile(src)
- open(File.expand_path($srcdir) + "/.document", "w") {|ofs|
- ofs.print src
- }
-end
-
def create_win32ole_makefile
if have_library("ole32") and
have_library("oleaut32") and
@@ -34,9 +24,6 @@ def create_win32ole_makefile
have_type("IMultiLanguage", "mlang.h")
end
create_makefile("win32ole")
- create_docfile(SRCFILES)
- else
- create_docfile("")
end
end