~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to libsrc/agl/aglsys.c

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* @(#)aglsys.c 19.1 (ES0-DMD) 02/25/03 13:53:05 */
 
2
/*===========================================================================
 
3
  Copyright (C) 1995 European Southern Observatory (ESO)
 
4
 
 
5
  This program is free software; you can redistribute it and/or 
 
6
  modify it under the terms of the GNU General Public License as 
 
7
  published by the Free Software Foundation; either version 2 of 
 
8
  the License, or (at your option) any later version.
 
9
 
 
10
  This program is distributed in the hope that it will be useful,
 
11
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
  GNU General Public License for more details.
 
14
 
 
15
  You should have received a copy of the GNU General Public 
 
16
  License along with this program; if not, write to the Free 
 
17
  Software Foundation, Inc., 675 Massachusetss Ave, Cambridge, 
 
18
  MA 02139, USA.
 
19
 
 
20
  Corresponding concerning ESO-MIDAS should be addressed as follows:
 
21
        Internet e-mail: midas@eso.org
 
22
        Postal address: European Southern Observatory
 
23
                        Data Management Division 
 
24
                        Karl-Schwarzschild-Strasse 2
 
25
                        D 85748 Garching bei Muenchen 
 
26
                        GERMANY
 
27
===========================================================================*/
 
28
 
 
29
/* @(#)aglsys.c 19.1  (OAA-ASTRONET) 02/25/03 13:53:05   */
 
30
/*
 
31
 * HEADER : aglsys.c       - Vers 3.6.001  - May 1993 -  L. Fini, OAA
 
32
 *                         - Vers 3.6.000  - Oct 1991 -  L. Fini, OAA
 
33
 *
 
34
 * Includes system dependent code according to the currently defined 
 
35
 * system symbol. The symbol itself is defined into the file aglos.h
 
36
 * (osdefos.h, for Midas installation)
 
37
 */
 
38
 
 
39
#ifndef SYSDEPC_DEF
 
40
#define SYSDEPC_DEF
 
41
 
 
42
 
 
43
#ifdef MIDAS
 
44
#include <osdefos.h>
 
45
#else
 
46
#include <aglos.h>
 
47
#endif
 
48
 
 
49
#include <aglsys.h>
 
50
 
 
51
#if MID_OS_MSDOS
 
52
#include "agldos.c"
 
53
#endif
 
54
 
 
55
#if MID_OS_VMS
 
56
#include "aglvms.c"
 
57
#endif
 
58
 
 
59
/*
 
60
 * Now include some common system dependencies
 
61
 */
 
62
 
 
63
#ifdef UNIX
 
64
#include "aglunix.c"
 
65
#endif
 
66
 
 
67
#if MID_OS_BSD
 
68
#include "aglbsd.c"
 
69
#endif
 
70
 
 
71
#if MID_OS_SYSV
 
72
#include "aglsysv.c"
 
73
#endif
 
74
 
 
75
#if MID_OS_SYSV_V2
 
76
#include "aglsysv.c"
 
77
#endif
 
78
 
 
79
#if MID_OS_ULTRIX
 
80
#include "aglsysv.c"
 
81
#endif
 
82
 
 
83
#if MID_OS_POSIX
 
84
#include "aglposix.c"
 
85
#endif
 
86
 
 
87
#endif