~ubuntu-branches/debian/wheezy/curl/wheezy

« back to all changes in this revision

Viewing changes to src/config-mac.h

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2012-05-25 15:19:51 UTC
  • mfrom: (1.2.17)
  • Revision ID: package-import@ubuntu.com-20120525151951-lhs7ze4vj9orv6vr
Tags: 7.26.0-1
* New upstream release
  - Reject numerical IPv6 addresses outside brackets (Closes: #670126)
* Email change: Alessandro Ghedini -> ghedo@debian.org
* Stricter Depends on libcurl3 (Closes: #666089)
* Remove Ramakrishnan (as per his request), move myself to Maintainer
  Thank you for all your work so far
* Disable memory tracking, but keep debug enabled
  - Remove memdebug symbols (used by curl only)
* Refresh 01_runtests_gdb.patch, 90_gnutls.patch and 99_nss.patch
* Disable not-quite-working symbols hiding

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __SRC_CONFIG_MAC_H
2
 
#define __SRC_CONFIG_MAC_H
3
 
/***************************************************************************
4
 
 *                                  _   _ ____  _
5
 
 *  Project                     ___| | | |  _ \| |
6
 
 *                             / __| | | | |_) | |
7
 
 *                            | (__| |_| |  _ <| |___
8
 
 *                             \___|\___/|_| \_\_____|
9
 
 *
10
 
 * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
11
 
 *
12
 
 * This software is licensed as described in the file COPYING, which
13
 
 * you should have received as part of this distribution. The terms
14
 
 * are also available at http://curl.haxx.se/docs/copyright.html.
15
 
 *
16
 
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17
 
 * copies of the Software, and permit persons to whom the Software is
18
 
 * furnished to do so, under the terms of the COPYING file.
19
 
 *
20
 
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21
 
 * KIND, either express or implied.
22
 
 *
23
 
 ***************************************************************************/
24
 
 
25
 
/* =================================================================== */
26
 
/*   src/config-mac.h - Hand crafted config file for Mac OS 9          */
27
 
/* =================================================================== */
28
 
/*  On Mac OS X you must run configure to generate curl_config.h file  */
29
 
/* =================================================================== */
30
 
 
31
 
/* Define to 1 if you want the built-in manual */
32
 
#define USE_MANUAL 1
33
 
 
34
 
#define HAVE_UNISTD_H           1
35
 
#define HAVE_ERRNO_H            1
36
 
#define HAVE_FCNTL_H            1
37
 
#define HAVE_UTIME_H            1
38
 
#define HAVE_SYS_UTIME_H        1
39
 
 
40
 
#define HAVE_SETVBUF            1
41
 
#define HAVE_UTIME              1
42
 
#define HAVE_FTRUNCATE          1
43
 
 
44
 
#define HAVE_TIME_H             1
45
 
#define HAVE_SYS_TIME_H         1
46
 
#define TIME_WITH_SYS_TIME      1
47
 
#define HAVE_STRUCT_TIMEVAL     1
48
 
 
49
 
#define SIZEOF_INT              4
50
 
#define SIZEOF_SHORT            2
51
 
 
52
 
#define main(x,y) curl_main(x,y)
53
 
 
54
 
/* we provide our own strdup prototype */
55
 
char *strdup(char *s1);
56
 
 
57
 
#endif /* __SRC_CONFIG_MAC_H */