From: Tim Gustafson on 10 Sep 2009 20:52 I'm trying to create a new port. To get myself started, I copied pecl-hash and then modified the Makefile and the distinfo file. When I try to make my port, it downloads the file from the PECL repository, extracts it, runs configure and then starts compiling, but in the end I get a bunch of errors from cc about undefined constants: kadm5.c: In function 'kadm5_error': kadm5.c:285: error: 'KADM5_FAILURE' undeclared (first use in this function) kadm5.c:285: error: (Each undeclared identifier is reported only once kadm5.c:285: error: for each function it appears in.) kadm5.c:288: error: 'KADM5_AUTH_GET' undeclared (first use in this function) kadm5.c:291: error: 'KADM5_AUTH_ADD' undeclared (first use in this function) So, I manually edited work/kadm5-0.2.3/kadm5.c and added: #include "kadm5/kadm5_err.h" That file has -most- of the needed declarations, but there are a few more that aren't there, and I'm thinking the version of Kerberos that's installed in FreeBSD 7.2 just doesn't have those declarations (the two missing declarations are for KADM5_AUTH_SETKEY and KADM5_SETKEY_DUP_ENCTYPES). So, my first question is: How can I tell my port to patch work/kadm5-0.2.3/kadm5.c with the needed line above? My second question is: Is there a "proper way" to hack the needed values into kadm5_err.h? Should I make a new .h file and include it as part of the port only? And last but not least: After I manually patched the kadm5.c file and hacked the missing declarations into kadm5_err.h, I get a different set of errors: kadm5.c: In function 'kadm5_error': kadm5.c:440: error: label at end of compound statement kadm5.c: In function 'zif_kadm5_get_principals': kadm5.c:1048: warning: passing argument 3 of 'kadm5_free_name_list' makes pointer from integer without a cast kadm5.c: In function 'zif_kadm5_get_policies': kadm5.c:1184: warning: passing argument 3 of 'kadm5_free_name_list' makes pointer from integer without a cast Now, I am not a C programmer. I took a C class in about 1996 and that's more or less the last I've done in C. Is there anyone out there who might be kind enough to help me get this port working? I have a real need for Kerberos administration from within PHP, and this PECL library being absent has been a stumbling block for a long time now. Tim Gustafson Baskin School of Engineering UC Santa Cruz tjg(a)soe.ucsc.edu 831-459-5354 _______________________________________________ freebsd-ports(a)freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe(a)freebsd.org"
From: "Glen Barber" on 10 Sep 2009 21:01 Hi. On Thu, 10 Sep 2009 20:36:25 -0400, Tim Gustafson <tjg(a)soe.ucsc.edu> wrote: > I'm trying to create a new port. To get myself started, I copied > pecl-hash and then modified the Makefile and the distinfo file. When I > try to make my port, it downloads the file from the PECL repository, > extracts it, runs configure and then starts compiling, but in the end I > get a bunch of errors from cc about undefined constants: [snip] > So, my first question is: How can I tell my port to patch > work/kadm5-0.2.3/kadm5.c with the needed line above? > You will want to create a '-patch' line in the Makefile. See the following as a reference: http://www.freebsd.org/doc/en/books/porters-handbook/slow-patch.html > My second question is: Is there a "proper way" to hack the needed values > into kadm5_err.h? Should I make a new .h file and include it as part of > the port only? > You can create a ${PORTNAME}/files directory containing the file(s) you need, specific to your port and FreeBSD. See the following link for more information: http://www.freebsd.org/doc/en/books/porters-handbook/install.html > And last but not least: > > After I manually patched the kadm5.c file and hacked the missing > declarations into kadm5_err.h, I get a different set of errors: > [snip] Sorry. There are lots of experienced folks who can help with C errors. I, unfortunately, am not one of them. You may want to bookmark this, as well: http://www.freebsd.org/doc/en/books/porters-handbook/ Cheers, -- Glen Barber _______________________________________________ freebsd-ports(a)freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe(a)freebsd.org"
From: Mel Flynn on 15 Sep 2009 08:59 On Friday 11 September 2009 02:36:25 Tim Gustafson wrote: > I'm trying to create a new port. To get myself started, I copied pecl-hash > and then modified the Makefile and the distinfo file. When I try to make > my port, it downloads the file from the PECL repository, extracts it, runs > configure and then starts compiling, but in the end I get a bunch of > errors from cc about undefined constants: > > kadm5.c: In function 'kadm5_error': > kadm5.c:285: error: 'KADM5_FAILURE' undeclared (first use in this function) > kadm5.c:285: error: (Each undeclared identifier is reported only once > kadm5.c:285: error: for each function it appears in.) > kadm5.c:288: error: 'KADM5_AUTH_GET' undeclared (first use in this > function) kadm5.c:291: error: 'KADM5_AUTH_ADD' undeclared (first use in > this function) > > So, I manually edited work/kadm5-0.2.3/kadm5.c and added: > > #include "kadm5/kadm5_err.h" > > That file has -most- of the needed declarations, but there are a few more > that aren't there, and I'm thinking the version of Kerberos that's > installed in FreeBSD 7.2 just doesn't have those declarations (the two > missing declarations are for KADM5_AUTH_SETKEY and > KADM5_SETKEY_DUP_ENCTYPES). > > So, my first question is: How can I tell my port to patch > work/kadm5-0.2.3/kadm5.c with the needed line above? > > My second question is: Is there a "proper way" to hack the needed values > into kadm5_err.h? Should I make a new .h file and include it as part of > the port only? > > And last but not least: > > After I manually patched the kadm5.c file and hacked the missing > declarations into kadm5_err.h, I get a different set of errors: > > kadm5.c: In function 'kadm5_error': > kadm5.c:440: error: label at end of compound statement > kadm5.c: In function 'zif_kadm5_get_principals': > kadm5.c:1048: warning: passing argument 3 of 'kadm5_free_name_list' makes > pointer from integer without a cast kadm5.c: In function > 'zif_kadm5_get_policies': > kadm5.c:1184: warning: passing argument 3 of 'kadm5_free_name_list' makes > pointer from integer without a cast > > Now, I am not a C programmer. I took a C class in about 1996 and that's > more or less the last I've done in C. Is there anyone out there who might > be kind enough to help me get this port working? I have a real need for > Kerberos administration from within PHP, and this PECL library being > absent has been a stumbling block for a long time now. Could shar(1) your current work? I can likely fix the issues you're seeing, but it would be nice if you can save me some cycles finding the urls and making the distinfo. How to shar a port is I think covered in the porters handbook. In short: cd /usr/ports shar `find category/portname -type f` >/tmp/portname.sh. -- Mel _______________________________________________ freebsd-ports(a)freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe(a)freebsd.org"
From: Tim Gustafson on 15 Sep 2009 12:29 ------=_Part_29046_1584337106.1253032153563 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit > Could shar(1) your current work? I can likely fix the issues > you're seeing, but it would be nice if you can save me some > cycles finding the urls and making the distinfo. How to shar > a port is I think covered in the porters handbook. In short: > cd /usr/ports > shar `find category/portname -type f` >/tmp/portname.sh. I'm attaching the file as a ZIP (so that it doesn't get clobbered anywhere). Thanks for your help - I really appreciate it! Tim Gustafson Baskin School of Engineering UC Santa Cruz tjg(a)soe.ucsc.edu 831-459-5354 ------=_Part_29046_1584337106.1253032153563 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ freebsd-ports(a)freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe(a)freebsd.org" ------=_Part_29046_1584337106.1253032153563--
From: Mel Flynn on 15 Sep 2009 17:51 --Boundary-00=_6wAsKDTcdgb7OyT Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit On Tuesday 15 September 2009 18:29:13 Tim Gustafson wrote: > > Could shar(1) your current work? I can likely fix the issues > > you're seeing, but it would be nice if you can save me some > > cycles finding the urls and making the distinfo. How to shar > > a port is I think covered in the porters handbook. In short: > > cd /usr/ports > > shar `find category/portname -type f` >/tmp/portname.sh. > > I'm attaching the file as a ZIP (so that it doesn't get clobbered > anywhere). Thanks for your help - I really appreciate it! Here you go: php -i: kadm5 kadm5 support => enabled You will have to test if this works as expected. I just made it compile and link. -- Mel --Boundary-00=_6wAsKDTcdgb7OyT Content-Type: text/plain; charset="UTF-8"; name="pecl-kadm5.sh.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="pecl-kadm5.sh.txt" # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # security/pecl-kadm5 # security/pecl-kadm5/Makefile # security/pecl-kadm5/distinfo # security/pecl-kadm5/pkg-descr # security/pecl-kadm5/files # security/pecl-kadm5/files/patch-config.m4 # security/pecl-kadm5/files/patch-kadm5.c # security/pecl-kadm5/out # security/pecl-kadm5/err # echo c - security/pecl-kadm5 mkdir -p security/pecl-kadm5 > /dev/null 2>&1 echo x - security/pecl-kadm5/Makefile sed 's/^X//' >security/pecl-kadm5/Makefile << '4bc45574b886d0973c667fac52a8= 8143' X# Ports collection makefile for: pecl-kadm5 X# Date created: 2009-09-10 X# Whom: Tim Gustafson <tjg(a)soe.ucsc.edu> X# X# $FreeBSD$ X# X XPORTNAME=3D kadm5 XDISTVERSION=3D 0.2.3 XCATEGORIES=3D security www XMASTER_SITES=3D http://pecl.php.net/get/ XPKGNAMEPREFIX=3D pecl- XEXTRACT_SUFX=3D .tgz XDIST_SUBDIR=3D PECL X XMAINTAINER=3D tjg(a)soe.ucsc.edu XCOMMENT=3D Kerberos Admin Module for PHP X XUSE_PHP=3D yes XUSE_PHPEXT=3D yes XDEFAULT_PHP_VER=3D5 X X.include <bsd.port.mk> 4bc45574b886d0973c667fac52a88143 echo x - security/pecl-kadm5/distinfo sed 's/^X//' >security/pecl-kadm5/distinfo << 'f740f39faefa93fed072b1a5f9af= f7c2' XMD5 (PECL/kadm5-0.2.3.tgz) =3D 2b393f22232496fb799c452dd3868227 XSHA256 (PECL/kadm5-0.2.3.tgz) =3D 82423432ebbf7fd827b9049e760ec5139d5661f7= 31854256a1adc43a239f2b37 XSIZE (PECL/kadm5-0.2.3.tgz) =3D 23090 f740f39faefa93fed072b1a5f9aff7c2 echo x - security/pecl-kadm5/pkg-descr sed 's/^X//' >security/pecl-kadm5/pkg-descr << 'fb602e7c4f1a8b1c868cf521efb= e635a' XThis port enabled the KADM5 module for PHP5. fb602e7c4f1a8b1c868cf521efbe635a echo c - security/pecl-kadm5/files mkdir -p security/pecl-kadm5/files > /dev/null 2>&1 echo x - security/pecl-kadm5/files/patch-config.m4 sed 's/^X//' >security/pecl-kadm5/files/patch-config.m4 << '9e9aa0e8f5d01d8= 40f913b43d4c107be' X--- config.m4.orig 2003-05-09 16:28:45.000000000 +0200 X+++ config.m4 2009-09-15 23:41:56.000000000 +0200 X@@ -34,6 +34,28 @@ X fi X done X fi X+ SEARCH_PATH=3D"/usr/local/include /usr/include /usr/src/krb5-1.2.4/src/= include" X+ SEARCH_FOR=3D"kadm5/kadm5_err.h" X+ AC_MSG_CHECKING(for kadm5/kadm5_err.h) X+ for i in $SEARCH_PATH ; do X+ if test -r $i/$SEARCH_FOR; then X+ AC_DEFINE(HAVE_KADM5_ERR_H, [], [Wether kadm5/kadm5_err.h is presen= t]) X+ AC_MSG_RESULT(found in $i) X+ fi X+ done X+ AC_MSG_CHECKING(various enum values) X+ ENUMS=3D"KADM5_AUTH_SETKEY KADM5_SETKEY_DUP_ENCTYPES" X+ found=3D0 X+ for i in $ENUMS; do X+ if grep -q $i $KADM5_DIR/*; then X+ AC_DEFINE([HAVE_$i], [], [System has $i]) X+ AC_MSG_RESULT($i) X+ found=3D1 X+ fi X+ done X+ if test $found -eq 0; then X+ AC_MSG_RESULT(none) X+ fi X=20 X if test -z "$KADM5_DIR"; then X AC_MSG_RESULT(not found) X@@ -56,10 +78,12 @@ X PHP_SUBST(KADM5_SHARED_LIBADD) X PHP_ADD_LIBRARY_WITH_PATH(kadm5clnt, /usr/lib, KADM5_SHARED_LIBADD) X dnl PHP_ADD_LIBRARY_WITH_PATH(kdb5, /usr/lib, KADM5_SHARED_LIBADD) X- PHP_ADD_LIBRARY_WITH_PATH(gssrpc, /usr/lib, KADM5_SHARED_LIBADD) X+ dnl not needed in FreeBSD PHP_ADD_LIBRARY_WITH_PATH(gssrpc, /usr/lib, K= ADM5_SHARED_LIBADD) X PHP_ADD_LIBRARY_WITH_PATH(krb5, /usr/lib, KADM5_SHARED_LIBADD) X- PHP_ADD_LIBRARY_WITH_PATH(k5crypto, /usr/lib, KADM5_SHARED_LIBADD) X- PHP_ADD_LIBRARY_WITH_PATH(dyn, /usr/lib, KADM5_SHARED_LIBADD) X+ dnl not needed in FreeBSD PHP_ADD_LIBRARY_WITH_PATH(k5crypto, /usr/lib,= KADM5_SHARED_LIBADD) X+ dnl not needed in FreeBSD PHP_ADD_LIBRARY_WITH_PATH(dyn, /usr/lib, KADM= 5_SHARED_LIBADD) X+ dnl needed for FreeBSD: X+ PHP_ADD_LIBRARY_WITH_PATH(asn1, /usr/lib, KADM5_SHARED_LIBADD) X=20 X PHP_EXTENSION(kadm5, $ext_shared) X fi 9e9aa0e8f5d01d840f913b43d4c107be echo x - security/pecl-kadm5/files/patch-kadm5.c sed 's/^X//' >security/pecl-kadm5/files/patch-kadm5.c << '3ad0cac2c6984eaf3= 261c558d078ba70' X--- kadm5.c.orig 2003-05-28 12:51:42.000000000 +0200 X+++ kadm5.c 2009-09-15 23:21:35.000000000 +0200 X@@ -30,6 +30,9 @@ X #endif X=20 X #include "kadm5/admin.h" X+#ifdef HAVE_KADM5_ERR_H X+#include <kadm5/kadm5_err.h> X+#endif X=20 X #include "php.h" X #include "php_ini.h" X@@ -429,13 +432,18 @@ X case KADM5_BAD_SERVER_NAME: X php_error(E_WARNING, "Bad krb5 admin server hostname. (KADM5_BAD_SERVER= _NAME)"); X break; X+#ifdef HAVE_KADM5_AUTH_SETKEY X case KADM5_AUTH_SETKEY: X php_error(E_WARNING, "Operation requires 'set-key' privilege. (KADM5_AU= TH_SETKEY)"); X break; X+#endif X+#ifdef HAVE_KADM5_SETKEY_DUP_ENCTYPES X case KADM5_SETKEY_DUP_ENCTYPES: X php_error(E_WARNING, "Multiple values for single or folded enctype. (KA= DM5_SETKEY_DUP_ENCTYPES)"); X break; X+#endif X default: X+ break; X } X } X /* }}} */ X@@ -1044,7 +1052,7 @@ X add_next_index_string(return_value, princs[i], 1); X } X=20 X- kadm5_free_name_list(handle, princs, count); X+ kadm5_free_name_list(handle, princs, &count); X } X /* }}} */ X=20 X@@ -1180,7 +1188,7 @@ X add_next_index_string(return_value, policies[i], 1); X } X=20 X- kadm5_free_name_list(handle, policies, count); X+ kadm5_free_name_list(handle, policies, &count); X } X /* }}} */ X=20 3ad0cac2c6984eaf3261c558d078ba70 echo x - security/pecl-kadm5/out sed 's/^X//' >security/pecl-kadm5/out << '5065b0598bad3c5d020e50e1f49f381d' X XBuild complete. XDon't forget to run 'make test'. X X X=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D XPHP : /usr/local/bin/php=20 XPHP_SAPI : cli XPHP_VERSION : 5.2.10 XZEND_VERSION: 2.2.0 XPHP_OS : FreeBSD - FreeBSD smoochies.rachie.is-a-geek.net 8.0-BETA4 F= reeBSD 8.0-BETA4 #14 r196875M: Mon Sep 7 18:00:45 CEST 2009 mel(a)smooch= ies.rachie.is-a-geek.net:/usr/obj/usr/src/sys/HPDV9000 i386 XINI actual : /usr/local/etc/php.ini XMore .INIs : /usr/local/etc/php/extensions.ini=20 XCWD : /stable/usr/obj/usr/ports/local/pecl-kadm5/work/kadm5-0.2.3 XExtra dirs :=20 XVALGRIND : Not used X=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D XRunning selected tests. XTEST 1/1 [tests/001.phpt]=0DSKIP Check for kadm5 presence [tests/001.phpt]= =20 X=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D XNumber of tests : 1 0 XTests skipped : 1 (100.0%) -------- XTests warned : 0 ( 0.0%) ( 0.0%) XTests failed : 0 ( 0.0%) ( 0.0%) XExpected fail : 0 ( 0.0%) ( 0.0%) XTests passed : 0 ( 0.0%) ( 0.0%) X--------------------------------------------------------------------- XTime taken : 0 seconds X=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 5065b0598bad3c5d020e50e1f49f381d echo x - security/pecl-kadm5/err sed 's/^X//' >security/pecl-kadm5/err << '365a7dcaf9d3ec6a05f98e0a3f689a7e' XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/zlib.so= ' - Cannot open "modules/zlib.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/zlib.so' - C= annot open "modules/zlib.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/zip.so'= - Cannot open "modules/zip.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/zip.so' - Ca= nnot open "modules/zip.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/xml.so'= - Cannot open "modules/xml.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/xml.so' - Ca= nnot open "modules/xml.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/simplex= ml.so' - Cannot open "modules/simplexml.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/simplexml.so= ' - Cannot open "modules/simplexml.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/session= =2Eso' - Cannot open "modules/session.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/session.so' = =2D Cannot open "modules/session.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/pgsql.s= o' - Cannot open "modules/pgsql.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/pgsql.so' - = Cannot open "modules/pgsql.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/pcre.so= ' - Cannot open "modules/pcre.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/pcre.so' - C= annot open "modules/pcre.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/spl.so'= - Cannot open "modules/spl.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/spl.so' - Ca= nnot open "modules/spl.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/mysqli.= so' - Cannot open "modules/mysqli.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/mysqli.so' -= Cannot open "modules/mysqli.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/mysql.s= o' - Cannot open "modules/mysql.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/mysql.so' - = Cannot open "modules/mysql.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/mcrypt.= so' - Cannot open "modules/mcrypt.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/mcrypt.so' -= Cannot open "modules/mcrypt.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/mbstrin= g.so' - Cannot open "modules/mbstring.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/mbstring.so'= - Cannot open "modules/mbstring.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/gd.so' = =2D Cannot open "modules/gd.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/gd.so' - Can= not open "modules/gd.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/filter.= so' - Cannot open "modules/filter.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/filter.so' -= Cannot open "modules/filter.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/curl.so= ' - Cannot open "modules/curl.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/curl.so' - C= annot open "modules/curl.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/ctype.s= o' - Cannot open "modules/ctype.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/ctype.so' - = Cannot open "modules/ctype.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/bz2.so'= - Cannot open "modules/bz2.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/bz2.so' - Ca= nnot open "modules/bz2.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/pdf.so'= - Cannot open "modules/pdf.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/pdf.so' - Ca= nnot open "modules/pdf.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/kadm5.s= o' - /usr/lib/libkrb5.so.10: Undefined symbol "initialize_asn1_error_table_= r" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/kadm5.so' - = /usr/lib/libkrb5.so.10: Undefined symbol "initialize_asn1_error_table_r" in= Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/zlib.so= ' - Cannot open "modules/zlib.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/zlib.so' - C= annot open "modules/zlib.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/zip.so'= - Cannot open "modules/zip.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/zip.so' - Ca= nnot open "modules/zip.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/xml.so'= - Cannot open "modules/xml.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/xml.so' - Ca= nnot open "modules/xml.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/simplex= ml.so' - Cannot open "modules/simplexml.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/simplexml.so= ' - Cannot open "modules/simplexml.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/session= =2Eso' - Cannot open "modules/session.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/session.so' = =2D Cannot open "modules/session.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/pgsql.s= o' - Cannot open "modules/pgsql.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/pgsql.so' - = Cannot open "modules/pgsql.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/pcre.so= ' - Cannot open "modules/pcre.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/pcre.so' - C= annot open "modules/pcre.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/spl.so'= - Cannot open "modules/spl.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/spl.so' - Ca= nnot open "modules/spl.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/mysqli.= so' - Cannot open "modules/mysqli.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/mysqli.so' -= Cannot open "modules/mysqli.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/mysql.s= o' - Cannot open "modules/mysql.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/mysql.so' - = Cannot open "modules/mysql.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/mcrypt.= so' - Cannot open "modules/mcrypt.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/mcrypt.so' -= Cannot open "modules/mcrypt.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/mbstrin= g.so' - Cannot open "modules/mbstring.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/mbstring.so'= - Cannot open "modules/mbstring.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/gd.so' = =2D Cannot open "modules/gd.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/gd.so' - Can= not open "modules/gd.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/filter.= so' - Cannot open "modules/filter.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/filter.so' -= Cannot open "modules/filter.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/curl.so= ' - Cannot open "modules/curl.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/curl.so' - C= annot open "modules/curl.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/ctype.s= o' - Cannot open "modules/ctype.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/ctype.so' - = Cannot open "modules/ctype.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/bz2.so'= - Cannot open "modules/bz2.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/bz2.so' - Ca= nnot open "modules/bz2.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/pdf.so'= - Cannot open "modules/pdf.so" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/pdf.so' - Ca= nnot open "modules/pdf.so" in Unknown on line 0 XPHP Warning: PHP Startup: Unable to load dynamic library 'modules/kadm5.s= o' - /usr/lib/libkrb5.so.10: Undefined symbol "initialize_asn1_error_table_= r" in Unknown on line 0 X XWarning: PHP Startup: Unable to load dynamic library 'modules/kadm5.so' - = /usr/lib/libkrb5.so.10: Undefined symbol "initialize_asn1_error_table_r" in= Unknown on line 0 365a7dcaf9d3ec6a05f98e0a3f689a7e exit --Boundary-00=_6wAsKDTcdgb7OyT Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ freebsd-ports(a)freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe(a)freebsd.org" --Boundary-00=_6wAsKDTcdgb7OyT--
|
Next
|
Last
Pages: 1 2 Prev: libx11 build problems Next: Upgraded Trac, but still getting errors... |