]> gitweb.factorcode.org Git - factor.git/commitdiff
tokyo.alien: Add full paths to libraries on osx
authorBruno Deferrari <utizoc@gmail.com>
Sat, 13 Jun 2009 23:41:41 +0000 (20:41 -0300)
committerBruno Deferrari <utizoc@gmail.com>
Sat, 13 Jun 2009 23:41:41 +0000 (20:41 -0300)
extra/tokyo/alien/tcrdb/tcrdb.factor
extra/tokyo/alien/tcutil/tcutil.factor

index c64b12a4a198fad6c4e5ba4fe849bd0ffe4ab680..5b7be3846147c1c1c774eb17364cb6d50de7d0ea 100644 (file)
@@ -6,8 +6,8 @@ tokyo.alien.tctdb ;
 IN: tokyo.alien.tcrdb
 
 << "tokyotyrant" {
-    { [ os macosx? ] [ "libtokyotyrant.3.dylib" ] }
-    { [ os unix? ] [ "libtokyotyrant.3.so" ] }
+    { [ os macosx? ] [ "/opt/local/lib/libtokyotyrant.dylib" ] }
+    { [ os unix? ] [ "libtokyotyrant.so" ] }
     { [ os windows? ] [ "tokyotyrant.dll" ] }
 } cond "cdecl" add-library >>
 
index ae6f6ed9639d443f99f3f6c6bb5761702e27026e..910f14e67d4aa971918323a38842e4246146660d 100644 (file)
@@ -5,7 +5,7 @@ combinators kernel system ;
 IN: tokyo.alien.tcutil
 
 << "tokyocabinet" {
-    { [ os macosx? ] [ "libtokyocabinet.dylib" ] }
+    { [ os macosx? ] [ "/opt/local/lib/libtokyocabinet.dylib" ] }
     { [ os unix? ] [ "libtokyocabinet.so" ] }
     { [ os windows? ] [ "tokyocabinet.dll" ] }
 } cond "cdecl" add-library >>