| James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 1 | :: |
| 2 | :: Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | :: you may not use this file except in compliance with the License. |
| 4 | :: You may obtain a copy of the License at |
| 5 | :: |
| 6 | :: http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | :: |
| 8 | :: Unless required by applicable law or agreed to in writing, software |
| 9 | :: distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | :: See the License for the specific language governing permissions and |
| 12 | :: limitations under the License. |
| 13 | :: |
| 14 | |
| 15 | SETLOCAL EnableDelayedExpansion |
| 16 | |
| 17 | SET URLFILE=libevent-%LIBEVENT_VERSION%-stable.tar.gz |
| 18 | SET URL=https://github.com/libevent/libevent/releases/download/release-%LIBEVENT_VERSION%-stable/%URLFILE% |
| 19 | |
| James E. King III | 860a5f1 | 2018-03-06 14:23:23 -0500 | [diff] [blame] | 20 | :: Download - support running a local build or a build in appveyor |
| Mario Emmenlauer | e14ac85 | 2021-08-05 09:33:50 +0200 | [diff] [blame] | 21 | CD "%WIN3P%" || EXIT /B |
| James E. King III | 860a5f1 | 2018-03-06 14:23:23 -0500 | [diff] [blame] | 22 | IF "%APPVEYOR_BUILD_ID%" == "" ( |
| 23 | curl -L -f -o "%URLFILE%" "%URL%" |
| 24 | ) ELSE ( |
| 25 | appveyor DownloadFile "%URL%" |
| 26 | ) |
| Mario Emmenlauer | e14ac85 | 2021-08-05 09:33:50 +0200 | [diff] [blame] | 27 | 7z x "%URLFILE%" -so | 7z x -si -ttar > nul || EXIT /B |
| 28 | CD "libevent-%LIBEVENT_VERSION%-stable" || EXIT /B |
| Gregg Donovan | 62ec929 | 2026-01-29 16:51:37 -0500 | [diff] [blame] | 29 | :: libevent's nmake config ships with EVENT__HAVE_STDINT_H commented out, |
| 30 | :: but MSVC needs stdint.h for UINT32_MAX in minheap-internal.h. |
| 31 | IF EXIST "WIN32-Code\nmake\event2\event-config.h" ( |
| 32 | powershell -NoProfile -Command "(Get-Content 'WIN32-Code\nmake\event2\event-config.h') -replace '/\* #define EVENT__HAVE_STDINT_H 1 \*/', '#define EVENT__HAVE_STDINT_H 1' | Set-Content 'WIN32-Code\nmake\event2\event-config.h'" |
| 33 | ) ELSE IF EXIST "WIN32-Code\event2\event-config.h" ( |
| 34 | powershell -NoProfile -Command "(Get-Content 'WIN32-Code\event2\event-config.h') -replace '/\* #define EVENT__HAVE_STDINT_H 1 \*/', '#define EVENT__HAVE_STDINT_H 1' | Set-Content 'WIN32-Code\event2\event-config.h'" |
| 35 | ) |
| Mario Emmenlauer | e14ac85 | 2021-08-05 09:33:50 +0200 | [diff] [blame] | 36 | nmake -f Makefile.nmake static_libs || EXIT /B |
| James E. King III | 860a5f1 | 2018-03-06 14:23:23 -0500 | [diff] [blame] | 37 | |
| 38 | :: in libevent 2.0 there is no nmake subdirectory in WIN32-Code, but in 2.1 there is |
| Mario Emmenlauer | e14ac85 | 2021-08-05 09:33:50 +0200 | [diff] [blame] | 39 | mkdir lib || EXIT /B |
| 40 | move *.lib lib\ || EXIT /B |
| James E. King III | 860a5f1 | 2018-03-06 14:23:23 -0500 | [diff] [blame] | 41 | move WIN32-Code\event2\* include\event2\ || move WIN32-Code\nmake\event2\* include\event2\ || EXIT /B |
| Mario Emmenlauer | e14ac85 | 2021-08-05 09:33:50 +0200 | [diff] [blame] | 42 | move *.h include\ || EXIT /B |
| James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 43 | |
| 44 | ENDLOCAL |