Hi,
cd "src/modules/perl" && make
cc -I/usr/local/dev/repos/ASF/perl/modperl/trunk/src/modules/perl
-I/usr/local/dev/repos/ASF/perl/modperl/trunk/xs
-I/usr/local/apps/5.9.3_2.1.7_prefork/httpd/include
-I/usr/local/apps/5.9.3_2.1.7_prefork/httpd/include -I/usr/local/include
-I/usr/local/apps/5.9.3_2.1.7_prefork/httpd/include -pipe
-DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -DDEBUGGING -fno-strict-aliasing
-Wdeclaration-after-statement -I/usr/local/include
-I/usr/local/apps/5.9.3_2.1.7_prefork/perl/lib/mach/CORE -DMOD_PERL
-Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
-Werror -DAP_DEBUG -DAP_HAVE_DESIGNATED_INITIALIZER -DMP_COMPAT_1X
-DMP_DEBUG -DMP_TRACE -DAP_DEBUG -ggdb3 -O0 -DPIC -fPIC -c
modperl_error.c && mv modperl_error.o modperl_error.lo
modperl_error.c: In function `modperl_croak':
modperl_error.c:93: warning: null format string
*** Error code 1
Stop in /usr/local/dev/repos/ASF/perl/modperl/trunk/src/modules/perl.
*** Error code 1
Stop in /usr/local/dev/repos/ASF/perl/modperl/trunk.
Okay so my first thought was Perl_croak has changed. It might have and
the docs not updated?
From perldoc perlapi:
croak This is the XSUB-writer's interface to Perl's "die" function.
Normally call this function the same way you call the C
"printf" function. Calling "croak" returns control
directly to Perl, sidestepping the normal C order of
execution. See "warn".
If you want to throw an exception object, assign the
object to $@ and then pass "Nullch" to croak():
errsv = get_sv("@", TRUE);
sv_setsv(errsv, exception_object);
croak(Nullch);
void croak(const char* pat, ...)
--
END
------------------------------------------------------------
What doesn't kill us can only make us stronger.
Nothing is impossible.
Philip M. Gollucci ([EMAIL PROTECTED]) 301.254.5198
Consultant / http://p6m7g8.net/Resume/resume.shtml
Senior Developer / Liquidity Services, Inc.
http://www.liquidityservicesinc.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]