mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-26 05:20:08 +01:00
2008-07-27 Dan Williams <dcbw@redhat.com>
Patch from Michael Biebl <biebl@debian.org> * Move service to $LIBEXECDIR, remove unneeded compilation flags, move properties plugin to $LIBDIR/NetworkManager git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3861 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
a3da087c2e
commit
8dfcafa6bb
6 changed files with 14 additions and 11 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2008-07-27 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
Patch from Michael Biebl <biebl@debian.org>
|
||||
|
||||
* Move service to $LIBEXECDIR, remove unneeded compilation flags, move
|
||||
properties plugin to $LIBDIR/NetworkManager
|
||||
|
||||
2008-07-19 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* properties/nm-openvpn.c
|
||||
|
|
|
|||
|
|
@ -22,10 +22,8 @@ icondir = $(datadir)/icons/hicolor/48x48/apps
|
|||
icon_DATA = gnome-mime-application-x-openvpn-settings.png
|
||||
endif
|
||||
|
||||
nm-openvpn-service.name: $(srcdir)/nm-openvpn-service.name.in Makefile
|
||||
sed -e 's|[@]BINDIR[@]|$(bindir)|g' \
|
||||
< $(srcdir)/nm-openvpn-service.name.in \
|
||||
> nm-openvpn-service.name
|
||||
nm-openvpn-service.name: $(srcdir)/nm-openvpn-service.name.in
|
||||
sed -e 's|[@]LIBEXECDIR[@]|$(libexecdir)|g' $< >$@
|
||||
|
||||
EXTRA_DIST = nm-openvpn-service.name.in \
|
||||
$(dbusservice_DATA) \
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[VPN Connection]
|
||||
name=openvpn
|
||||
service=org.freedesktop.NetworkManager.openvpn
|
||||
program=@BINDIR@/nm-openvpn-service
|
||||
program=@LIBEXECDIR@/nm-openvpn-service
|
||||
|
||||
[GNOME]
|
||||
auth-dialog=nm-openvpn-auth-dialog
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
|
||||
|
||||
lib_LTLIBRARIES = libnm-openvpn-properties.la
|
||||
plugindir = $(libdir)/NetworkManager
|
||||
plugin_LTLIBRARIES = libnm-openvpn-properties.la
|
||||
|
||||
libnm_openvpn_properties_la_SOURCES = \
|
||||
nm-openvpn.c \
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
AM_CPPFLAGS = \
|
||||
$(DBUS_CFLAGS) \
|
||||
$(NETWORK_MANAGER_CFLAGS) \
|
||||
-Wall \
|
||||
-DDBUS_API_SUBJECT_TO_CHANGE \
|
||||
-DG_DISABLE_DEPRECATED \
|
||||
-DBINDIR=\"$(bindir)\" \
|
||||
|
|
@ -13,7 +12,7 @@ AM_CPPFLAGS = \
|
|||
-DLOCALSTATEDIR=\""$(localstatedir)"\" \
|
||||
-DDATADIR=\"$(datadir)\"
|
||||
|
||||
bin_PROGRAMS = nm-openvpn-service nm-openvpn-service-openvpn-helper
|
||||
libexec_PROGRAMS = nm-openvpn-service nm-openvpn-service-openvpn-helper
|
||||
|
||||
nm_openvpn_service_SOURCES = \
|
||||
nm-openvpn-service.c \
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
#include "nm-openvpn-service.h"
|
||||
#include "nm-utils.h"
|
||||
|
||||
#define NM_OPENVPN_HELPER_PATH BINDIR"/nm-openvpn-service-openvpn-helper"
|
||||
#define NM_OPENVPN_HELPER_PATH LIBEXECDIR"/nm-openvpn-service-openvpn-helper"
|
||||
|
||||
G_DEFINE_TYPE (NMOpenvpnPlugin, nm_openvpn_plugin, NM_TYPE_VPN_PLUGIN)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue