You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
803 B
24 lines
803 B
Index: configure |
|
--- configure.orig 2006-08-25 10:34:16 +0200 |
|
+++ configure 2006-08-25 21:35:39 +0200 |
|
@@ -18137,7 +18137,7 @@ |
|
rb_cv_dlopen=yes ;; |
|
esix*|uxpds*) : ${LDSHARED="ld -G"} |
|
rb_cv_dlopen=yes ;; |
|
- osf*) : ${LDSHARED="ld -shared -expect_unresolved \"*\""} |
|
+ osf*) : ${LDSHARED="ld -shared -expect_unresolved \"*\" -oldstyle_liblookup"} |
|
rb_cv_dlopen=yes ;; |
|
bsdi3*) case "$CC" in |
|
*shlicc*) : ${LDSHARED="$CC -r"} |
|
Index: ext/dbm/extconf.rb |
|
--- ext/dbm/extconf.rb.orig 2006-05-26 01:44:05 +0200 |
|
+++ ext/dbm/extconf.rb 2006-08-25 21:35:39 +0200 |
|
@@ -48,7 +48,7 @@ |
|
if dblib |
|
db_check(dblib) |
|
else |
|
- for dblib in %w(db db2 db1 dbm gdbm gdbm_compat qdbm) |
|
+ for dblib in %w(dbm db2 db1 db gdbm gdbm_compat qdbm) |
|
db_check(dblib) and break |
|
end |
|
end
|
|
|