Seit neuem nutze ich Lazarus unter Linux und habe seitdem nur Probleme damit

Mein Quellcode sieht wie folgt aus

Unit1:
Code: Alles auswählen
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls;
type
{ TForm1 }
TForm1 = class(TForm)
Button1: TButton;
private
{ private declarations }
public
{ public declarations }
end;
var
Form1: TForm1;
implementation
initialization
{$I unit1.lrs}
end.
Wenn ich keine Ereignisse definieren kann, bringt es mir nichts.project1.lpr(17,1) Error: Error while linking
/usr/share/fpcsrc/rtl/unix/classes.pp(33,5) Error: Include-Datei nicht gefunden "classesh.inc"
Ich habe zuerst per apt-Paketsystem Free-Pascal installiert (apt-get install fpc) inkl. aller units (apt-get install fp-units*), dann die Quellen (apt-get install fpc-source), die jetzt unter dem Pfad /usr/share/fpcsrc/ gespeichert sind und zum Schluss Lazarus, wo ich diesen Pfad als FPC-Quelltextverzeichnis eingetragen habe (lief bis dahin auch problemlos). Nur sind irgendwie nirgendwo irgendwelche inc-Dateien vorhanden!?
Das Kompilieren/Ausführen geht komischerweise ohne Probleme...
Quellcode von classes:
Code: Alles auswählen
{
This file is part of the Free Component Library (FCL)
Copyright (c) 1999-2000 by Michael Van Canneyt and Florian Klaempfl
Classes unit for linux
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{$mode objfpc}
{ determine the type of the resource/form file }
{$define Win16Res}
unit Classes;
{$INLINE ON}
interface
uses
sysutils,
types,
typinfo,
rtlconsts;
{$i classesh.inc}
implementation
uses
BaseUnix,unix
;
{ OS - independent class implementations are in /inc directory. }
{$i classes.inc}
initialization
CommonInit;
finalization
CommonCleanup;
if ThreadsInited then
DoneThreads;
end.

Hat auch nichts gebracht außer dass ich es nicht mal mehr ausführen konnte

Bitte helft mir!
MfG
Jay