]> gitweb.factorcode.org Git - factor.git/commitdiff
ogg: use unversioned dylib
authorJohn Benediktsson <mrjbq7@gmail.com>
Tue, 22 Aug 2023 22:35:04 +0000 (15:35 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 22 Aug 2023 22:35:04 +0000 (15:35 -0700)
extra/ogg/ogg.factor
extra/ogg/theora/theora.factor
extra/ogg/vorbis/vorbis.factor

index 3994d1b9839cfa17e46ec683fb77f5c27e758a0d..64f768c40be0dfce500d18b1303328480f6c7734 100644 (file)
@@ -16,7 +16,7 @@ IN: ogg
 <<
 "ogg" {
     { [ os windows? ]  [ "ogg.dll" ] }
-    { [ os macosx? ] [ "libogg.0.dylib" ] }
+    { [ os macosx? ] [ "libogg.dylib" ] }
     { [ os unix? ]   [ "libogg.so" ] }
 } cond cdecl add-library
 
index afcd35aebfb7db05c96b8d0e2e4d08369ef7bcd5..561125832f980a056ece41cbc40baffc4f250a9e 100644 (file)
@@ -16,13 +16,13 @@ IN: ogg.theora
 <<
 "theoradec" {
     { [ os windows? ]  [ "theoradec.dll" ] }
-    { [ os macosx? ] [ "libtheoradec.0.dylib" ] }
+    { [ os macosx? ] [ "libtheoradec.dylib" ] }
     { [ os unix? ]   [ "libtheoradec.so" ] }
 } cond cdecl add-library
 
 "theoraenc" {
     { [ os windows? ]  [ "theoraenc.dll" ] }
-    { [ os macosx? ] [ "libtheoraenc.0.dylib" ] }
+    { [ os macosx? ] [ "libtheoraenc.dylib" ] }
     { [ os unix? ]   [ "libtheoraenc.so" ] }
 } cond cdecl add-library
 >>
index 9e9fdf01e9f68972bcec58835f404a32abc39270..1dcf67fabc4423b4203824ea3cd17ddf240fcbd2 100644 (file)
@@ -17,7 +17,7 @@ IN: ogg.vorbis
 <<
 "vorbis" {
     { [ os windows? ]  [ "vorbis.dll" ] }
-    { [ os macosx? ] [ "libvorbis.0.dylib" ] }
+    { [ os macosx? ] [ "libvorbis.dylib" ] }
     { [ os unix? ]   [ "libvorbis.so" ] }
 } cond cdecl add-library