summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--contrib/Makefile20
-rw-r--r--contrib/README4
3 files changed, 26 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 2da8c824a..efb44797a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120020930
2 - (djm) Tidy contrib/, add Makefile for GNOME passphrase dialogs, tweak README
3
120020927 420020927
2 - (djm) OpenBSD CVS Sync 5 - (djm) OpenBSD CVS Sync
3 - markus@cvs.openbsd.org 2002/09/25 11:17:16 6 - markus@cvs.openbsd.org 2002/09/25 11:17:16
@@ -734,4 +737,4 @@
734 save auth method before monitor_reset_key_state(); bugzilla bug #284; 737 save auth method before monitor_reset_key_state(); bugzilla bug #284;
735 ok provos@ 738 ok provos@
736 739
737$Id: ChangeLog,v 1.2485 2002/09/27 03:25:58 djm Exp $ 740$Id: ChangeLog,v 1.2486 2002/09/30 00:40:39 djm Exp $
diff --git a/contrib/Makefile b/contrib/Makefile
new file mode 100644
index 000000000..9bdb95ffb
--- /dev/null
+++ b/contrib/Makefile
@@ -0,0 +1,20 @@
1all:
2 @echo "Valid targets: gnome-ssh-askpass1 gnome-ssh-askpass2"
3
4gnome-ssh-askpass2: gnome-ssh-askpass2.c
5 $(CC) `pkg-config --cflags gtk+-2.0` \
6 gnome-ssh-askpass2.c -o gnome-ssh-askpass2 \
7 `pkg-config --libs gtk+-2.0`
8
9gnome-ssh-askpass1: gnome-ssh-askpass1.c
10 $(CC) `gnome-config --cflags gnome gnomeui` \
11 gnome-ssh-askpass1.c -o gnome-ssh-askpass1 \
12 `gnome-config --libs gnome gnomeui`
13
14gnome-ssh-askpass2: gnome-ssh-askpass2.c
15 $(CC) `pkg-config --cflags gtk+-2.0` \
16 gnome-ssh-askpass2.c -o gnome-ssh-askpass2 \
17 `pkg-config --libs gtk+-2.0`
18
19clean:
20 rm -f *.o gnome-ssh-askpass1 gnome-ssh-askpass2 gnome-ssh-askpass
diff --git a/contrib/README b/contrib/README
index 407152dcc..67dbbd277 100644
--- a/contrib/README
+++ b/contrib/README
@@ -32,8 +32,8 @@ your public key to a remote machine's ~/.ssh/authorized_keys file.
32 32
33gnome-ssh-askpass[12]: 33gnome-ssh-askpass[12]:
34 34
35A GNOME and Gtk2 passphrase requesters. Compilation instructions 35A GNOME and Gtk2 passphrase requesters. Use "make gnome-ssh-askpass1" or
36are in the top of the files. 36"make gnome-ssh-askpass2" to build.
37 37
38sshd.pam.generic: 38sshd.pam.generic:
39 39