Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt3
-rw-r--r--source/creator/Makefile3
-rw-r--r--source/creator/creator.c2
3 files changed, 6 insertions, 2 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 55e04783ab7..170d49fc1d8 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -210,7 +210,6 @@ IF(UNIX)
bf_editors
bf_decimation
blender_BSP
- bf_soundsystem
bf_ghost
bf_string
blender_render
@@ -271,10 +270,12 @@ IF(UNIX)
bf_quicktime
extern_binreloc
extern_glew
+ extern_libopenjpeg
bf_videotex
bf_rna
bf_dna
bf_blenfont
+ bf_soundsystem
)
FOREACH(SORTLIB ${BLENDER_SORTED_LIBS})
diff --git a/source/creator/Makefile b/source/creator/Makefile
index ea301ad80a9..fe281ad8d0e 100644
--- a/source/creator/Makefile
+++ b/source/creator/Makefile
@@ -59,6 +59,9 @@ CPPFLAGS += -I$(NAN_GLEW)/include
ifeq ($(WITH_QUICKTIME), true)
CPPFLAGS += -I$(NAN_QUICKTIME)/include -DWITH_QUICKTIME
endif
+ifeq ($(WITH_OPENJPEG), true)
+ CPPFLAGS += -DWITH_OPENJPEG
+endif
ifeq ($(WITH_BINRELOC), true)
CPPFLAGS += -I$(NANBLENDERHOME)/extern/binreloc/include -DWITH_BINRELOC
diff --git a/source/creator/creator.c b/source/creator/creator.c
index ad50e425415..69f80570334 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -751,7 +751,7 @@ int main(int argc, char **argv)
else if (!strcmp(argv[a],"CINEON")) scene->r.imtype = R_CINEON;
else if (!strcmp(argv[a],"DPX")) scene->r.imtype = R_DPX;
#if WITH_OPENJPEG
- else if (!strcmp(argv[a],"JP2")) G.scene->r.imtype = R_JP2;
+ else if (!strcmp(argv[a],"JP2")) scene->r.imtype = R_JP2;
#endif
else printf("\nError: Format from '-F' not known or not compiled in this release.\n");
}