3 SET CONFIG_H=..\config.h
4 SET EGLIB_CONFIG_H=..\eglib\config.h
5 SET CYG_CONFIG_H=..\cygconfig.h
6 SET EGLIB_CYG_CONFIG_H=..\eglib\cygconfig.h
7 SET WIN_CONFIG_H=..\winconfig.h
8 SET EGLIB_WIN_CONFIG_H=..\eglib\winconfig.h
9 SET CONFIGURE_AC=..\configure.ac
10 SET VERSION_H=..\mono\mini\version.h
13 ECHO Setting up Mono configuration headers...
15 REM Backup existing config.h into cygconfig.h if its not already replaced.
16 %windir%\system32\WindowsPowerShell\v1.0\powershell.exe -executionpolicy bypass -NonInteractive -File backup-config-files.ps1 %CONFIG_H% %CYG_CONFIG_H% 2>&1
17 %windir%\system32\WindowsPowerShell\v1.0\powershell.exe -executionpolicy bypass -NonInteractive -File backup-config-files.ps1 %EGLIB_CONFIG_H% %EGLIB_CYG_CONFIG_H% 2>&1
19 %windir%\system32\WindowsPowerShell\v1.0\powershell.exe -executionpolicy bypass -NonInteractive -File compare-config-files.ps1 %WIN_CONFIG_H% %CONFIG_H% %CONFIGURE_AC% 2>&1
21 IF NOT %ERRORLEVEL% == 0 (
22 ECHO copy %WIN_CONFIG_H% %CONFIG_H%
23 copy %WIN_CONFIG_H% %CONFIG_H%
24 %windir%\system32\WindowsPowerShell\v1.0\powershell.exe -NonInteractive -Command "(Get-Content %CONFIG_H%) -replace '#MONO_VERSION#', (Select-String -path %CONFIGURE_AC% -pattern 'AC_INIT\(mono, \[(.*)\]').Matches[0].Groups[1].Value | Set-Content %CONFIG_H%" 2>&1
27 %windir%\system32\WindowsPowerShell\v1.0\powershell.exe -executionpolicy bypass -NonInteractive -File compare-config-files.ps1 %EGLIB_WIN_CONFIG_H% %EGLIB_CONFIG_H% 2>&1
29 IF NOT %ERRORLEVEL% == 0 (
30 ECHO copy %EGLIB_WIN_CONFIG_H% %EGLIB_CONFIG_H%
31 copy %EGLIB_WIN_CONFIG_H% %EGLIB_CONFIG_H%
34 SET VERSION_CONTENT="#define FULL_VERSION \"Visual Studio built mono\""
35 %windir%\system32\WindowsPowerShell\v1.0\powershell.exe -executionpolicy bypass -NonInteractive -File compare-config-content.ps1 %VERSION_CONTENT% %VERSION_H% 2>&1
38 IF NOT %ERRORLEVEL% == 0 (
39 ECHO Configure %VERSION_H%
40 ECHO #define FULL_VERSION "Visual Studio built mono"> %VERSION_H%
43 ECHO Successfully setup Mono configuration headers.