[patch_done] Not compile zeos rev 1364 Linux

The alpha/beta tester's forum for ZeosLib 7.0.x series

Report problems concerning our Delphi 2009+ version and new Zeoslib 7.0 features here.

This is a forum that will be removed once the 7.X version goes into stable!!

Moderators: gto, EgonHugeist, olehs

Locked
ism
Zeos Test Team
Zeos Test Team
Posts: 202
Joined: 02.10.2010, 20:48

[patch_done] Not compile zeos rev 1364 Linux

Post by ism »

Module names in Linux is case-sensitive

Code: Select all

Index: src/component/ZAbstractConnection.pas
===================================================================
--- src/component/ZAbstractConnection.pas	(revision 1364)
+++ src/component/ZAbstractConnection.pas	(working copy)
@@ -86,7 +86,7 @@
   ZDbcASA,
 {$ENDIF}
 {$IFDEF ENABLE_POOLED}
-  ZDBCPooled,
+  ZDbcPooled,
 {$ENDIF}
Lazarus 1.0.8 fpc 2.6.0
User avatar
EgonHugeist
Zeos Project Manager
Zeos Project Manager
Posts: 1936
Joined: 31.03.2011, 22:38

Post by EgonHugeist »

ism,

thank you for that hint. Patch done rev. 1369

Michael
Best regards, Michael

You want to help? http://zeoslib.sourceforge.net/viewtopic.php?f=4&t=3671
You found a (possible) bug? Use the new bugtracker dude! http://sourceforge.net/p/zeoslib/tickets/

Image
marcov
Senior Boarder
Senior Boarder
Posts: 95
Joined: 24.06.2010, 09:17

Post by marcov »

Note that on case sensitive platforms Free Pascal always tries "all lowercase". So if you keep the filenames lowercase, you can use any casing for the units.
Locked