Aggiunto il test (da implementare) per SolipaMail.
intltool-*
Rules-quot
*.exe
+tests/mail
-SUBDIRS = src data
+SUBDIRS = src data tests
ACLOCAL_AMFLAGS = -I m4
data/Makefile
data/libsolipa/Makefile
data/libsolipa/gui/Makefile
+ tests/Makefile
])
AC_OUTPUT
#define __LIBSOLIPA_H__
#include <libsolipa/solipa.h>
+#include <libsolipa/allegato.h>
+#include <libsolipa/mail.h>
#endif /* __LIBSOLIPA_H__ */
return NULL;
}
- g_thread_init (NULL);
-
- camel_init (NULL, FALSE);
- camel_provider_init ();
-
msg = camel_mime_message_new ();
camel_mime_message_set_subject (msg, priv->subject);
#include <config.h>
#endif
+#include <stdlib.h>
+#include <camel/camel.h>
+
#include "solipa.h"
static void solipa_class_init (SolipaClass *class);
Solipa
*solipa_new ()
{
+ Solipa *solipa;
+
+ gchar *camel_tmpdir;
+
+ /* inizializzo GType e GThread */
+ g_type_init ();
+ g_thread_init (NULL);
+
+ /* creo la directory temporanea per camel */
+ camel_tmpdir = mkdtemp (g_build_filename (g_get_tmp_dir (), g_strdup ("solipa-camel-XXXXXX"), NULL));
+
+ /* inizializzo camel */
+ camel_init (camel_tmpdir, FALSE);
+ camel_provider_init ();
+
+ solipa = SOLIPA (g_object_new (solipa_get_type (), NULL));
- return SOLIPA (g_object_new (solipa_get_type (), NULL));
+ return solipa;
}
void
--- /dev/null
+AM_CPPFLAGS = $(WARN_CFLAGS) \
+ $(DISABLE_DEPRECATED_CFLAGS) \
+ $(SOLIPA_CFLAGS) \
+ -I$(top_srcdir)/src \
+ -DGUIDIR="\"@abs_builddir@\""
+
+LIBS = $(SOLIPA_LIBS) \
+ -export-dynamic
+
+LDADD = $(top_builddir)/src/libsolipa.la
+
+noinst_PROGRAMS = mail
--- /dev/null
+/*
+ * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ *
+ * 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 <solipa.h>
+#include <mail.h>
+
+int
+main (int argc, char **argv)
+{
+ Solipa *solipa;
+
+ solipa = solipa_new ();
+
+ return 0;
+}