~ubuntu-branches/ubuntu/trusty/ocamlnet/trusty

« back to all changes in this revision

Viewing changes to src/netsys/config_posix.h

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu
  • Date: 2011-09-02 14:12:33 UTC
  • mfrom: (18.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110902141233-zbj0ygxb92u6gy4z
Tags: 3.4-1
* New upstream release
  - add a new NetcgiRequire directive to ease dependency management
    (Closes: #637147)
  - remove patches that were applied upstream:
    + Added-missing-shebang-lines-in-example-shell-scripts
    + Try-also-ocamlc-for-POSIX-threads

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
#define HAVE__EXIT
4
4
#define HAVE_SYSCONF
5
 
#define HAVE_GETPGID
6
 
#define HAVE_SETPGID
7
 
#define HAVE_TCGETPGRP
8
 
#define HAVE_TCSETPGRP
9
 
#define HAVE_CTERMID
10
 
#define HAVE_TTYNAME
11
 
#define HAVE_GETSID
12
 
#define HAVE_SETREUID
13
 
#define HAVE_SETREGID
 
5
#define HAVE_POSIX_SIGNALS
 
6
  /* sigaction, sigprocmask etc. */
 
7
#define HAVE_POSIX_PROCESS_GROUPS
 
8
  /* getpgid, setpgid */
 
9
#define HAVE_POSIX_PROCESS_SESSIONS
 
10
  /* getsid, setsid */
 
11
#define HAVE_POSIX_TTY
 
12
  /* tcgetpgrp, tcsetpgrp, ctermid, ttyname. 
 
13
     Implies HAVE_POSIX_PROCESS_GROUPS, HAVE_POSIX_PROCESS_SESSIONS,
 
14
     and HAVE_POSIX_SIGNALS
 
15
   */
 
16
#define HAVE_POSIX_UID
 
17
  /* setreuid, getreuid */
 
18
#define HAVE_FSYNC
 
19
#define HAVE_FDATASYNC
 
20
#define HAVE_POLL
 
21
#define HAVE_FORK_EXEC
 
22
  /* fork, execve, pipe */
 
23
#define HAVE_MMAP
 
24