~ubuntu-branches/ubuntu/lucid/php5/lucid

« back to all changes in this revision

Viewing changes to main/php_config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2010-03-16 09:09:50 UTC
  • mfrom: (1.1.18 upstream) (0.3.10 sid)
  • Revision ID: james.westby@ubuntu.com-20100316090950-e36m0pzranoixifd
Tags: 5.3.2-1ubuntu1
* Merge from debian unstable: 
  - debian/control:
    * Dropped firebird2.1-dev, libc-client-dev, libmcrypt-dev as it is in universe.
    * Dropped libmysqlclient15-dev, build against mysql 5.1.
    * Dropped libcurl-dev not in the archive.
    * Suggest php5-suhosin rather than recommends.
    * Dropped php5-imap, php5-interbase, php5-mcrypt since we have versions already in
      universe.
    * Dropped libonig-dev and libqgdbm since its in universe. (will be re-added in lucid+1)
    * Dropped locales-all.
  - modulelist: Drop imap, interbase, and mcrypt.
  - debian/rules:
    * Dropped building of mcrypt, imap, and interbase.
    * Install apport hook for php5.
  - Dropped debian/patches/libedit_is_editline.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
   +----------------------------------------------------------------------+
5
5
   | Zend Engine                                                          |
6
6
   +----------------------------------------------------------------------+
7
 
   | Copyright (c) 1998-2009 Zend Technologies Ltd. (http://www.zend.com) |
 
7
   | Copyright (c) 1998-2010 Zend Technologies Ltd. (http://www.zend.com) |
8
8
   +----------------------------------------------------------------------+
9
9
   | This source file is subject to version 2.00 of the Zend license,     |
10
10
   | that is bundled with this package in the file LICENSE, and is        |
19
19
   +----------------------------------------------------------------------+
20
20
*/
21
21
 
22
 
/* $Id: acconfig.h 272370 2008-12-31 11:15:49Z sebastian $ */
 
22
/* $Id: acconfig.h 293155 2010-01-05 20:46:53Z sebastian $ */
23
23
 
24
24
#if defined(__GNUC__) && __GNUC__ >= 4
25
25
# define ZEND_API __attribute__ ((visibility("default")))
377
377
/* Define if you have the memmove function.  */
378
378
#undef HAVE_MEMMOVE
379
379
 
 
380
/* Define if you have the mempcpy function.  */
 
381
#undef HAVE_MEMPCPY
 
382
 
380
383
/* Define if you have the mkfifo function.  */
381
384
#undef HAVE_MKFIFO
382
385
 
545
548
/* Define if you have the strpbrk function.  */
546
549
#undef HAVE_STRPBRK
547
550
 
 
551
/* Define if you have the strpncpy function.  */
 
552
#undef HAVE_STRPNCPY
 
553
 
548
554
/* Define if you have the strptime function.  */
549
555
#undef HAVE_STRPTIME
550
556
 
620
626
/* Define if you have the <arpa/nameser.h> header file.  */
621
627
#undef HAVE_ARPA_NAMESER_H
622
628
 
623
 
/* Define if you have the <arpa/nameser_compat.h> header file.  */
624
 
#undef HAVE_ARPA_NAMESER_COMPAT_H
625
 
 
626
629
/* Define if you have the <assert.h> header file.  */
627
630
#undef HAVE_ASSERT_H
628
631
 
1056
1059
#undef HAVE_LIBBIND
1057
1060
 
1058
1061
/*   */
1059
 
#undef HAVE_NANOSLEEP
1060
 
 
1061
 
/*   */
1062
 
#undef HAVE_NANOSLEEP
1063
 
 
1064
 
/*   */
1065
 
#undef HAVE_LIBRT
1066
 
 
1067
 
/*   */
1068
1062
#undef HAVE_FOPENCOOKIE
1069
1063
 
1070
1064
/*   */
1133
1127
/* Whether struct sockaddr has field sa_len */
1134
1128
#undef HAVE_SOCKADDR_SA_LEN
1135
1129
 
 
1130
/*   */
 
1131
#undef HAVE_NANOSLEEP
 
1132
 
 
1133
/*   */
 
1134
#undef HAVE_LIBRT
 
1135
 
1136
1136
/* Define if you have the getaddrinfo function */
1137
1137
#undef HAVE_GETADDRINFO
1138
1138
 
2441
2441
/*   */
2442
2442
#undef HAVE_CRYPT
2443
2443
 
 
2444
/* whether the compiler supports __alignof__ */
 
2445
#undef HAVE_ALIGNOF
 
2446
 
 
2447
/* whether the compiler supports __attribute__ ((__aligned__)) */
 
2448
#undef HAVE_ATTRIBUTE_ALIGNED
 
2449
 
2444
2450
/* Whether PHP has to use its own crypt_r for blowfish, des, ext des and md5 */
2445
2451
#undef PHP_USE_PHP_CRYPT_R
2446
2452
 
2453
2459
/* Whether the system supports extended DES salt */
2454
2460
#undef PHP_EXT_DES_CRYPT
2455
2461
 
2456
 
/* Whether the system supports extended DES salt */
 
2462
/* Whether the system supports MD5 salt */
2457
2463
#undef PHP_MD5_CRYPT
2458
2464
 
 
2465
/* Whether the system supports SHA512 salt */
 
2466
#undef PHP_SHA512_CRYPT
 
2467
 
 
2468
/* Whether the system supports SHA256 salt */
 
2469
#undef PHP_SHA256_CRYPT
 
2470
 
2459
2471
/* Whether the system supports standard DES salt */
2460
2472
#undef PHP_STD_DES_CRYPT
2461
2473
 
2465
2477
/* Whether the system supports extended DES salt */
2466
2478
#undef PHP_EXT_DES_CRYPT
2467
2479
 
 
2480
/* Whether the system supports SHA512 salt */
 
2481
#undef PHP_EXT_SHA512_CRYPT
 
2482
 
 
2483
/* Whether the system supports SHA256 salt */
 
2484
#undef PHP_EXT_SHA256_CRYPT
 
2485
 
2468
2486
/* Whether PHP has to use its own crypt_r for blowfish, des and ext des */
2469
2487
#undef PHP_USE_PHP_CRYPT_R
2470
2488
 
2732
2750
/* Whether to build mysqlnd as dynamic module */
2733
2751
#undef COMPILE_DL_MYSQLND
2734
2752
 
2735
 
/* Use mysqlnd internal threading */
2736
 
#undef MYSQLND_THREADED
 
2753
/* Enable compressed protocol support */
 
2754
#undef MYSQLND_COMPRESSION_ENABLED
2737
2755
 
2738
2756
/* Define if int32_t type is present.  */
2739
2757
#undef HAVE_INT32_T