Browse Source

* only enable for Linux and Win32/Win64, since those are presumably the
platforms on which this package has been tested (it definitely won't work
on darwin as is)

git-svn-id: trunk@22944 -

Jonas Maebe 12 years ago
parent
commit
3a5b5f03d5
1 changed files with 3 additions and 3 deletions
  1. 3 3
      packages/libvlc/fpmake.pp

+ 3 - 3
packages/libvlc/fpmake.pp

@@ -20,8 +20,8 @@ begin
     P.HomepageURL := 'www.freepascal.org';
     P.Email := '[email protected]';
     P.Description := 'VLC library (version 2 or higher) interface and component.';
-    T:=P.Targets.AddUnit('src/libvlc.pp');
-    T:=P.Targets.AddUnit('src/vlc.pp');
+    T:=P.Targets.AddUnit('src/libvlc.pp',[linux,win32,win64]);
+    T:=P.Targets.AddUnit('src/vlc.pp',[linux,win32,win64]);
     with T.Dependencies do
       begin
       AddUnit('libvlc');
@@ -30,4 +30,4 @@ begin
     Run;
     end;
 end.
-{$endif}
+{$endif}