Browse Source

* no longer linux-specific naming for library

git-svn-id: trunk@1382 -
Jonas Maebe 20 years ago
parent
commit
a2cf6c4982
1 changed files with 2 additions and 1 deletions
  1. 2 1
      tests/test/tlibrary2.pp

+ 2 - 1
tests/test/tlibrary2.pp

@@ -18,7 +18,8 @@ const
 {$ifdef win32}
   libname='tlibrary1.dll';
 {$else}
-  libname='libtlibrary1.so';
+  libname='tlibrary1';
+  {$linklib tlibrary1}
 {$endif}
 
 procedure test;external libname name 'TestName';