Displaying 4 results from an estimated 4 matches for "402,408".
2004 Jun 23
0
UPDATE Patch for postgres enabled app_voicemail.c
...ail,pager,options FROM
voicemail WHERE context='%s' AND mailbox='%s'", retval->context, mailbox);
! /* fprintf(stderr,"postgres find_user: query = %s\n",query); */
ast_mutex_lock(&postgreslock);
PGSQLres=PQexec(dbhandler,query);
if (PGSQLres!=NULL) {
--- 402,408 ----
}
sprintf(query, "SELECT password,fullname,email,pager,options FROM
voicemail WHERE context='%s' AND mailbox='%s'", retval->context, mailbox);
! fprintf(stdout,"postgres find_user: query = %s\n",query);
ast_mutex_lock(&postgreslock);
PGSQ...
2004 Jun 23
0
Patch for postgres enabled app_voicemail.c
...ail,pager,options FROM
voicemail WHERE context='%s' AND mailbox='%s'", retval->context, mailbox);
! /* fprintf(stderr,"postgres find_user: query = %s\n",query); */
ast_mutex_lock(&postgreslock);
PGSQLres=PQexec(dbhandler,query);
if (PGSQLres!=NULL) {
--- 402,408 ----
}
sprintf(query, "SELECT password,fullname,email,pager,options FROM
voicemail WHERE context='%s' AND mailbox='%s'", retval->context, mailbox);
! fprintf(stdout,"postgres find_user: query = %s\n",query);
ast_mutex_lock(&postgreslock);
PGSQ...
2004 Sep 10
3
Altivec, automake
I think I've gotten FLAC__lpc_restore_signal() about as good as I'm going to
get it.
Here's what I have:
-a new file, lpc_asm.s, which has the assembly routines
-changes to cpu.h, cpu.c, and stream_decoder.c to enable them
-changes to configure.in to support the new cpu stuff
-a preliminary Makefile.am
-maybe something else I'm forgetting
Now automake complains that configure.in
2004 Sep 10
2
Altivec, automake
...EC, [define to enable use of Altivec instructions])
AH_TEMPLATE(ID3LIB_MAJOR, [define to major version number of id3lib])
AH_TEMPLATE(ID3LIB_MINOR, [define to minor version number of id3lib])
AH_TEMPLATE(ID3LIB_PATCH, [define to patch level of id3lib])
***************
*** 389,394 ****
--- 402,408 ----
src/Makefile \
src/libFLAC/Makefile \
src/libFLAC/ia32/Makefile \
+ src/libFLAC/ppc/Makefile \
src/libFLAC/include/Makefile \
src/libFLAC/include/private/Makefile \
src/libFLAC/include/protected/Makefile \
-------------- next part --------------
Index: cpu.c
============...