GTK 3 has been in maintenance mode for a while now, and it is on the road to being abandoned. As a result, the dialogue looks out of place on modern systems. We could port it to GTK 4 but without the program being registered as an application (i.e. having a .desktop file), GNOME Shell would ask for permission to grab input every time. Let’s instead use the GNOME Shell’s native prompt through the unstable Gcr API.
28 lines
920 B
Makefile
28 lines
920 B
Makefile
PKG_CONFIG = pkg-config
|
|
|
|
all:
|
|
@echo "Valid targets: gnome-ssh-askpass1 gnome-ssh-askpass2 gnome-ssk-askpass3 gnome-ssh-askpass4"
|
|
|
|
gnome-ssh-askpass1: gnome-ssh-askpass1.c
|
|
$(CC) $(CFLAGS) `gnome-config --cflags gnome gnomeui` \
|
|
gnome-ssh-askpass1.c -o gnome-ssh-askpass1 \
|
|
`gnome-config --libs gnome gnomeui`
|
|
|
|
gnome-ssh-askpass2: gnome-ssh-askpass2.c
|
|
$(CC) $(CFLAGS) `$(PKG_CONFIG) --cflags gtk+-2.0` \
|
|
gnome-ssh-askpass2.c -o gnome-ssh-askpass2 \
|
|
`$(PKG_CONFIG) --libs gtk+-2.0 x11`
|
|
|
|
gnome-ssh-askpass3: gnome-ssh-askpass3.c
|
|
$(CC) $(CFLAGS) `$(PKG_CONFIG) --cflags gtk+-3.0` \
|
|
gnome-ssh-askpass3.c -o gnome-ssh-askpass3 \
|
|
`$(PKG_CONFIG) --libs gtk+-3.0 x11`
|
|
|
|
gnome-ssh-askpass4: gnome-ssh-askpass4.c
|
|
$(CC) $(CFLAGS) `$(PKG_CONFIG) --cflags gcr-4 gio-2.0` \
|
|
gnome-ssh-askpass4.c -o gnome-ssh-askpass4 \
|
|
`$(PKG_CONFIG) --libs gcr-4 gio-2.0`
|
|
|
|
clean:
|
|
rm -f *.o gnome-ssh-askpass gnome-ssh-askpass[123]
|