~ubuntu-branches/ubuntu/precise/curl/precise-proposed

« back to all changes in this revision

Viewing changes to lib/nwos.c

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2011-11-25 17:30:45 UTC
  • mfrom: (3.4.23 sid)
  • Revision ID: package-import@ubuntu.com-20111125173045-2l3ni88jv16kath0
Tags: 7.22.0-3ubuntu1
* Merge from Debian unstable, remaining changes:
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.
  - Add new libcurl3-udeb package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 *                            | (__| |_| |  _ <| |___
6
6
 *                             \___|\___/|_| \_\_____|
7
7
 *
8
 
 * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
 
8
 * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
9
9
 *
10
10
 * This software is licensed as described in the file COPYING, which
11
11
 * you should have received as part of this distribution. The terms
20
20
 *
21
21
 ***************************************************************************/
22
22
 
 
23
#include "setup.h"
 
24
 
23
25
#ifdef NETWARE /* Novell NetWare */
24
26
 
25
 
#include <stdlib.h>
26
 
 
27
27
#ifdef __NOVELL_LIBC__
28
28
/* For native LibC-based NLM we need to do nothing. */
29
29
int netware_init ( void )
34
34
#else /* __NOVELL_LIBC__ */
35
35
 
36
36
/* For native CLib-based NLM we need to initialize the LONG namespace. */
37
 
#include <stdio.h>
38
37
#include <nwnspace.h>
39
38
#include <nwthread.h>
40
39
#include <nwadv.h>
86
85
 
87
86
#endif /* __NOVELL_LIBC__ */
88
87
 
89
 
#else /* NETWARE */
90
 
 
91
 
#ifdef __POCC__
92
 
#  pragma warn(disable:2024)  /* Disable warning #2024: Empty input file */
93
 
#endif
94
 
 
95
88
#endif /* NETWARE */