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

Collapse All | Expand All

(-)gmyth.orig/m4/ac_doxygen.m4 (-2 / +2 lines)
Lines 78-84 Link Here
78
AC_PATH_TOOL([$1], [$2])
78
AC_PATH_TOOL([$1], [$2])
79
if test "$DX_FLAG_[]DX_CURRENT_FEATURE$$1" = 1; then
79
if test "$DX_FLAG_[]DX_CURRENT_FEATURE$$1" = 1; then
80
    AC_MSG_WARN([$2 not found - will not DX_CURRENT_DESCRIPTION])
80
    AC_MSG_WARN([$2 not found - will not DX_CURRENT_DESCRIPTION])
81
    AC_SUBST([DX_FLAG_[]DX_CURRENT_FEATURE], 0)
81
    AC_SUBST([DX_FLAG_]DX_CURRENT_FEATURE, 0)
82
fi
82
fi
83
])
83
])
84
84
Lines 101-107 Link Here
101
# ----------------------------------------------------------
101
# ----------------------------------------------------------
102
# Turn off the DX_CURRENT_FEATURE if the required feature is off.
102
# Turn off the DX_CURRENT_FEATURE if the required feature is off.
103
AC_DEFUN([DX_CLEAR_DEPEND], [
103
AC_DEFUN([DX_CLEAR_DEPEND], [
104
test "$DX_FLAG_$1" = "$2" || AC_SUBST([DX_FLAG_[]DX_CURRENT_FEATURE], 0)
104
test "$DX_FLAG_$1" = "$2" || AC_SUBST([DX_FLAG_]DX_CURRENT_FEATURE, 0)
105
])
105
])
106
106
107
# DX_FEATURE_ARG(FEATURE, DESCRIPTION,
107
# DX_FEATURE_ARG(FEATURE, DESCRIPTION,
(-)gmyth.orig/src/Makefile.am (-5 / +6 lines)
Lines 55-71 Link Here
55
	$(GSTBASE_CFLAGS)			\
55
	$(GSTBASE_CFLAGS)			\
56
	$(GSTPLUGINSBASE_CFLAGS)	\
56
	$(GSTPLUGINSBASE_CFLAGS)	\
57
	$(MYSQL_CFLAGS)				\
57
	$(MYSQL_CFLAGS)				\
58
	$(LIBXML_CFLAGS)
58
	$(LIBXML_CFLAGS)			\
59
	$(LIBCURL_CFLAGS)
59
60
60
libgmyth_la_LDFLAGS = 			\
61
libgmyth_la_LDFLAGS = 			\
61
	-export-dynamic 			\
62
	-export-dynamic 			
62
	$(GLIB_CFLAGS) 				\
63
libgmyth_la_LIBADD  =			\
63
	$(GOBJECT_CFLAGS)			\
64
	$(MYSQL_LIBS) 				\
64
	$(MYSQL_LIBS) 				\
65
	$(GST_LIBS) 				\
65
	$(GST_LIBS) 				\
66
	$(GSTBASE_LIBS)				\
66
	$(GSTBASE_LIBS)				\
67
	$(GSTPLUGINS_LIBS)			\
67
	$(GSTPLUGINS_LIBS)			\
68
	$(LIBXML_LIBS)
68
	$(LIBXML_LIBS)				\
69
	$(LIBCURL_LIBS)				
69
70
70
libgmyth_includedir = 			\
71
libgmyth_includedir = 			\
71
	$(pkgincludedir)
72
	$(pkgincludedir)

Return to bug 247748