From: Fredrik Tolf Date: Mon, 13 Aug 2007 03:46:52 +0000 (+0200) Subject: Skeleton for the GUI shell X-Git-Tag: 1.0~76 X-Git-Url: http://git.dolda2000.com/gitweb/?p=doldaconnect.git;a=commitdiff_plain;h=f7a57385f5749e0bc0eb27028f609ca72e2b2dbd Skeleton for the GUI shell --- diff --git a/clients/Makefile.am b/clients/Makefile.am index 66e3e71..fd7072d 100644 --- a/clients/Makefile.am +++ b/clients/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS=gtk2 tty gnome-trans-applet gaim +SUBDIRS=gtk2 tty gnome-trans-applet gaim gui-shell EXTRA_DIST=hellodolda.png iconsdir = $(datadir)/pixmaps diff --git a/clients/gui-shell/Makefile.am b/clients/gui-shell/Makefile.am new file mode 100644 index 0000000..a6aa0e4 --- /dev/null +++ b/clients/gui-shell/Makefile.am @@ -0,0 +1,3 @@ +bin_PROGRAMS=dolcon-launch + +dolcon_launch_SOURCES=launch.c diff --git a/clients/gui-shell/launch.c b/clients/gui-shell/launch.c new file mode 100644 index 0000000..f31fcc2 --- /dev/null +++ b/clients/gui-shell/launch.c @@ -0,0 +1,36 @@ +/* + * Dolda Connect - Modular multiuser Direct Connect-style client + * Copyright (C) 2007 Fredrik Tolf + * + * 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 +#include +#include +#include +#include + +#ifdef HAVE_CONFIG_H +#include +#endif + +#define _(text) gettext(text) + +int main(int argc, char **argv) +{ + return(0); +} diff --git a/configure.in b/configure.in index 7160668..45aec59 100644 --- a/configure.in +++ b/configure.in @@ -231,6 +231,7 @@ clients/gtk2/Makefile clients/tty/Makefile clients/gnome-trans-applet/Makefile clients/gaim/Makefile +clients/gui-shell/Makefile include/Makefile include/doldaconnect/Makefile doc/Makefile