فهرست منبع

objcbase: as discussed on the mailing list - still allow a dummy version to be built. this allows darwin to be built without objectivec feature

git-svn-id: trunk@37875 -
Károly Balogh 7 سال پیش
والد
کامیت
8dd14b92a2
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      rtl/inc/objcbase.pp

+ 3 - 3
rtl/inc/objcbase.pp

@@ -17,9 +17,7 @@ unit objcbase;
 
 interface
 
-{$ifndef FPC_HAS_FEATURE_OBJECTIVEC1}
-{$error ObjectiveC1 feature is not supported or not enabled.}
-{$endif}
+{$ifdef FPC_HAS_FEATURE_OBJECTIVEC1}
 
 {$modeswitch objectivec1}
 {$packrecords c}
@@ -255,6 +253,8 @@ type
     function isContentDiscarded: Boolean; message 'isContentDiscarded';
   end;
 
+{$endif FPC_HAS_FEATURE_OBJECTIVEC1}
+
 implementation
 
 end.