From: Andreas A. (Thyrell) <a.a...@th...> - 2001-09-13 16:48:55
|
Hi All, this might be a bit off-topic, but I'm going mad building the command-line php binary. It just does not work; and can't find any hints in the docs. Just feeling like a bloody rookie :( 4.0.6 on Mandrake8 #! /bin/sh # # Created by configure "./configure" \ "--prefix=/usr/local/php4" \ "--with-config-file-path=/usr/local/php4/etc" \ "--with-apxs" \ "--enable-bcmath" \ "--enable-calendar" \ "--enable-xml" \ "--enable-wddx" \ "--enable-debug=no" \ "--with-jpeg" \ "--with-tiff" \ "--with-ttf=/usr/lib" \ "--with-mysql" \ "--with-imap=shared" \ "--with-ldap=shared" \ "--with-dom" \ "--with-sablot" \ "--with-xslt-sablot" \ "--with-t1lib" \ "--enable-memory-limit" \ "--enable-trans-sid" \ "--with-zlib" \ "--without-gd" \ "--enable-static" \ "$@" Damned, got to comfortable using rpm the last years :( Andi |
From: Alok K. D. <al...@dh...> - 2001-09-13 17:08:02
|
lose the '--with-apxs'. ----- Original Message ----- From: "Andreas Aderhold (Thyrell)" <a.a...@th...> To: "Bcdev" <bin...@li...> Sent: Thursday, September 13, 2001 12:21 PM Subject: [binarycloud-dev] PHP builds > Hi All, > > this might be a bit off-topic, but I'm going mad building the command-line > php binary. It just does not work; and can't find any hints in the docs. > Just feeling like a bloody rookie :( > > 4.0.6 on Mandrake8 > > #! /bin/sh > # > # Created by configure > > "./configure" \ > "--prefix=/usr/local/php4" \ > "--with-config-file-path=/usr/local/php4/etc" \ > "--with-apxs" \ > "--enable-bcmath" \ > "--enable-calendar" \ > "--enable-xml" \ > "--enable-wddx" \ > "--enable-debug=no" \ > "--with-jpeg" \ > "--with-tiff" \ > "--with-ttf=/usr/lib" \ > "--with-mysql" \ > "--with-imap=shared" \ > "--with-ldap=shared" \ > "--with-dom" \ > "--with-sablot" \ > "--with-xslt-sablot" \ > "--with-t1lib" \ > "--enable-memory-limit" \ > "--enable-trans-sid" \ > "--with-zlib" \ > "--without-gd" \ > "--enable-static" \ > "$@" > > Damned, got to comfortable using rpm the last years :( > > Andi > > > _______________________________________________ > binarycloud-dev mailing list > bin...@li... > https://lists.sourceforge.net/lists/listinfo/binarycloud-dev > |
From: Andreas A. (Thyrell) <a.a...@th...> - 2001-09-13 18:06:18
|
Hi, >lose the '--with-apxs'. That's it, thanks! Andi ----- Original Message ----- > Hi All, > > this might be a bit off-topic, but I'm going mad building > the command-line > php binary. It just does not work; and can't find any > hints in the docs. Just feeling like a bloody rookie :( |
From: Jason H. <jc...@ey...> - 2001-09-13 17:36:58
|
What is the compile error? "Andreas Aderhold (Thyrell)" wrote: > this might be a bit off-topic, but I'm going mad building the command-line > php binary. It just does not work; and can't find any hints in the docs. > Just feeling like a bloody rookie :( |
From: Alex B. <en...@tu...> - 2001-09-13 19:38:58
|
> Hi All, > > this might be a bit off-topic, but I'm going mad building the command-line > php binary. It just does not work; and can't find any hints in the docs. > Just feeling like a bloody rookie :( > > 4.0.6 on Mandrake8 > > #! /bin/sh > # > # Created by configure > > "./configure" \ > "--prefix=/usr/local/php4" \ > "--with-config-file-path=/usr/local/php4/etc" \ > "--with-apxs" \ > "--enable-bcmath" \ > "--enable-calendar" \ > "--enable-xml" \ > "--enable-wddx" \ > "--enable-debug=no" \ > "--with-jpeg" \ > "--with-tiff" \ > "--with-ttf=/usr/lib" \ > "--with-mysql" \ > "--with-imap=shared" \ > "--with-ldap=shared" \ > "--with-dom" \ > "--with-sablot" \ > "--with-xslt-sablot" \ > "--with-t1lib" \ > "--enable-memory-limit" \ > "--enable-trans-sid" \ > "--with-zlib" \ > "--without-gd" \ > "--enable-static" \ > "$@" > > Damned, got to comfortable using rpm the last years :( > > Andi heh. I modified my build to include some of the stuff from above, but this is for 4.0.6: ./configure \ --prefix=/usr/local/php4 \ --with-config-file-path=/usr/local/php4/etc \ --with-apxs \ --enable-bcmath \ --enable-calendar \ --enable-wddx \ --with-jpeg-dir=/usr/lib \ --with-tiff-dir=/usr/lib \ --enable-force-cgi-redirect \ --enable-discard-path \ --disable-shared \ --enable-ftp \ --with-zlib \ --with-imlib=/usr/local/lib/ \ --with-iconv=/usr/local/lib \ --with-oci8=/u01/oracle/product/8.1.6 \ --with-mhash=/usr/local/mhash \ --with-mcrypt=/usr/local/mcrypt \ --with-dom=/usr/local/libxml2 \ --with-sablot=/usr/local/Sablot \ --with-curl \ --with-expat-dir=/usr/local/expat \ --enable-memory-limit \ --enable-debug=no Actually, andi, let me make a couple mods to my scripts and check them into bc_install. Once I do that, you'll be able to use the complete compile scripts (and tarballs) to build and install apache, php, sab, etc etc etc. :) _alex |
From: Alex B. <en...@tu...> - 2001-09-14 02:36:26
|
hey all, Just did a sync. new logreport utility: base/utils/logreport/ some changes from andi. watchin' more TV than usual... may you live in interesting times, eh? best, _alex |
From: Andreas A. (Thyrell) <a.a...@th...> - 2001-09-14 10:14:54
|
Hi Alex, >> this might be a bit off-topic, but I'm going mad building the >> command-line php binary. > Actually, andi, let me make a couple mods to my scripts > and check them into bc_install. Once I do that, you'll > be able to use the complete compile scripts (and tarballs) > to build and install apache, php, sab, etc etc etc. Really coool. I'll test the bundle and report. Andi |