mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-23 00:08:13 +02:00
* gnome/vpn-properties/Makefile.am: Define SYSCONFDIR preprocessor define to $sysconfdir. * gnome/vpn-properties/nm-vpn-properties.c: Make sure we hide the VPN editing dialog, vpn_edit_widget, which fixes a bug where editing one type of VPN and then editing another results in a mangled dialog box containing the widgets from both VPNs (fixes Novell #150854). Also, some misc. cleanup and use SYSCONFDIR not open coded directory. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1473 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
47 lines
1.5 KiB
Makefile
47 lines
1.5 KiB
Makefile
|
|
bin_PROGRAMS = nm-vpn-properties
|
|
|
|
nm_vpn_propertiesdir=$(includedir)/NetworkManager
|
|
|
|
nm_vpn_properties_HEADERS = \
|
|
nm-vpn-ui-interface.h
|
|
|
|
nm_vpn_properties_SOURCES = \
|
|
nm-vpn-properties.c \
|
|
nm-vpn-ui-interface.h
|
|
|
|
gladedir = $(datadir)/gnome-vpn-properties
|
|
glade_DATA = nm-vpn-properties.glade
|
|
|
|
nm_vpn_properties_CFLAGS = \
|
|
$(GLADE_CFLAGS) \
|
|
$(GTK_CFLAGS) \
|
|
$(GCONF_CFLAGS) \
|
|
$(GMODULE_CFLAGS) \
|
|
$(LIBGNOMEUI_CFLAGS) \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\" \
|
|
-DICONDIR=\""$(datadir)/pixmaps"\" \
|
|
-DGLADEDIR=\""$(gladedir)"\" \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
-DGNOME_DISABLE_DEPRECATED \
|
|
-DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
|
|
-DVERSION=\"$(VERSION)\" \
|
|
$(NULL)
|
|
|
|
nm_vpn_properties_LDADD = \
|
|
$(GLADE_LIBS) \
|
|
$(GTK_LIBS) \
|
|
$(GCONF_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(LIBGNOMEUI_LIBS) \
|
|
$(NULL)
|
|
|
|
CLEANFILES = $(server_DATA) *.bak *.gladep *~
|
|
|
|
EXTRA_DIST = \
|
|
$(glade_DATA) \
|
|
$(NULL)
|
|
|
|
|
|
|