Skip to content

Commit

Permalink
Release 17.3.5.501-1
Browse files Browse the repository at this point in the history
Build script: Allow distribution creation without building Mesa if we have binaries from a past build.
  • Loading branch information
pal1000 committed Feb 20, 2018
1 parent ad1a6ba commit 18f6504
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions buildscript/build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@
@if NOT EXIST %LLVM% (
@echo Could not find LLVM, aborting mesa build.
@echo.
@GOTO exit
@GOTO distcreate
)
@set /p buildmesa=Begin mesa build. Proceed (y/n):
@if /i NOT "%buildmesa%"=="y" GOTO exit
@if /i NOT "%buildmesa%"=="y" GOTO distcreate
@echo.
@cd %mesa%\mesa
@set swrdrv=n
Expand Down Expand Up @@ -162,6 +162,7 @@
@echo.

:distcreate
@if NOT EXIST %mesa%\mesa\build\windows-%longabi% GOTO exit
@set /p dist=Create or update Mesa3D distribution package (y/n):
@echo.
@if /I NOT "%dist%"=="y" GOTO exit
Expand Down
2 changes: 1 addition & 1 deletion mesa3d.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Mesa3D software rendering drivers for Windows"
#define MyAppVersion "17.3.4.501-1"
#define MyAppVersion "17.3.5.501-1"
#define MyAppPublisher "Pal100x"
#define MyAppURL "https://github.com/pal1000/mesa-dist-win"
#define MyAppExeName "mesa-{#MyAppVersion}-setup.exe"
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- [Manual OpenGL context configuration](#manual-opengl-context-configuration)

# Downloads
Mesa 17.3.4 builds are now available in [releases section](https://github.com/pal1000/mesa-dist-win/releases)
Mesa 17.3.5 builds are now available in [releases section](https://github.com/pal1000/mesa-dist-win/releases)

# Package contents
The following Mesa3D drivers are shipped in each release:
Expand Down

0 comments on commit 18f6504

Please sign in to comment.