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

« back to all changes in this revision

Viewing changes to Zend/zend.h

  • 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:
2
2
   +----------------------------------------------------------------------+
3
3
   | Zend Engine                                                          |
4
4
   +----------------------------------------------------------------------+
5
 
   | Copyright (c) 1998-2009 Zend Technologies Ltd. (http://www.zend.com) |
 
5
   | Copyright (c) 1998-2010 Zend Technologies Ltd. (http://www.zend.com) |
6
6
   +----------------------------------------------------------------------+
7
7
   | This source file is subject to version 2.00 of the Zend license,     |
8
8
   | that is bundled with this package in the file LICENSE, and is        | 
17
17
   +----------------------------------------------------------------------+
18
18
*/
19
19
 
20
 
/* $Id: zend.h 286859 2009-08-06 01:33:54Z scottmac $ */
 
20
/* $Id: zend.h 294459 2010-02-03 20:44:43Z pajoye $ */
21
21
 
22
22
#ifndef ZEND_H
23
23
#define ZEND_H
166
166
# define ZEND_ATTRIBUTE_DEPRECATED
167
167
#endif
168
168
 
169
 
#if defined(__GNUC__) && ZEND_GCC_VERSION >= 3400 && defined(__i386__)
 
169
#if defined(__GNUC__) && ZEND_GCC_VERSION >= 3004 && defined(__i386__)
170
170
# define ZEND_FASTCALL __attribute__((fastcall))
171
171
#elif defined(_MSC_VER) && defined(_M_IX86)
172
172
# define ZEND_FASTCALL __fastcall
174
174
# define ZEND_FASTCALL
175
175
#endif
176
176
 
177
 
#if defined(__GNUC__) && ZEND_GCC_VERSION >= 3400
 
177
#if defined(__GNUC__) && ZEND_GCC_VERSION >= 3004
178
178
#else
179
179
# define __restrict__
180
180
#endif
710
710
                FREE_ZVAL(pzv);                                         \
711
711
        }                                                                               \
712
712
        INIT_PZVAL(&(zv));
 
713
        
 
714
#define MAKE_COPY_ZVAL(ppzv, pzv) \
 
715
        *(pzv) = **(ppzv);            \
 
716
        zval_copy_ctor((pzv));        \
 
717
        INIT_PZVAL((pzv));
713
718
 
714
719
#define REPLACE_ZVAL_VALUE(ppzv_dest, pzv_src, copy) {  \
715
720
        int is_ref, refcount;                                           \