diff options
| author | SND\dario86_cp <SND\dario86_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2012-02-26 15:51:12 +0000 |
|---|---|---|
| committer | SND\dario86_cp <SND\dario86_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2012-02-26 15:51:12 +0000 |
| commit | b856e43a18616250a52600825b293f57ece725b5 (patch) | |
| tree | eb5a0be8ad793a29e8c1f8b7a6117b2aa9a335e3 | |
| parent | 15f1bd53389bcad6da36439ee0a1a1383f51a085 (diff) | |
| download | pcsxr-b856e43a18616250a52600825b293f57ece725b5.tar.gz | |
GXVideo graphics plugin is buggy and unmantained - disabled by default.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@75519 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rw-r--r-- | Makefile.am | 4 | ||||
| -rw-r--r-- | configure.ac | 12 |
2 files changed, 14 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 3a7bb981..17565441 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,7 +2,9 @@ SUBDIRS = data doc po libpcsxcore gui pixmaps SUBDIRS += plugins/dfinput plugins/dfsound SUBDIRS += plugins/dfxvideo plugins/dfcdrom plugins/dfnet -SUBDIRS += plugins/bladesio1 plugins/gxvideo +SUBDIRS += plugins/bladesio1 + +SUBDIRS += $(GXVIDEO) SUBDIRS += $(PEOPSXGL) diff --git a/configure.ac b/configure.ac index 6df9af22..bb5c1c53 100644 --- a/configure.ac +++ b/configure.ac @@ -44,7 +44,6 @@ gui/Makefile plugins/dfinput/Makefile plugins/dfsound/Makefile plugins/dfxvideo/Makefile -plugins/gxvideo/Makefile plugins/dfcdrom/Makefile plugins/dfnet/Makefile plugins/bladesio1/Makefile @@ -147,6 +146,17 @@ if test "$BUILD_OPENGL" = "yes"; then AC_CONFIG_FILES([plugins/peopsxgl/Makefile]) fi +AC_ARG_ENABLE(gxvideo, [ --enable-gxvideo build gxvideo plugin (default=no)], +[ BUILD_GXVIDEO="$enableval" ],[ BUILD_GXVIDEO="no" ]) + +GXVIDEO="" + +if test "$BUILD_GXVIDEO" = "yes"; then + GXVIDEO="plugins/gxvideo" + AC_SUBST(GXVIDEO) + AC_CONFIG_FILES([plugins/gxvideo/Makefile]) +fi + AM_CONDITIONAL(X86_NASM, false) if expr x"$build_cpu" : 'xi.86' > /dev/null; then |
