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@3863 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2008-07-27 20:24:28 +00:00
parent d4b3721c8d
commit 653e14db5d
5 changed files with 14 additions and 10 deletions

View file

@ -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-21 Dan Williams <dcbw@redhat.com>
* src/nm-pptp-service.c

View file

@ -22,10 +22,8 @@ icondir = $(datadir)/icons/hicolor/48x48/apps
icon_DATA = gnome-mime-application-x-pptp-settings.png
endif
nm-pptp-service.name: $(srcdir)/nm-pptp-service.name.in Makefile
sed -e 's|[@]BINDIR[@]|$(bindir)|g' \
< $(srcdir)/nm-pptp-service.name.in \
> nm-pptp-service.name
nm-pptp-service.name: $(srcdir)/nm-pptp-service.name.in
sed -e 's|[@]LIBEXECDIR[@]|$(libexecdir)|g' $< >$@
EXTRA_DIST = nm-pptp-service.name.in \
$(dbusservice_DATA) \

View file

@ -1,7 +1,7 @@
[VPN Connection]
name=pptp
service=org.freedesktop.NetworkManager.pptp
program=@BINDIR@/nm-pptp-service
program=@LIBEXECDIR@/nm-pptp-service
[GNOME]
auth-dialog=nm-pptp-auth-dialog

View file

@ -1,4 +1,5 @@
lib_LTLIBRARIES = libnm-pptp-properties.la
plugindir = $(libdir)/NetworkManager
plugin_LTLIBRARIES = libnm-pptp-properties.la
libnm_pptp_properties_la_SOURCES = \
nm-pptp.c \

View file

@ -4,7 +4,6 @@ AM_CPPFLAGS = \
$(DBUS_GLIB_CFLAGS) \
$(GTHREAD_CFLAGS) \
$(NM_UTILS_CFLAGS) \
-Wall \
-DDBUS_API_SUBJECT_TO_CHANGE \
-DG_DISABLE_DEPRECATED \
-DBINDIR=\"$(bindir)\" \
@ -15,10 +14,9 @@ AM_CPPFLAGS = \
-DLIBEXECDIR=\""$(libexecdir)"\" \
-DLOCALSTATEDIR=\""$(localstatedir)"\" \
-DDATADIR=\"$(datadir)\" \
-DPLUGINDIR=\"$(PPPD_PLUGIN_DIR)\" \
-fPIC
-DPLUGINDIR=\"$(PPPD_PLUGIN_DIR)\"
bin_PROGRAMS = nm-pptp-service
libexec_PROGRAMS = nm-pptp-service
nm_pptp_service_SOURCES = \
nm-pptp-service.c \