Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
NetworkManager-l2tp
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
CeRiAl
NetworkManager-l2tp
Commits
6831439b
Commit
6831439b
authored
Oct 26, 2013
by
Сергей Прохоров
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix locales paths (port from pptp); version 0.9.8.4
parent
5fe98f70
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
7 deletions
+11
-7
Makefile.am
Makefile.am
+1
-1
configure.ac
configure.ac
+5
-5
nm-l2tp-service.name.in
nm-l2tp-service.name.in
+1
-1
Makefile.am
properties/Makefile.am
+1
-0
nm-l2tp.c
properties/nm-l2tp.c
+3
-0
No files found.
Makefile.am
View file @
6831439b
...
@@ -28,7 +28,7 @@ endif
...
@@ -28,7 +28,7 @@ endif
nm-l2tp-service.name
:
$(srcdir)/nm-l2tp-service.name.in
nm-l2tp-service.name
:
$(srcdir)/nm-l2tp-service.name.in
sed
-e
's|[@]LIBEXECDIR[@]|
$(libexecdir)
|g'
\
sed
-e
's|[@]LIBEXECDIR[@]|
$(libexecdir)
|g'
\
-e
's|[@]
LIBDIR[@]|
$(libdir)
|g'
\
-e
's|[@]
PLUGINDIR[@]|
$(libdir)
/NetworkManager
|g'
\
$<
>
$@
$<
>
$@
DISTCHECK_CONFIGURE_FLAGS
=
--enable-more-warnings
=
yes
DISTCHECK_CONFIGURE_FLAGS
=
--enable-more-warnings
=
yes
...
...
configure.ac
View file @
6831439b
AC_PREREQ(2.59)
AC_PREREQ(2.59)
AC_INIT(NetworkManager-l2tp, 0.9.8.
0
, root@seriyps.ru, NetworkManager-l2tp)
AC_INIT(NetworkManager-l2tp, 0.9.8.
4
, root@seriyps.ru, NetworkManager-l2tp)
AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-bzip2 subdir-objects])
AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-bzip2 subdir-objects])
AM_MAINTAINER_MODE
AM_MAINTAINER_MODE
...
@@ -71,10 +71,10 @@ AC_SUBST(DBUS_GLIB_CFLAGS)
...
@@ -71,10 +71,10 @@ AC_SUBST(DBUS_GLIB_CFLAGS)
AC_SUBST(DBUS_GLIB_LIBS)
AC_SUBST(DBUS_GLIB_LIBS)
PKG_CHECK_MODULES(NM,
PKG_CHECK_MODULES(NM,
NetworkManager >= 0.9.
6
NetworkManager >= 0.9.
8
libnm-util >= 0.9.
6
libnm-util >= 0.9.
8
libnm-glib >= 0.9.
6
libnm-glib >= 0.9.
8
libnm-glib-vpn >= 0.9.
6
)
libnm-glib-vpn >= 0.9.
8
)
AC_SUBST(NM_CFLAGS)
AC_SUBST(NM_CFLAGS)
AC_SUBST(NM_LIBS)
AC_SUBST(NM_LIBS)
...
...
nm-l2tp-service.name.in
View file @
6831439b
...
@@ -5,5 +5,5 @@ program=@LIBEXECDIR@/nm-l2tp-service
...
@@ -5,5 +5,5 @@ program=@LIBEXECDIR@/nm-l2tp-service
[GNOME]
[GNOME]
auth-dialog=@LIBEXECDIR@/nm-l2tp-auth-dialog
auth-dialog=@LIBEXECDIR@/nm-l2tp-auth-dialog
properties=@
LIBDIR@/libnm-l2
tp-properties
properties=@
PLUGINDIR@/libnm-pp
tp-properties
supports-external-ui-mode=true
supports-external-ui-mode=true
properties/Makefile.am
View file @
6831439b
...
@@ -20,6 +20,7 @@ libnm_l2tp_properties_la_CFLAGS = \
...
@@ -20,6 +20,7 @@ libnm_l2tp_properties_la_CFLAGS = \
$(NM_CFLAGS)
\
$(NM_CFLAGS)
\
-DICONDIR
=
\"
"
$(datadir)
/pixmaps"
\"
\
-DICONDIR
=
\"
"
$(datadir)
/pixmaps"
\"
\
-DUIDIR
=
\"
"
$(uidir)
"
\"
\
-DUIDIR
=
\"
"
$(uidir)
"
\"
\
-DLOCALEDIR
=
\"
"
$(datadir)
/locale"
\"
\
-DG_DISABLE_DEPRECATED
\
-DG_DISABLE_DEPRECATED
\
-DVERSION
=
\"
$(VERSION)
\"
-DVERSION
=
\"
$(VERSION)
\"
...
...
properties/nm-l2tp.c
View file @
6831439b
...
@@ -894,6 +894,9 @@ nm_vpn_plugin_ui_factory (GError **error)
...
@@ -894,6 +894,9 @@ nm_vpn_plugin_ui_factory (GError **error)
if
(
error
)
if
(
error
)
g_return_val_if_fail
(
*
error
==
NULL
,
NULL
);
g_return_val_if_fail
(
*
error
==
NULL
,
NULL
);
bindtextdomain
(
GETTEXT_PACKAGE
,
LOCALEDIR
);
bind_textdomain_codeset
(
GETTEXT_PACKAGE
,
"UTF-8"
);
return
NM_VPN_PLUGIN_UI_INTERFACE
(
g_object_new
(
L2TP_TYPE_PLUGIN_UI
,
NULL
));
return
NM_VPN_PLUGIN_UI_INTERFACE
(
g_object_new
(
L2TP_TYPE_PLUGIN_UI
,
NULL
));
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment