Jump to content
The Dark Mod Forums

7318

Member
  • Posts

    167
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by 7318

  1. can't compile master branch on Linux:

      CXX      ui/modelselector/darkradiant-ModelSelector.o
    In file included from ui/modelselector/ModelSelector.cpp:2:0:
    ui/modelselector/ModelPopulator.h: In member function ‘virtual void* ui::ModelPopulator::Entry()’:
    ui/modelselector/ModelPopulator.h:87:26: error: ‘GlobalFileSystem’ was not declared in this scope
             GlobalFileSystem().forEachFile(MODELS_FOLDER,
                              ^
    Makefile:3692: recipe for target 'ui/modelselector/darkradiant-ModelSelector.o' failed
    make[2]: *** [ui/modelselector/darkradiant-ModelSelector.o] Error 1
    make[2]: Leaving directory '/usr/local/share/d3bfg/src/DarkRadiant/radiant'
    Makefile:742: recipe for target 'all-recursive' failed
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory '/usr/local/share/d3bfg/src/DarkRadiant'
    Makefile:482: recipe for target 'all' failed
    make: *** [all] Error 2
    
    
  2. I can compile it now!

     

    do you guys can use the particle editor ? whenever I enter it and try it, then it locks my DR (warning windows doesn't display texts) then the prompt form exiting DR doesn't display any text nor any button only a white window which I can't close, so I have to kill DR in order to exit it.

     

    whenever I enter the particle editor I see this "Gtk-CRITICAL" warning in the console:

    (darkradiant:11443): Gtk-CRITICAL **: IA__gtk_tree_view_set_fixed_height_mode: assertion 'gtk_tree_view_column_get_sizing (c) == GTK_TREE_VIEW_COLUMN_FIXED' failed
    
    

    which looks as the same "Gtk-CRITICAL" warning i get whenever I add a new model from the left click menu (on the 2D screen) :

    (darkradiant:11443): Gtk-CRITICAL **: IA__gtk_tree_view_set_fixed_height_mode: assertion 'gtk_tree_view_column_get_sizing (c) == GTK_TREE_VIEW_COLUMN_FIXED' failed
    
    
    
    

    which look quite similar as the one I see when pressing the "choose model..." button from the spawnarg "model" in a "func_emiter" entity:

    (darkradiant:11443): Gtk-CRITICAL **: IA__gtk_tree_view_set_fixed_height_mode: assertion 'gtk_tree_view_column_get_sizing (c) == GTK_TREE_VIEW_COLUMN_FIXED' failed
    
    (darkradiant:11443): Gtk-CRITICAL **: IA__gtk_tree_row_reference_new_proxy: assertion 'path->depth > 0' failed
    
    
  3. now I get a different compiling error:

    CXX      compiler/Surface.lo
    compiler/Surface.cpp: In member function 'bool map::Surface::rangeCheckIndexes()':
    compiler/Surface.cpp:47:36: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
       if (indices[i] < 0 || indices[i] >= vertices.size())
                                        ^
    compiler/Surface.cpp: In member function 'void map::Surface::defineEdge(int, int, int)':
    compiler/Surface.cpp:228:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
        if (silEdges[index].p2 != _numPlanes)
                               ^
    compiler/Surface.cpp: In member function 'void map::Surface::identifySilEdges(bool)':
    compiler/Surface.cpp:388:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
       if (silEdges[i].p2 == _numPlanes)
                          ^
    compiler/Surface.cpp: In member function 'void map::Surface::duplicateMirroredVertexes()':
    compiler/Surface.cpp:440:59: error: 'memset' was not declared in this scope
      memset(tverts, 0, vertices.size() * sizeof(TangentVertex));
                                                               ^
    compiler/Surface.cpp: In member function 'void map::Surface::createDupVerts()':
    compiler/Surface.cpp:529:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
       if (remap[i] != i)
                    ^
    compiler/Surface.cpp: In member function 'void map::Surface::deriveTangents(std::vector<Plane3>&)':
    compiler/Surface.cpp:964:46: error: 'memset' was not declared in this scope
      memset(used, 0, vertices.size()*sizeof(bool));
                                                  ^
    compiler/Surface.cpp:1011:48: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
       unsigned long signBit = ( *(unsigned long *)&area ) & ( 1 << 31 ); // FIXME: portability?
                                                    ^
    compiler/Surface.cpp:1021:22: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
       *(unsigned long *)&f ^= signBit;
                          ^
    compiler/Surface.cpp:1035:22: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
       *(unsigned long *)&f ^= signBit;
                          ^
    Makefile:609: recipe for target 'compiler/Surface.lo' failed
    make[3]: *** [compiler/Surface.lo] Error 1
    make[3]: Leaving directory '/usr/local/share/d3bfg/src/DarkRadiant/plugins/mapdoom3'
    Makefile:435: recipe for target 'all-recursive' failed
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory '/usr/local/share/d3bfg/src/DarkRadiant/plugins'
    Makefile:742: recipe for target 'all-recursive' failed
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory '/usr/local/share/d3bfg/src/DarkRadiant'
    Makefile:482: recipe for target 'all' failed
    make: *** [all] Error 2
    
    
  4. I can't compile the current code on codereader's github repository, I get the following error:

     CXX      darkradiant-RadiantThreadManager.o
    In file included from RadiantThreadManager.cpp:1:0:
    RadiantThreadManager.h:20:7: error: ‘vector’ in namespace ‘std’ does not name a template type
      std::vector<DetachedThreadPtr> _finishedThreads;
           ^
    RadiantThreadManager.cpp: In member function ‘void radiant::RadiantThreadManager::onThreadFinished(std::size_t)’:
    RadiantThreadManager.cpp:86:2: error: ‘_finishedThreads’ was not declared in this scope
      _finishedThreads.push_back(found->second);
      ^
    RadiantThreadManager.cpp: In member function ‘std::size_t radiant::RadiantThreadManager::getFreeThreadId()’:
    RadiantThreadManager.cpp:92:2: error: ‘_finishedThreads’ was not declared in this scope
      _finishedThreads.clear();
      ^
    Makefile:2381: recipe for target 'darkradiant-RadiantThreadManager.o' failed
    make[2]: *** [darkradiant-RadiantThreadManager.o] Error 1
    make[2]: Leaving directory '/usr/local/share/d3bfg/src/DarkRadiant/radiant'
    Makefile:742: recipe for target 'all-recursive' failed
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory '/usr/local/share/d3bfg/src/DarkRadiant'
    Makefile:482: recipe for target 'all' failed
    make: *** [all] Error 2
    
  5. compiled with debugging

     

    opening and closing DR:

     

    biel@Biel-laptop:~$ darkradiant
    ApplicationContextImpl: unable to create settings path '/home/biel/.darkradiant/'
    XMLRegistry: looking for XML files under /usr/local/share/darkradiant/
    [filters] Loaded 15 filters from registry.
    [OpenGLRenderSystem] GLSL shading IS available.
    [OpenGLRenderSystem] ARB shading IS available.
    (darkradiant:9071): Gtk-CRITICAL **: IA__gtk_window_resize: assertion 'height > 0' failed
    

     

     

    if I rescale the window of the texture mapping oiptions (the window that appear when you press "s") i can reproduce the following error:

     

    ** (darkradiant:9167): CRITICAL **: murrine_style_draw_flat_box: assertion 'height >= -1' failed
    

     

    if I click on the per-pixel rendering button i get the following debug message:

     

    ^[[renderer] Creating GLSL bump program
    [renderer] GLSL program IS valid.
    Info:
    [renderer] Creating GLSL depthfill program
    [renderer] GLSL program IS valid.
    Info:
    

     

    I wonder, does darkradiant use a GLSL version superior to 1.3? mesa drivers not superior to mesa 10.3 only have GLSL version 1.3 (i'm currently using mesa 10.5 which should have support for GLSL 3.0 )

  6. Greebo now I can compile your branch.

     

    but I still get problems with the 3D geometry (the same kind of problems I posted some screen-shots about) I'm using Ubuntu 14.10, and Intel mesa graphics, but the Darkradiant 1.8.1 had correct graphics for me, something has changed in the 3D rendering in-between 1.8.1 and 2.0 that has broken 3D rendering in my system. right now for me the most reliable way to map then is with the wire-frame.

     

    also the particle editor is unusable for me, now i can select the particle, but I can't see anything in the 3d view, and the play and stop buttons while active don't seem to activate the time counter in the 3d view.

    and also in the particle editor it looks like selecting the particles doesn't update some values right away, like the stages or the actual selected particle in the lists of particle effects, sometimes you have to scroll down and up in order or it to be correctly selected

     

    I've received error messages like these but I can't reproduce when and how I received yet:

     

    (darkradiant:2896): Gtk-CRITICAL **: IA__gtk_window_resize: assertion 'height > 0' failed
    

     

    ** (darkradiant:2981): CRITICAL **: murrine_style_draw_box_gap: assertion 'height >= -1' failed
    

  7. can't compile codereader's branch @ github under ubuntu 14.10

     

    I get the following error:

     

    (...)
     CXX	  render/darkradiant-OpenGLModule.o
     CXX	  render/darkradiant-OpenGLRenderSystem.o
    render/OpenGLRenderSystem.cpp: In member function ‘virtual ShaderPtr render::OpenGLRenderSystem::capture(const string&)’:
    render/OpenGLRenderSystem.cpp:86:9: error: ‘wxTheApp’ was not declared in this scope
    	 wxTheApp->ProcessIdle();
    	 ^
    Makefile:2838: recipe for target 'render/darkradiant-OpenGLRenderSystem.o' failed
    make[2]: *** [render/darkradiant-OpenGLRenderSystem.o] Error 1
    make[2]: Leaving directory '/usr/local/share/d3bfg/src/DarkRadiant/radiant'
    Makefile:742: recipe for target 'all-recursive' failed
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory '/usr/local/share/d3bfg/src/DarkRadiant'
    Makefile:482: recipe for target 'all' failed
    make: *** [all] Error 2
    

  8. Shadow maps solve that problem easily, that is why shadow volumes (not to talk about supporting alpha surfaces) are not used anymore on modern engines.

    the shadow volume code could be useful for other things besides shadows calculations:

    like for NPC vision, it's the perfect way to calculate the vision from someone's point of view and assert whatever he sees or doesn't.

  9. creating a particle when there are no other particles (in BFG there are no particles available) allowed me to give it a new name, save it in the file, as per usual, but then the whole particle editor window stayed "inactive" and no new particle was created, in the modfolder/particles folder DR hadn't created any new file, the only thing I could do is close the particle editor window, after that I couldn't open the particle editor no more until I closed DR and re opened it.

  10. I'm no longer having troubles with the 'esc' key! :rolleyes:

     

    but Is till get this whenever the entity panel under the 3d view has to be updated:

     

    18:19:22: Wrong type, required: wxIcon but: wxBitmap
    

     

    which renders it unusable, so I can't change any spawnarg of any entity from that panel

     

    the console also keeps still spewing the same message:

     

    _xgeWireToEvent: Unknown extension 148, this should never happen.
    

     

    and also the 3D view renders still incorrectly

  11. Can't compile the current code at: Codereader's DarkRadiant.

    @Greebo It's the same code you posted in the first post, isn't it?

     

    I get the following error:

     

    (...)
     CXX	  render/darkradiant-View.o
     CXX	  render/debug/darkradiant-SpacePartitionRenderer.o
     CXX	  ui/entitychooser/darkradiant-EntityClassChooser.o
    In file included from ui/entitychooser/EntityClassChooser.cpp:18:0:
    ../libs/debugging/ScopedDebugTimer.h:51:9: warning: ‘double {anonymous}::operator-(const timeval&, const timeval&)’ defined but not used [-Wunused-function]
     double operator-(const timeval& l, const timeval& r) {
    	 ^
     CXX	  ui/entitychooser/darkradiant-EntityClassTreePopulator.o
     CXX	  ui/prefabselector/darkradiant-PrefabPopulator.o
    ui/prefabselector/PrefabPopulator.cpp: In member function ‘virtual void* ui::PrefabPopulator::Entry()’:
    ui/prefabselector/PrefabPopulator.cpp:56:5: error: ‘FileTypePatterns’ was not declared in this scope
     FileTypePatterns patterns = GlobalFiletypes().getPatternsForType("prefab");
     ^
    ui/prefabselector/PrefabPopulator.cpp:60:10: error: ‘patterns’ was not declared in this scope
     if (!patterns.empty())
    	  ^
    Makefile:2922: recipe for target 'ui/prefabselector/darkradiant-PrefabPopulator.o' failed
    make[2]: *** [ui/prefabselector/darkradiant-PrefabPopulator.o] Error 1
    make[2]: Leaving directory '/usr/local/share/d3bfg/src/DarkRadiant/radiant'
    Makefile:742: recipe for target 'all-recursive' failed
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory '/usr/local/share/d3bfg/src/DarkRadiant'
    Makefile:482: recipe for target 'all' failed
    make: *** [all] Error 2
    

  12. I've also experienced the "esc" error!

     

    it seems to be something with the windows where you can text-search, because with the console panel open you can select with the mouse and then deselect with "esc" with no hassle, but with the entity panel or the materials panel since you seem to be able to search by typing characters, I guess "esc" cancels that search instead of deselecting. so, if you're not searching don'0t cancel search but de-select and vice-versa.

  13. compiled and worked fine for the first time but since then wheneverI try to launch it I get this:

     

    biel@Biel-laptop:~$ darkradiant
    /home/biel/.darkradiant/user.xml:1: parser error : Document is empty
    ^
    /home/biel/.darkradiant/user.xml:1: parser error : Start tag expected, '<' not found
    ^
    *** Caught unhandled unknown exception; terminating
    

     

    but THERE IS a '<' at line 1 in user.xml, in fact DR creates a user.xml file if it's missing, here it is:

     

    <?xml version="1.0"?>
    <user>
     <ui/>
     <version value="1.8.0"/>
    </user>
    

     

    and I also got the log:

     

    Started logging to /home/biel/.darkradiant/darkradiant.log
    Today is: Fri Nov  7 13:31:50 2014
    This is DarkRadiant 1.8.0 x64
    wxWidgets Version: 3.0.1
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/entity.so'
    Module registered: Doom3EntityCreator
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/uimanager.so'
    Module registered: UIManager
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/grid.so'
    Module registered: Grid
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/script.so'
    Module registered: ScriptingSystem
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/fonts.so'
    Module registered: FontManager
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/eclassmgr.so'
    Module registered: EntityClassManager
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/xmlregistry.so'
    Module registered: XMLRegistry
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/md5model.so'
    Module registered: ModelLoaderMD5MESH
    Module registered: MD5AnimationCache
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/model.so'
    Module registered: ModelLoaderMD3
    Module registered: ModelLoader3DS
    Module registered: ModelLoaderASE
    Module registered: ModelLoaderMS3D
    Module registered: ModelLoaderMDC
    Module registered: ModelLoaderMD2
    Module registered: ModelLoaderFM
    Module registered: ModelLoaderLWO
    Module registered: ModelLoaderPICOTERRAIN
    Module registered: ModelLoaderOBJ
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/commandsystem.so'
    Module registered: CommandSystem
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/image.so'
    Module registered: ImageLoaderTGA
    Module registered: ImageLoaderJPG
    Module registered: ImageLoaderPNG
    Module registered: ImageLoaderPCX
    Module registered: ImageLoaderWX
    Module registered: ImageLoaderDDS
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/particles.so'
    Module registered: ParticlesManager
    Module registered: ParticlesEditor
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/sound.so'
    Module registered: SoundManager
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/filetypes.so'
    Module registered: FileTypes
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/scenegraph.so'
    Module registered: SceneGraph
    Module registered: SceneGraphFactory
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/archivezip.so'
    Module registered: ArchivePK4
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/mapdoom3.so'
    Module registered: Doom3MapLoader
    Module registered: Quake4MapLoader
    Module registered: Doom3PrefabLoader
    Module registered: MapCompiler
    Module registered: Quake3MapLoader
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/filters.so'
    Module registered: FilterSystem
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/entitylist.so'
    Module registered: EntityList
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/shaders.so'
    Module registered: MaterialManager
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/eventmgr.so'
    Module registered: EventManager
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/vfspk3.so'
    Module registered: VirtualFileSystem
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/skins.so'
    Module registered: ModelSkinCache
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/modules/undo.so'
    Module registered: UndoSystem
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/plugins/eclasstree.so'
    Module registered: EClassTree
    ModuleLoader: Loading module '/usr/local/lib/darkradiant/plugins/wavefront.so'
    Module registered: WaveFrontExporter
    XMLRegistry::initialiseModule called
    XMLRegistry: looking for XML files under /usr/local/share/darkradiant/
    XMLRegistry: Importing XML file: /usr/local/share/darkradiant/user.xml
    XMLRegistry: Importing XML file: /usr/local/share/darkradiant/colours.xml
    XMLRegistry: Importing XML file: /usr/local/share/darkradiant/input.xml
    XMLRegistry: Importing XML file: /usr/local/share/darkradiant/menu.xml
    XMLRegistry: Importing XML file: /usr/local/share/darkradiant/commandsystem.xml
    XMLRegistry: Importing XML file: /home/biel/.darkradiant/user.xml
    XMLRegistry: Importing XML file: /home/biel/.darkradiant/input.xml
    EventManager successfully shut down.
    XMLRegistry Shutdown: 1 queries processed.
    XMLRegistry: Failed to save path /darkradiant/user/ui/filtersystem/filters
    XMLRegistry: Failed to save path /darkradiant/user/ui/colourschemes
    XMLRegistry: Failed to save path /darkradiant/user/ui/input
    XMLRegistry: Saved user to /home/biel/.darkradiant/user.xml
    Closing log file at Fri Nov  7 13:31:50 2014
    

     

    I did chown all the darkradiant folder and files to my group in case it had something to do with it, but then I saw that there is no "/darkradiant/user/" folder, at least not at "/usr/local/share/darkradiant/" nor at "/usr/local/lib/darkradiant"

  14. I've posted this in Github but let me post it here too:

     

    Ubuntu 14.10 I can't compile it at "make" stage

     

    I get the following after ./configure

     

    biel@Biel-laptop:/usr/local/share/d3bfg/src/DarkRadiant$ ./configure
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    /usr/local/share/d3bfg/src/DarkRadiant/missing: Unknown `--is-lightweight' option
    Try `/usr/local/share/d3bfg/src/DarkRadiant/missing --help' for more information
    configure: WARNING: 'missing' script is too old or missing
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking whether make supports nested variables... (cached) yes
    checking whether NLS is requested... yes
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking whether gcc understands -c and -o together... yes
    checking dependency style of gcc... gcc3
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking for ld used by GCC... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for shared library run path origin... done
    checking how to run the C preprocessor... gcc -E
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for CFPreferencesCopyAppValue... no
    checking for CFLocaleCopyCurrent... no
    checking for GNU gettext in libc... yes
    checking whether to use NLS... yes
    checking where the gettext function comes from... libc
    checking for g++... g++
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking dependency style of g++... gcc3
    checking how to print strings... printf
    checking for a sed that does not truncate output... /bin/sed
    checking for fgrep... /bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm - interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... mt
    checking if mt is a manifest tool... no
    checking for ANSI C header files... no
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking how to run the C++ preprocessor... g++ -E
    checking for ld used by g++... /usr/bin/ld -m elf_x86_64
    checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC -DPIC
    checking if g++ PIC flag -fPIC -DPIC works... yes
    checking if g++ static flag -static works... yes
    checking if g++ supports -c -o file.o... yes
    checking if g++ supports -c -o file.o... (cached) yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking dynamic linker characteristics... (cached) GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking zlib.h usability... yes
    checking zlib.h presence... yes
    checking for zlib.h... yes
    checking for inflateEnd in -lz... yes
    checking jpeglib.h usability... yes
    checking jpeglib.h presence... yes
    checking for jpeglib.h... yes
    checking for jpeg_start_compress in -ljpeg... yes
    checking for wx-config... /usr/bin/wx-config
    checking for wxWidgets version >= 3.0.0... yes (version 3.0.1)
    checking for wxWidgets static library... no
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for XML... yes
    checking for LIBSIGC... yes
    checking for PNG... yes
    checking for FTGL... yes
    checking GL/glew.h usability... yes
    checking GL/glew.h presence... yes
    checking for GL/glew.h... yes
    checking for main in -lGLEW... yes
    checking for main in -lGL... yes
    checking for gluBuild2DMipmaps in -lGLU... yes
    checking for Boost headers version >= 1.46.1... yes
    checking for Boost's header version... 1_55
    checking boost/bind.hpp usability... yes
    checking boost/bind.hpp presence... yes
    checking for boost/bind.hpp... yes
    checking boost/foreach.hpp usability... yes
    checking boost/foreach.hpp presence... yes
    checking for boost/foreach.hpp... yes
    checking boost/format.hpp usability... yes
    checking boost/format.hpp presence... yes
    checking for boost/format.hpp... yes
    checking boost/function.hpp usability... yes
    checking boost/function.hpp presence... yes
    checking for boost/function.hpp... yes
    checking boost/scoped_ptr.hpp usability... yes
    checking boost/scoped_ptr.hpp presence... yes
    checking for boost/scoped_ptr.hpp... yes
    checking boost/shared_ptr.hpp usability... yes
    checking boost/shared_ptr.hpp presence... yes
    checking for boost/shared_ptr.hpp... yes
    checking boost/tokenizer.hpp usability... yes
    checking boost/tokenizer.hpp presence... yes
    checking for boost/tokenizer.hpp... yes
    checking for the toolset name used by Boost for g++... configure: WARNING: could not figure out which toolset name to use for g++
    checking boost/regex.hpp usability... yes
    checking boost/regex.hpp presence... yes
    checking for boost/regex.hpp... yes
    checking for the Boost regex library... yes
    checking boost/system/error_code.hpp usability... yes
    checking boost/system/error_code.hpp presence... yes
    checking for boost/system/error_code.hpp... yes
    checking for the Boost system library... yes
    checking boost/filesystem/path.hpp usability... yes
    checking boost/filesystem/path.hpp presence... yes
    checking for boost/filesystem/path.hpp... yes
    checking for the Boost filesystem library... yes
    checking for boost/system/error_code.hpp... (cached) yes
    checking for the Boost system library... (cached) yes
    checking boost/test/unit_test.hpp usability... yes
    checking boost/test/unit_test.hpp presence... yes
    checking for boost/test/unit_test.hpp... yes
    checking for the Boost unit_test_framework library... yes
    checking for python2-config... python2-config
    checking boost/python.hpp usability... yes
    checking boost/python.hpp presence... yes
    checking for boost/python.hpp... yes
    checking for the Boost python library... yes
    checking for main in -ldl... yes
    checking boost/serialization/access.hpp usability... yes
    checking boost/serialization/access.hpp presence... yes
    checking for boost/serialization/access.hpp... yes
    checking AL/alut.h usability... yes
    checking AL/alut.h presence... yes
    checking for AL/alut.h... yes
    checking for ov_clear in -lvorbisfile... yes
    checking for alGetError in -lopenal... yes
    checking for main in -lalut... yes
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating install/darkradiant.desktop
    config.status: creating install/i18n//Makefile.in
    config.status: creating Makefile
    config.status: creating radiant/Makefile
    config.status: creating install/i18n/Makefile.in
    config.status: creating libs/Makefile
    config.status: creating libs/ddslib/Makefile
    config.status: creating libs/wxutil/Makefile
    config.status: creating libs/math/Makefile
    config.status: creating libs/picomodel/Makefile
    config.status: creating libs/scene/Makefile
    config.status: creating libs/xmlutil/Makefile
    config.status: creating plugins/Makefile
    config.status: creating plugins/archivezip/Makefile
    config.status: creating plugins/commandsystem/Makefile
    config.status: creating plugins/eclassmgr/Makefile
    config.status: creating plugins/eclasstree/Makefile
    config.status: creating plugins/entity/Makefile
    config.status: creating plugins/entitylist/Makefile
    config.status: creating plugins/eventmanager/Makefile
    config.status: creating plugins/filetypes/Makefile
    config.status: creating plugins/filters/Makefile
    config.status: creating plugins/fonts/Makefile
    config.status: creating plugins/grid/Makefile
    config.status: creating plugins/image/Makefile
    config.status: creating plugins/mapdoom3/Makefile
    config.status: creating plugins/md5model/Makefile
    config.status: creating plugins/model/Makefile
    config.status: creating plugins/particles/Makefile
    config.status: creating plugins/scenegraph/Makefile
    config.status: creating plugins/script/Makefile
    config.status: creating plugins/shaders/Makefile
    config.status: creating plugins/skins/Makefile
    config.status: creating plugins/sound/Makefile
    config.status: creating plugins/uimanager/Makefile
    config.status: creating plugins/undo/Makefile
    config.status: creating plugins/vfspk3/Makefile
    config.status: creating plugins/wavefront/Makefile
    config.status: creating plugins/xmlregistry/Makefile
    config.status: creating plugins/dm.stimresponse/Makefile
    config.status: creating plugins/dm.objectives/Makefile
    config.status: creating plugins/dm.difficulty/Makefile
    config.status: creating plugins/dm.gui/Makefile
    config.status: creating plugins/dm.editing/Makefile
    config.status: creating plugins/dm.conversation/Makefile
    config.status: creating config.h
    config.status: config.h is unchanged
    config.status: executing po-directories commands
    config.status: creating install/i18n//POTFILES
    config.status: creating install/i18n//Makefile
    config.status: creating install/i18n/POTFILES
    config.status: creating install/i18n/Makefile
    config.status: executing depfiles commands
    config.status: executing libtool commands
    Configuration options:
    Installation prefix: /usr/local
    Sound:			   yes
    Darkmod plugins:	 no
    Python scripting:	yes
    

     

    then at "make":

     

    iel@Biel-laptop:/usr/local/share/d3bfg/src/DarkRadiant$ make
    cd . && automake-1.14 --foreign
    configure.ac:8: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, and its use is discouraged.
    configure.ac:8: You should use the Autoconf-provided 'AC_PROG_MKDIR_P' macro instead,
    configure.ac:8: and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files.
    configure.ac:8: error: required file './compile' not found
    configure.ac:8:   'automake --add-missing' can install 'compile'
    parallel-tests: error: required file './test-driver' not found
    parallel-tests:   'automake --add-missing' can install 'test-driver'
    Makefile:488: recipe for target 'Makefile.in' failed
    make: *** [Makefile.in] Error 1
    

     

    any idea what might be failing?

×
×
  • Create New...