/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * * Author : * Bertrand Guiheneuf * * Copyright 1999, 2000 Helix Code, Inc. (http://www.helixcode.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA */ #include #include "camel-log.h" int camel_debug_level = CAMEL_LOG_LEVEL_FULL_DEBUG; FILE *camel_log_file_descriptor = NULL; void camel_log(guint level, const gchar *format, ... ) { va_list args; if (camel_log_file_descriptor == NULL) camel_log_file_descriptor = stdout; if (level<=camel_debug_level) { va_start(args, format); vfprintf(camel_log_file_descriptor, format, args); va_end (args); } } ame='h' onchange='this.form.submit();'> FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* - Update to 3.1.7miwi2008-11-223-4/+5
* - Update to 3.1.6miwi2008-10-193-4/+16
* - Update to 3.1.5.1miwi2008-08-303-16/+20
* - Update to 3.1.4beech2008-07-313-4/+14
* - Update to 3.1.3miwi2008-07-203-5/+14
* - Update to 3.1.2pav2008-06-123-9/+36
* Bump portrevision due to upgrade of devel/gettext.edwin2008-06-061-0/+1
* - Update to 3.1.1beech2008-05-063-83/+727
* Add note about possible problems when fetching from behind a proxy.wxs2008-03-251-0/+6
* - Update to 3.0.6beech2008-02-183-21/+29
* - Update to 3.0.5pav2008-01-203-180/+812
* - Update to 3.0.4pav2007-12-153-9/+60
* - Update to 3.0.2miwi2007-10-243-69/+24
* - Complete repocopy of www/plone3 and apply patch.alepulver2007-09-28