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

Collapse All | Expand All

(-)a/acinclude.m4 (+15 lines)
Lines 490-492 Link Here
490
    esac
490
    esac
491
    AC_SUBST(OGRE_THREAD_LIBS)
491
    AC_SUBST(OGRE_THREAD_LIBS)
492
])
492
])
493
494
AC_DEFUN([OGRE_CHECK_SAMPLES],
495
[
496
	AC_ARG_ENABLE(samples,
497
              AC_HELP_STRING([--disable-samples], [Do not build samples]),
498
              [build_samples=$enableval],
499
              [build_samples=yes])
500
501
	ogre_samples_dir="Samples"
502
	if test "x$build_samples" != "xyes" ; then
503
		ogre_samples_dir=""
504
	fi
505
	AC_SUBST(ogre_samples_dir)
506
])
507
(-)a/configure.in (+1 lines)
Lines 64-69 Link Here
64
OGRE_CHECK_CG
64
OGRE_CHECK_CG
65
OGRE_CHECK_OPENEXR
65
OGRE_CHECK_OPENEXR
66
OGRE_CHECK_DX9
66
OGRE_CHECK_DX9
67
OGRE_CHECK_SAMPLES
67
68
68
dnl Detect endianness
69
dnl Detect endianness
69
OGRE_DETECT_ENDIAN
70
OGRE_DETECT_ENDIAN
(-)a/Makefile.am (-1 / +1 lines)
Lines 1-4 Link Here
1
SUBDIRS = OgreMain PlatformManagers PlugIns RenderSystems Samples Tools Tests
1
SUBDIRS = OgreMain PlatformManagers PlugIns RenderSystems @ogre_samples_dir@ Tools Tests
2
2
3
pkgconfigdir = $(libdir)/pkgconfig
3
pkgconfigdir = $(libdir)/pkgconfig
4
pkgconfig_DATA = OGRE.pc
4
pkgconfig_DATA = OGRE.pc

Return to bug 138093