Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 290364
Collapse All | Expand All

(-)a/work/xfce4-session-4.6.1/Makefile.am (-1 / +4 lines)
Lines 9-17 SUBDIRS = \ Link Here
9
	settings							\
9
	settings							\
10
	xfce4-session							\
10
	xfce4-session							\
11
	xfce4-session-logout						\
11
	xfce4-session-logout						\
12
	xfce4-tips							\
13
	xfsm-shutdown-helper
12
	xfsm-shutdown-helper
14
13
14
if BUILD_TIPS_APP
15
SUBDIRS += xfce4-tips
16
endif
17
15
EXTRA_DIST =								\
18
EXTRA_DIST =								\
16
	BUGS								\
19
	BUGS								\
17
	ChangeLog.pre-xfce-devel					\
20
	ChangeLog.pre-xfce-devel					\
(-)a/work/xfce4-session-4.6.1/configure.in (-1 / +19 lines)
Lines 128-133 else Link Here
128
  AC_MSG_RESULT([yes])
128
  AC_MSG_RESULT([yes])
129
fi
129
fi
130
130
131
dnl Check for Tips and Tricks application
132
AC_ARG_ENABLE([tips],
133
AC_HELP_STRING([--enable-tips], [Enable Tips and Tricks application])
134
AC_HELP_STRING([--disable-tips], [Disable Tips and Tricks application]),
135
[
136
  if test x"$enableval" = x"no"; then
137
    enable_tips=no
138
  else
139
    enable_tips=yes
140
  fi
141
], [enable_tips=yes])
142
AC_MSG_CHECKING([whether to enable Tips and Tricks application])
143
if test x"$enable_tips" = x"yes"; then
144
  AC_MSG_RESULT([yes])
145
else
146
  AC_MSG_RESULT([no])
147
fi
148
AM_CONDITIONAL([BUILD_TIPS_APP], [test x"$enable_tips" = x"yes"])
149
131
dnl check for linux/ioprio.h, and also check that the header actually
150
dnl check for linux/ioprio.h, and also check that the header actually
132
dnl works, as some kernels have bad headers.  using AC_CHECK_HEADERS()
151
dnl works, as some kernels have bad headers.  using AC_CHECK_HEADERS()
133
dnl prints a scary warning with a request to report a bug if it fails,
152
dnl prints a scary warning with a request to report a bug if it fails,
134
- 

Return to bug 290364