php-general Digest 22 Jul 2011 05:07:10 -0000 Issue 7410

Topics (messages 314134 through 314147):

PHP frameworks
        314134 by: Chris Stinemetz
        314135 by: Paul M Foster
        314136 by: shiplu
        314137 by: Bastien
        314138 by: Ashley Sheridan
        314139 by: Shawn McKenzie
        314140 by: Micky Hulse
        314141 by: Jim Lucas
        314142 by: Micky Hulse
        314143 by: Micky Hulse
        314144 by: Shawn McKenzie
        314145 by: Micky Hulse

How to install pecl_http into a web hosting service
        314146 by: gato chalar

PHP/Cairo-0.2.0 Build Bug
        314147 by: Thomas Dineen

Administrivia:

To subscribe to the digest, e-mail:
        php-general-digest-subscr...@lists.php.net

To unsubscribe from the digest, e-mail:
        php-general-digest-unsubscr...@lists.php.net

To post to the list, e-mail:
        php-gene...@lists.php.net


----------------------------------------------------------------------
--- Begin Message ---
Hello all,

I am thinking about venturing into PHP frameworks, but I would like to
get advice on what the correct selection would be for someone that is
about intermediate in PHP knowledge.

Thank you,

--- End Message ---
--- Begin Message ---
On Thu, Jul 21, 2011 at 03:59:52PM -0500, Chris Stinemetz wrote:

> Hello all,
> 
> I am thinking about venturing into PHP frameworks, but I would like to
> get advice on what the correct selection would be for someone that is
> about intermediate in PHP knowledge.
> 
> Thank you,

Try CodeIgniter ( http://codeigniter.com ). It's a lightweight,
well-engineered framework with relatively transparent code (meaning you
can examine the source and see relatively easily what they're doing).
Documentation is some of the best out there.

Paul

-- 
Paul M. Foster
http://noferblatz.com
http://quillandmouse.com

--- End Message ---
--- Begin Message ---
On Fri, Jul 22, 2011 at 3:20 AM, Paul M Foster <pa...@quillandmouse.com> wrote:
> On Thu, Jul 21, 2011 at 03:59:52PM -0500, Chris Stinemetz wrote:
>
>> Hello all,
>>
>> I am thinking about venturing into PHP frameworks, but I would like to
>> get advice on what the correct selection would be for someone that is
>> about intermediate in PHP knowledge.
>>
>> Thank you,
>
> Try CodeIgniter ( http://codeigniter.com ). It's a lightweight,
> well-engineered framework with relatively transparent code (meaning you
> can examine the source and see relatively easily what they're doing).
> Documentation is some of the best out there.
>

Using Kohana 2. Its too old. But most of my skeleton codes are written
in this framework. So not changing it.


-- 
Shiplu Mokadd.im
Follow me, http://twitter.com/shiplu
Innovation distinguishes between follower and leader

--- End Message ---
--- Begin Message ---
+1 for CI! it's a joy to work with

Bastien Koert
905-904-0334

On 2011-07-21, at 5:20 PM, Paul M Foster <pa...@quillandmouse.com> wrote:

> On Thu, Jul 21, 2011 at 03:59:52PM -0500, Chris Stinemetz wrote:
> 
>> Hello all,
>> 
>> I am thinking about venturing into PHP frameworks, but I would like to
>> get advice on what the correct selection would be for someone that is
>> about intermediate in PHP knowledge.
>> 
>> Thank you,
> 
> Try CodeIgniter ( http://codeigniter.com ). It's a lightweight,
> well-engineered framework with relatively transparent code (meaning you
> can examine the source and see relatively easily what they're doing).
> Documentation is some of the best out there.
> 
> Paul
> 
> -- 
> Paul M. Foster
> http://noferblatz.com
> http://quillandmouse.com
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 

--- End Message ---
--- Begin Message ---

EBastien <phps...@gmail.com> wrote:

>+1 for CI! it's a joy to work with
>
>Bastien Koert
>905-904-0334
>
>On 2011-07-21, at 5:20 PM, Paul M Foster <pa...@quillandmouse.com>
>wrote:
>
>> On Thu, Jul 21, 2011 at 03:59:52PM -0500, Chris Stinemetz wrote:
>>
>>> Hello all,
>>>
>>> I am thinking about venturing into PHP frameworks, but I would like
>to
>>> get advice on what the correct selection would be for someone that
>is
>>> about intermediate in PHP knowledge.
>>>
>>> Thank you,
>>
>> Try CodeIgniter ( http://codeigniter.com ). It's a lightweight,
>> well-engineered framework with relatively transparent code (meaning
>you
>> can examine the source and see relatively easily what they're doing).
>> Documentation is some of the best out there.
>>
>> Paul
>>
>> --
>> Paul M. Foster
>> http://noferblatz.com
>> http://quillandmouse.com
>>
>> --
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>
>--
>PHP General Mailing List (http://www.php.net/)
>To unsubscribe, visit: http://www.php.net/unsub.php

I agree, codeigniter is great, its what we use at work.


Thanks,
Ash
http://www.ashleysheridan.co.uk
--
Sent from my Android phone with K-9 Mail. Please excuse my brevity.

--- End Message ---
--- Begin Message ---
On 07/21/2011 03:59 PM, Chris Stinemetz wrote:
> Hello all,
> 
> I am thinking about venturing into PHP frameworks, but I would like to
> get advice on what the correct selection would be for someone that is
> about intermediate in PHP knowledge.
> 
> Thank you,

So, with your post you will probably get one or more replies suggesting
every one of the popular frameworks and then several that suggest some
lesser known ones.

I think Zend looks great, but for many people (including me) it is
overly complex and cumbersome.  It is a very professional and
standardised class library, but has no "glue" to put it all together for
you. Also, it takes OOP to the extreme (for PHP anyway).  Everything has
abstract classes, interfaces and the like.

CI is good from a lightweight, gives you something to build on perspective.

I however prefer CakePHP.  Its been around for a while, it can
automatically build an app from just a well designed database and
doesn't require configuration files in XML, YAML or what have you.  The
documentation is OK and could be much better.

It really depends on what you want out of the framework.  I would
suggest going through the CakePHP and CI tutorials and seeing which one
seems like a good fit for you.


-- 
Thanks!
-Shawn
http://www.spidean.com

--- End Message ---
--- Begin Message ---
+1 for CI.

If you search the group archives, a little while back I asked about
micro PHP frameworks and got a ton of good replies.

So folks, how'z about a PHP framework with a built-in admin interface?
That would be pretty sweet. :)

--- End Message ---
--- Begin Message ---
On 7/21/2011 4:00 PM, Micky Hulse wrote:
> +1 for CI.
> 
> If you search the group archives, a little while back I asked about
> micro PHP frameworks and got a ton of good replies.
> 
> So folks, how'z about a PHP framework with a built-in admin interface?
> That would be pretty sweet. :)
> 

So, what would said admin interface allow you to administrate?

--- End Message ---
--- Begin Message ---
On Thu, Jul 21, 2011 at 5:21 PM, Jim Lucas <li...@cmsws.com> wrote:
> So, what would said admin interface allow you to administrate?

Your app models?

--- End Message ---
--- Begin Message ---
On Thu, Jul 21, 2011 at 5:33 PM, Micky Hulse <rgmi...@gmail.com> wrote:
> Your app models?

More specifically, your app model data. :)

--- End Message ---
--- Begin Message ---
On 07/21/2011 07:44 PM, Micky Hulse wrote:
> On Thu, Jul 21, 2011 at 5:33 PM, Micky Hulse <rgmi...@gmail.com> wrote:
>> Your app models?
> 
> More specifically, your app model data. :)

A la CakePHP.  Will automagically build controllers and views for the
admin of your tables/models if you wish.

-- 
Thanks!
-Shawn
http://www.spidean.com

--- End Message ---
--- Begin Message ---
On Thu, Jul 21, 2011 at 6:44 PM, Shawn McKenzie <nos...@mckenzies.net> wrote:
> A la CakePHP.  Will automagically build controllers and views for the
> admin of your tables/models if you wish.

Oooh, interesting! I will check out CakePHP! Thanks for tip! :)

--- End Message ---
--- Begin Message ---
Hi list,

I need to perform http requests (GET,POST) , I have readed about pecl_http
package, so it seem to be what I need. Reading further I sow some ways to
install this package to a server where you have all rights and privilegies,
and that's the problem; I don't know if I will be able to install pecl_http
in a php hosting service. Currently I have a free php hosting account. Is
that posible?

Thanks for the help.

--- End Message ---
--- Begin Message ---
Gentle People:

When I try to build the PHP/Cairo Extension (version cairo-0.2.0) with the following command:
pecl install channel://pecl.php.net/cairo-0.2.0

on Solaris 10 Intel, I get the following errors:
"/tmp/pear/temp/Cairo/cairo_surface.c", line 706: undefined symbol: CAIRO_SURFACE_TYPE_WIN32_PRINTING "/tmp/pear/temp/Cairo/cairo_surface.c", line 707: undefined symbol: CAIRO_SURFACE_TYPE_QUARTZ_IMAGE
cc: acomp failed for /tmp/pear/temp/Cairo/cairo_surface.c
make: *** [cairo_surface.lo] Error 1
ERROR: `make' failed

Note that all the build work seems to occur in the directory:
/tmp/pear/temp/Cairo
which is empty when examined after the script errors off.
Thus preventing further study!

Note also that I downloaded the cairo-0.2.0 tar distribution
and it did NOT include configure or make files thus preventing
manual builds.

Please help
Thomas Dineen

- The entire transcript is shown below:

root@Sun# pecl install channel://pecl.php.net/cairo-0.2.0
downloading Cairo-0.2.0.tgz ...
Starting to download Cairo-0.2.0.tgz (164,022 bytes)
....................................done: 164,022 bytes
20 source files, building
WARNING: php_bin /usr/local/php/bin/php appears to have a suffix /bin/php, but config variable php_suffix does not match
running: phpize
Configuring for:
PHP Api Version:         20090626
Zend Module Api No:      20090626
Zend Extension Api No:   220090626
configure.in:3: warning: prefer named diversions
configure.in:3: warning: prefer named diversions
Please provide the prefix of Cairo installation [autodetect] : /usr
building in /var/tmp/pear-build-tdineen/Cairo-0.2.0
running: /tmp/pear/temp/Cairo/configure --with-cairo=/usr
checking for grep that handles long lines and -e... /usr/sfw/bin/ggrep
checking for egrep... /usr/sfw/bin/ggrep -E
checking for a sed that does not truncate output... /usr/bin/sed
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... no
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... yes
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... yes
checking build system type... i386-pc-solaris2.10
checking host system type... i386-pc-solaris2.10
checking target system type... i386-pc-solaris2.10
checking for PHP prefix... /usr/local/php
checking for PHP includes... -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib checking for PHP extension directory... /usr/local/php/lib/php/extensions/no-debug-non-zts-20090626
checking for PHP installed headers prefix... /usr/local/php/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... no
checking for nawk... nawk
checking if nawk is broken... no
checking for Cairo graphics library support... yes, shared
checking PHP version... ok
checking for pkg-config... found
checking for cairo... found 1.4.10
checking for Freetype... found 9.8.3
checking for non-GNU ld... /usr/ucb/ld
checking if the linker (/usr/ucb/ld) is GNU ld... no
checking for /usr/ucb/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/local/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking the maximum length of command line arguments... 786240
checking command to parse /usr/local/bin/nm -B output from cc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking for cc option to produce PIC... -KPIC
checking if cc PIC flag -KPIC works... yes
checking if cc static flag -Bstatic works... yes
checking if cc supports -c -o file.o... yes
checking whether the cc linker (/usr/ucb/ld) supports shared libraries... yes
checking dynamic linker characteristics... solaris2.10 ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no

creating libtool
appending configuration tag "CXX" to libtool
configure: creating ./config.status
config.status: creating config.h
running: make
/bin/bash /var/tmp/pear-build-tdineen/Cairo-0.2.0/libtool --mode=compile cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo.c -o cairo.lo
mkdir .libs
cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo.c -KPIC -DPIC -o .libs/cairo.o "/usr/sfw/include/freetype2/freetype/config/ftconfig.h", line 65: warning: macro redefined: SIZEOF_LONG /bin/bash /var/tmp/pear-build-tdineen/Cairo-0.2.0/libtool --mode=compile cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo_error.c -o cairo_error.lo cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo_error.c -KPIC -DPIC -o .libs/cairo_error.o "/usr/sfw/include/freetype2/freetype/config/ftconfig.h", line 65: warning: macro redefined: SIZEOF_LONG /bin/bash /var/tmp/pear-build-tdineen/Cairo-0.2.0/libtool --mode=compile cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo_context.c -o cairo_context.lo cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo_context.c -KPIC -DPIC -o .libs/cairo_context.o "/usr/sfw/include/freetype2/freetype/config/ftconfig.h", line 65: warning: macro redefined: SIZEOF_LONG /bin/bash /var/tmp/pear-build-tdineen/Cairo-0.2.0/libtool --mode=compile cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo_pattern.c -o cairo_pattern.lo cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo_pattern.c -KPIC -DPIC -o .libs/cairo_pattern.o "/usr/sfw/include/freetype2/freetype/config/ftconfig.h", line 65: warning: macro redefined: SIZEOF_LONG /bin/bash /var/tmp/pear-build-tdineen/Cairo-0.2.0/libtool --mode=compile cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo_matrix.c -o cairo_matrix.lo cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo_matrix.c -KPIC -DPIC -o .libs/cairo_matrix.o "/usr/sfw/include/freetype2/freetype/config/ftconfig.h", line 65: warning: macro redefined: SIZEOF_LONG /bin/bash /var/tmp/pear-build-tdineen/Cairo-0.2.0/libtool --mode=compile cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo_path.c -o cairo_path.lo cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo_path.c -KPIC -DPIC -o .libs/cairo_path.o "/usr/sfw/include/freetype2/freetype/config/ftconfig.h", line 65: warning: macro redefined: SIZEOF_LONG "/tmp/pear/temp/Cairo/cairo_path.c", line 88: warning: newline not last character in file /bin/bash /var/tmp/pear-build-tdineen/Cairo-0.2.0/libtool --mode=compile cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo_surface.c -o cairo_surface.lo cc -I. -I/tmp/pear/temp/Cairo -DPHP_ATOM_INC -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/include -I/var/tmp/pear-build-tdineen/Cairo-0.2.0/main -I/tmp/pear/temp/Cairo -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/cairo -I/usr/sfw/include -I/usr/sfw/include/freetype2 -I/usr/include/libpng12 -DHAVE_CONFIG_H -O -xs -xstrconst -zlazyload -c /tmp/pear/temp/Cairo/cairo_surface.c -KPIC -DPIC -o .libs/cairo_surface.o "/usr/sfw/include/freetype2/freetype/config/ftconfig.h", line 65: warning: macro redefined: SIZEOF_LONG "/tmp/pear/temp/Cairo/cairo_surface.c", line 470: warning: statement not reached "/tmp/pear/temp/Cairo/cairo_surface.c", line 585: warning: argument #2 is incompatible with prototype: prototype: pointer to const char : "/usr/local/php/include/php/main/php_streams.h", line 291
        argument : pointer to const unsigned char
"/tmp/pear/temp/Cairo/cairo_surface.c", line 706: undefined symbol: CAIRO_SURFACE_TYPE_WIN32_PRINTING "/tmp/pear/temp/Cairo/cairo_surface.c", line 707: undefined symbol: CAIRO_SURFACE_TYPE_QUARTZ_IMAGE
cc: acomp failed for /tmp/pear/temp/Cairo/cairo_surface.c
make: *** [cairo_surface.lo] Error 1
ERROR: `make' failed
root@Sun#


--- End Message ---

Reply via email to