From e1db87b9b9e4a582e106fb9f24e6be21c8fa0917 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 21 Dec 1999 18:42:28 +0000 Subject: no_comment --- tools/.cvsignore | 1 + tools/Makefile | 9 +++++++-- tools/xhost+.c | 11 +++++++++++ 3 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 tools/xhost+.c (limited to 'tools') diff --git a/tools/.cvsignore b/tools/.cvsignore index e570b13fa..21a6d396b 100644 --- a/tools/.cvsignore +++ b/tools/.cvsignore @@ -1,2 +1,3 @@ rpm2header gendepslist +xhost+ diff --git a/tools/Makefile b/tools/Makefile index fec667eff..654345ef8 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -3,17 +3,22 @@ DEST = $(ROOTDEST)/Mandrake/mdkinst RPMS = $(wildcard $(ROOTDEST)/Mandrake/RPMS/*.rpm) DIRS = ddcprobe pnp_serial BASE = $(ROOTDEST)/Mandrake/base +CFLAGS = -Wall .PHONY: clean install $(DIRS) -all: $(BASE)/depslist $(BASE)/hdlist $(DIRS) install +all: $(BASE)/depslist $(BASE)/hdlist $(DIRS) install $(DIRS): make -C $@ install: - $(MAKE) gendepslist rpm2header + $(MAKE) gendepslist rpm2header xhost+ install make_mdkinst_stage2 gendepslist rpm2header genhdlist $(ROOTDEST)/misc + install -s xhost+ $(DEST)/usr/bin + +xhost+: %: %.c + $(CC) $(CFLAGS) $< -L/usr/X11R6/lib -lX11 -o $@ gendepslist: %: %.cc $(CXX) -I/usr/include/rpm $(CFLAGS) $< -lrpm -ldb1 -lz -o $@ diff --git a/tools/xhost+.c b/tools/xhost+.c new file mode 100644 index 000000000..58781274e --- /dev/null +++ b/tools/xhost+.c @@ -0,0 +1,11 @@ +#include +#include + + +int main(int argc, char **argv) { + Display *d = XOpenDisplay(getenv("DISPLAY") ? getenv("DISPLAY") : ":0"); + if (d == NULL) exit(1); + XDisableAccessControl(d); + XCloseDisplay(d); + exit(0); +} -- cgit v1.2.1