This Trac instance is not used for development anymore!

We migrated our development workflow to git and Gitea.
To test the future redirection, replace trac by ariadne in the page URL.

Changeset 9989 for ps


Ignore:
Timestamp:
08/11/11 01:15:40 (13 years ago)
Author:
ben
Message:

Removes Devil. Fixes #666.
Adds no_delayload to OpenAL, which has been causing startup problems.

Location:
ps/trunk
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • ps/trunk/build/premake/extern_libs.lua

    r9852 r9989  
    9494        no_delayload = 1
    9595    },
    96     devil = {
    97         unix_names = { "IL", "ILU" },
    98     },
    9996    dl = {
    10097        win_names  = { },
     
    166163        osx_frameworks = { "OpenAL" },
    167164        dbg_suffix = "",
     165        no_delayload = 1, -- delayload seems to cause errors on startup
    168166    },
    169167    opengl = {
  • ps/trunk/build/premake/extern_libs4.lua

    r9852 r9989  
    254254        end,
    255255    },
    256     devil = {
    257         compile_settings = function()
    258             if os.is("windows") then
    259                 add_default_include_paths("devil")
    260             end
    261         end,
    262         link_settings = function()
    263             -- On Windows, it uses #pragma comment(lib ...) to link the library,
    264             -- so we only need to include the library-search-path
    265             if os.is("windows") then
    266                 add_default_lib_paths("devil")
    267             end
    268             add_default_links({
    269                 unix_names = { "IL", "ILU" },
    270             })
    271         end,
    272     },
    273256    enet = {
    274257        compile_settings = function()
     
    438421                osx_frameworks = { "OpenAL" },
    439422                dbg_suffix = "",
     423                no_delayload = 1, -- delayload seems to cause errors on startup
    440424            })
    441425        end,
  • ps/trunk/build/premake/premake.lua

    r9987 r9989  
    848848        "boost",
    849849        "comsuppw",
    850         "devil",
    851850        --"ffmpeg", -- disabled for now because it causes too many build difficulties
    852851        "libxml2",
     
    873872        },{ -- include
    874873        },{ -- extern_libs
    875             "devil",
    876874            "xerces",
    877875            "zlib"
  • ps/trunk/build/premake/premake4.lua

    r9987 r9989  
    815815        "boost",
    816816        "comsuppw",
    817         "devil",
    818817        --"ffmpeg", -- disabled for now because it causes too many build difficulties
    819818        "libxml2",
     
    841840        },{ -- include
    842841        },{ -- extern_libs
    843             "devil",
    844842            "xerces",
    845843            "zlib"
Note: See TracChangeset for help on using the changeset viewer.