Don't include <gnome-argp.h>. (program_invocation_name,

1998-12-17  Martin Baulig  <baulig@merkur.uni-trier.de>

	* gnuserv.c: Don't include <gnome-argp.h>.
	(program_invocation_name, program_invocation_short_name): Define
	this here.
This commit is contained in:
Martin Baulig
1998-12-17 15:01:02 +00:00
committed by Martin Baulig
parent 3b1626912d
commit 2abfbd4afb
2 changed files with 14 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
1998-12-17 Martin Baulig <baulig@merkur.uni-trier.de>
* gnuserv.c: Don't include <gnome-argp.h>.
(program_invocation_name, program_invocation_short_name): Define
this here.
1998-12-09 Martin Baulig <martin@home-of-linux.org>
Larger changes to the daemon:

View File

@@ -41,7 +41,6 @@
#include <glibtop/gnuserv.h>
#include <gnome-argp.h>
#include <popt-gnome.h>
#include "daemon.h"
@@ -50,6 +49,14 @@
#include <sys/select.h>
#endif
#ifndef HAVE_PROGRAM_INVOCATION_SHORT_NAME
char *program_invocation_short_name;
#endif
#ifndef HAVE_PROGRAM_INVOCATION_NAME
char *program_invocation_name;
#endif
extern void handle_parent_connection __P ((int));
extern void handle_slave_connection __P ((int, int));
extern void handle_ipc_connection __P ((int));