summaryrefslogtreecommitdiff
path: root/databases/ruby-mysql/files
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2003-08-09 22:10:21 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2003-08-09 22:10:21 +0000
commitedadc4b688ba78c0f32cdc11e0c6f8d89910e1d8 (patch)
tree30754ce9b51ecfc61a46fded1b6be72487cf9497 /databases/ruby-mysql/files
parentUpdate to 0.7.2. (diff)
Update to 2.4.5. Depend on MySQL 4.0 by default.
Notes
Notes: svn path=/head/; revision=86685
Diffstat (limited to 'databases/ruby-mysql/files')
-rw-r--r--databases/ruby-mysql/files/patch-extconf.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/databases/ruby-mysql/files/patch-extconf.rb b/databases/ruby-mysql/files/patch-extconf.rb
deleted file mode 100644
index 529f22b65b2a..000000000000
--- a/databases/ruby-mysql/files/patch-extconf.rb
+++ /dev/null
@@ -1,22 +0,0 @@
---- extconf.rb.orig Wed Jan 29 08:59:59 2003
-+++ extconf.rb Wed Jan 29 19:02:41 2003
-@@ -24,13 +24,18 @@
- else
- exit 1
- end
-+$objs = ["mysql.o"]
- create_makefile("mysql")
-
- # make mysql constant
- File::open("conftest.c", "w") do |f|
- f.puts src
- end
--cpp = Config::expand sprintf(CPP, $CPPFLAGS, $CFLAGS, '')
-+if defined? cpp_command
-+ cpp = Config.expand(cpp_command(CONFIG['CPPOUTFILE']))
-+else
-+ cpp = Config::expand sprintf(CPP, $CPPFLAGS, $CFLAGS, '')
-+end
- unless system "#{cpp} > confout" then
- exit 1
- end