~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to fcl/tests/socksvr.pp

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Program server;
2
2
{
3
 
    $Id: socksvr.pp,v 1.5 2005/03/16 13:35:59 marco Exp $
4
3
    This file is part of the Free Component Library (FCL)
5
4
    Copyright (c) 1999-2000 by the Free Pascal development team
6
5
 
19
18
  'sockcli' programs in another terminal.
20
19
}
21
20
 
 
21
{$ifndef unix}
 
22
  {$fatal This test is only for Unix platforms}
 
23
{$endif}
 
24
 
22
25
{$mode objfpc}{$h+}
23
26
uses ssockets;
24
27
 
79
82
  Application.Run;
80
83
  Application.Free;
81
84
end.
82
 
 
83
 
{
84
 
  $Log: socksvr.pp,v $
85
 
  Revision 1.5  2005/03/16 13:35:59  marco
86
 
   * some fixes for objfpc mode
87
 
 
88
 
  Revision 1.4  2005/02/14 17:13:18  peter
89
 
    * truncate log
90
 
 
91
 
}