Page 1 of 1

Latest GZDoom Build (r1229) package issues

Posted: Thu Jul 14, 2011 4:00
by Blue Shadow
The latest GZDoom build (r1229) package at DRD Team contains fmod.dll (Dated 5/24/2006) instead of fmodex.dll (Dated 10/22/2009), and doesn't include brightmaps.pk3 nor lights.pk3.

Note: If this is in the wrong place, I apologize. I didn't know where to put it.

Re: Latest GZDoom Build (r1229) package issues

Posted: Fri Jul 15, 2011 14:57
by Quietman
I can't get it to compile on Ubuntu 11.04 either.

Code: Select all

quietman@U-VirtualBox:~/Sources/gzdoom/Release$ make
[  3%] Built target lzma
[  3%] Built target lemon
[  4%] Built target re2c
[  4%] Built target updaterevision
[  5%] Built target zipdir
[ 14%] Built target gme
[ 27%] Built target dumb
[ 27%] Built target arithchk
[ 28%] Built target qnan
[ 35%] Built target gdtoa
[ 35%] Built target pk3
[ 35%] Built target brightmaps_pk3
[ 35%] Built target lights_pk3
src/svnrevision_gz.h is up to date at revision 1229.
[ 35%] Built target revision_check
[ 35%] Building CXX object src/CMakeFiles/zdoom.dir/sdl/hardware.o
In file included from /home/quietman/Sources/gzdoom/trunk/src/sdl/sdlglvideo.h:7:0,
                 from /home/quietman/Sources/gzdoom/trunk/src/sdl/hardware.cpp:48:
/home/quietman/Sources/gzdoom/trunk/src/./gl/system/gl_system.h:83:22: fatal error: platform.h: No such file or directory
compilation terminated.
make[2]: *** [src/CMakeFiles/zdoom.dir/sdl/hardware.o] Error 1
make[1]: *** [src/CMakeFiles/zdoom.dir/all] Error 2
make: *** [all] Error 2

Re: Latest GZDoom Build (r1229) package issues

Posted: Fri Jul 15, 2011 20:49
by Gez
Blue Shadow wrote:The latest GZDoom build (r1229) package at DRD Team contains fmod.dll (Dated 5/24/2006) instead of fmodex.dll (Dated 10/22/2009), and doesn't include brightmaps.pk3 nor lights.pk3.
Okay, but it's not terribly important since you can just use the fmodex, brightmaps and lights from a previous build.

Re: Latest GZDoom Build (r1229) package issues

Posted: Fri Jul 15, 2011 22:54
by Edward-san
Quietman wrote:I can't get it to compile on Ubuntu 11.04 either.

Code: Select all

quietman@U-VirtualBox:~/Sources/gzdoom/Release$ make
[  3%] Built target lzma
[  3%] Built target lemon
[  4%] Built target re2c
[  4%] Built target updaterevision
[  5%] Built target zipdir
[ 14%] Built target gme
[ 27%] Built target dumb
[ 27%] Built target arithchk
[ 28%] Built target qnan
[ 35%] Built target gdtoa
[ 35%] Built target pk3
[ 35%] Built target brightmaps_pk3
[ 35%] Built target lights_pk3
src/svnrevision_gz.h is up to date at revision 1229.
[ 35%] Built target revision_check
[ 35%] Building CXX object src/CMakeFiles/zdoom.dir/sdl/hardware.o
In file included from /home/quietman/Sources/gzdoom/trunk/src/sdl/sdlglvideo.h:7:0,
                 from /home/quietman/Sources/gzdoom/trunk/src/sdl/hardware.cpp:48:
/home/quietman/Sources/gzdoom/trunk/src/./gl/system/gl_system.h:83:22: fatal error: platform.h: No such file or directory
compilation terminated.
make[2]: *** [src/CMakeFiles/zdoom.dir/sdl/hardware.o] Error 1
make[1]: *** [src/CMakeFiles/zdoom.dir/all] Error 2
make: *** [all] Error 2
Well, found the problem: in revision 1225 graf accidentally removed the entry "Linux" (in the definition of the include directories) in src/CMakeLists.txt :

Code: Select all

Index: src/CMakeLists.txt
===================================================================
--- src/CMakeLists.txt	(revision 1224)
+++ src/CMakeLists.txt	(revision 1225)
@@ -740,6 +740,8 @@
 	p_xlat.cpp
 	parsecontext.cpp
 	po_man.cpp
+	r_swrenderer.cpp
+	r_utility.cpp
 	r_3dfloors.cpp
 	r_bsp.cpp
 	r_draw.cpp
@@ -850,7 +852,6 @@
 	gl/textures/gl_material.cpp
 	gl/textures/gl_hirestex.cpp
 	gl/textures/gl_bitmap.cpp
-	gl/textures/gl_cameratexture.cpp
 	gl/textures/gl_translate.cpp
 	gl/textures/gl_hqresize.cpp
 	gl/textures/gl_skyboxtexture.cpp
@@ -995,8 +996,6 @@
 	g_raven
 	g_strife
 	g_shared
-	fragglescript
-	Linux
 	oplsynth
 	sound
 	textures

Re: Latest GZDoom Build (r1229) package issues

Posted: Mon Aug 01, 2011 11:56
by crazymykl
Bump because as of r1231 this issue persists, trivial as the fix is.

Re: Latest GZDoom Build (r1229) package issues

Posted: Mon Aug 01, 2011 12:55
by Gez
1232 should work then.

Re: Latest GZDoom Build (r1229) package issues

Posted: Mon Aug 01, 2011 14:12
by Edward-san
Sorry, Gez. I forgot to link you to the bugs report, which says it isn't sufficient:

Code: Select all

/home/edward-san/zdoom/gzdoom/trunk/src/sdl/hardware.cpp: In function ‘void I_DeleteRenderer()’:
/home/edward-san/zdoom/gzdoom/trunk/src/sdl/hardware.cpp:121:6: error: ‘Renderer’ was not declared in this scope
/home/edward-san/zdoom/gzdoom/trunk/src/sdl/hardware.cpp:121:31: error: type ‘<type error>’ argument given to ‘delete’, expected pointer
/home/edward-san/zdoom/gzdoom/trunk/src/sdl/hardware.cpp: In function ‘void I_CreateRenderer()’:
/home/edward-san/zdoom/gzdoom/trunk/src/sdl/hardware.cpp:127:6: error: ‘Renderer’ was not declared in this scope
/home/edward-san/zdoom/gzdoom/trunk/src/sdl/hardware.cpp:130:23: error: expected type-specifier before ‘FSoftwareRenderer’
/home/edward-san/zdoom/gzdoom/trunk/src/sdl/hardware.cpp:130:23: error: expected ‘;’ before ‘FSoftwareRenderer’
make[2]: *** [src/CMakeFiles/zdoom.dir/sdl/hardware.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[1]: *** [src/CMakeFiles/zdoom.dir/all] Error 2
make: *** [all] Error 2

Re: Latest GZDoom Build (r1229) package issues

Posted: Tue Aug 23, 2011 16:19
by Quietman
svn r1248 still no go.

Code: Select all

[  3%] Built target lzma
[  3%] Built target lemon
[  4%] Built target re2c
[  4%] Built target updaterevision
[  5%] Built target zipdir
[ 14%] Built target gme
[ 27%] Built target dumb
[ 27%] Built target arithchk
[ 28%] Built target qnan
[ 35%] Built target gdtoa
[ 35%] Built target pk3
[ 35%] Built target brightmaps_pk3
[ 35%] Built target lights_pk3
src/svnrevision_gz.h is up to date at revision 1248.
[ 35%] Built target revision_check
[ 35%] Building C object src/CMakeFiles/zdoom.dir/sdl/crashcatcher.o
/home/quietman/Sources/gzdoom/trunk/src/sdl/crashcatcher.c:17:7: warning: extra tokens at end of #else directive
/home/quietman/Sources/gzdoom/trunk/src/sdl/crashcatcher.c:20:2: error: #endif without #if
/home/quietman/Sources/gzdoom/trunk/src/sdl/crashcatcher.c: In function ‘cc_install_handlers’:
/home/quietman/Sources/gzdoom/trunk/src/sdl/crashcatcher.c:400:9: warning: ignoring return value of ‘getcwd’, declared with attribute warn_unused_result
/home/quietman/Sources/gzdoom/trunk/src/sdl/crashcatcher.c: In function ‘crash_handler’:
/home/quietman/Sources/gzdoom/trunk/src/sdl/crashcatcher.c:380:9: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result
/home/quietman/Sources/gzdoom/trunk/src/sdl/crashcatcher.c: In function ‘sys_info’:
/home/quietman/Sources/gzdoom/trunk/src/sdl/crashcatcher.c:169:8: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result
/home/quietman/Sources/gzdoom/trunk/src/sdl/crashcatcher.c: In function ‘gdb_info’:
/home/quietman/Sources/gzdoom/trunk/src/sdl/crashcatcher.c:149:9: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result
make[2]: *** [src/CMakeFiles/zdoom.dir/sdl/crashcatcher.o] Error 1
make[1]: *** [src/CMakeFiles/zdoom.dir/all] Error 2
make: *** [all] Error 2