On Thu, Apr 8, 2010 at 10:43:07 +0300, Radu Spineanu wrote: > Hi guys, > > One of the packages I maintain fails to build on alpha. The bug report > is here: > > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=564620 > You're using va_list as if it's a pointer type. It isn't.
The patch below should at least fix the build…
--- sphinxsearch-0.9.9.orig/src/searchd.cpp
+++ sphinxsearch-0.9.9/src/searchd.cpp
@@ -8396,7 +8396,7 @@
CheckRotate ();
CheckReopen ();
CheckFlush ();
- sphLog ( LOG_INFO, NULL, NULL ); // flush dupes
+ sphInfo ( NULL); // flush dupes
ARRAY_FOREACH ( i, g_dListeners )
sphFDSet ( g_dListeners[i].m_iSock, &fdsAccept );
Cheers,
Julien
signature.asc
Description: Digital signature

