Browse Source

* glibc 2.1.2 support

peter 26 years ago
parent
commit
d119287aa6
1 changed files with 7 additions and 3 deletions
  1. 7 3
      compiler/link.pas

+ 7 - 3
compiler/link.pas

@@ -115,9 +115,10 @@ begin
   if FileExists(DynamicLinker) then
   if FileExists(DynamicLinker) then
    begin
    begin
      Glibc2:=true;
      Glibc2:=true;
-     { also glibc 2.1 / 2.1.1 ? }
+     { also glibc 2.1 / 2.1.1 / 2.1.2 ? }
      if FileExists('/lib/ld-2.1.so') or
      if FileExists('/lib/ld-2.1.so') or
-        FileExists('/lib/ld-2.1.1.so') then
+        FileExists('/lib/ld-2.1.1.so') or
+        FileExists('/lib/ld-2.1.2.so') then
       Glibc21:=true;
       Glibc21:=true;
    end
    end
   else
   else
@@ -716,7 +717,10 @@ end;
 end.
 end.
 {
 {
   $Log$
   $Log$
-  Revision 1.61  1999-07-18 10:19:53  florian
+  Revision 1.62  1999-07-27 11:05:51  peter
+    * glibc 2.1.2 support
+
+  Revision 1.61  1999/07/18 10:19:53  florian
     * made it compilable with Dlephi 4 again
     * made it compilable with Dlephi 4 again
     + fixed problem with large stack allocations on win32
     + fixed problem with large stack allocations on win32