Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 588388 | Differences between
and this patch

Collapse All | Expand All

(-)a/configure.ac (+3 lines)
Lines 38-43 dnl Link Here
38
AC_PROG_GCC_TRADITIONAL
38
AC_PROG_GCC_TRADITIONAL
39
AC_FUNC_MEMCMP
39
AC_FUNC_MEMCMP
40
AC_CHECK_FUNCS(select socket uname)
40
AC_CHECK_FUNCS(select socket uname)
41
AC_SEARCH_LIBS([dlopen], [dl dld], [], [
42
  AC_MSG_ERROR([unable to find the dlopen() function])
43
])
41
44
42
dnl ensure that when the Automake generated makefile calls aclocal,
45
dnl ensure that when the Automake generated makefile calls aclocal,
43
dnl it honours the $ACLOCAL_FLAGS environment variable
46
dnl it honours the $ACLOCAL_FLAGS environment variable
(-)a/properties/Makefile.am (-3 / +2 lines)
Lines 57-63 libnm_vpn_plugin_openvpn_la_CFLAGS = \ Link Here
57
        $(LIBNM_CFLAGS)
57
        $(LIBNM_CFLAGS)
58
58
59
libnm_vpn_plugin_openvpn_la_LIBADD = \
59
libnm_vpn_plugin_openvpn_la_LIBADD = \
60
        $(LIBNM_LIBS)
60
        $(LIBNM_LIBS) \
61
        $(DLOPEN)
61
62
62
libnm_vpn_plugin_openvpn_la_LDFLAGS = \
63
libnm_vpn_plugin_openvpn_la_LDFLAGS = \
63
        -avoid-version \
64
        -avoid-version \
64
- 
65
--
66
configure.ac                 | 6 +++---
65
configure.ac                 | 6 +++---
67
properties/Makefile.am       | 3 ++-
66
properties/Makefile.am       | 3 ++-
68
properties/tests/Makefile.am | 1 -
67
properties/tests/Makefile.am | 1 -
69
3 files changed, 5 insertions(+), 5 deletions(-)
68
3 files changed, 5 insertions(+), 5 deletions(-)
(-)a/configure.ac (-3 / +3 lines)
Lines 38-46 dnl Link Here
38
AC_PROG_GCC_TRADITIONAL
38
AC_PROG_GCC_TRADITIONAL
39
AC_FUNC_MEMCMP
39
AC_FUNC_MEMCMP
40
AC_CHECK_FUNCS(select socket uname)
40
AC_CHECK_FUNCS(select socket uname)
41
AC_SEARCH_LIBS([dlopen], [dl dld], [], [
41
42
  AC_MSG_ERROR([unable to find the dlopen() function])
42
AC_SEARCH_LIBS([dlopen], [dl dld], [], [ac_cv_search_dlopen=])
43
])
43
AC_SUBST([DL_LIBS], "$ac_cv_search_dlopen")
44
44
45
dnl ensure that when the Automake generated makefile calls aclocal,
45
dnl ensure that when the Automake generated makefile calls aclocal,
46
dnl it honours the $ACLOCAL_FLAGS environment variable
46
dnl it honours the $ACLOCAL_FLAGS environment variable
(-)a/properties/Makefile.am (-1 / +2 lines)
Lines 58-64 libnm_vpn_plugin_openvpn_la_CFLAGS = \ Link Here
58
58
59
libnm_vpn_plugin_openvpn_la_LIBADD = \
59
libnm_vpn_plugin_openvpn_la_LIBADD = \
60
        $(LIBNM_LIBS) \
60
        $(LIBNM_LIBS) \
61
        $(DLOPEN)
61
        $(DL_LIBS) \
62
        $(NULL)
62
63
63
libnm_vpn_plugin_openvpn_la_LDFLAGS = \
64
libnm_vpn_plugin_openvpn_la_LDFLAGS = \
64
        -avoid-version \
65
        -avoid-version \
(-)a/properties/tests/Makefile.am (-2 lines)
Lines 27-33 test_import_export_LDADD = \ Link Here
27
	$(GTK_LIBS) \
27
	$(GTK_LIBS) \
28
	$(LIBNM_LIBS) \
28
	$(LIBNM_LIBS) \
29
	$(LIBNMA_LIBS) \
29
	$(LIBNMA_LIBS) \
30
	-ldl \
31
	$(top_builddir)/properties/libnm-vpn-plugin-openvpn-test.la
30
	$(top_builddir)/properties/libnm-vpn-plugin-openvpn-test.la
32
31
33
32
34
- 

Return to bug 588388