Billy O'Neal fc722d9187
[sentry-native] Remove vcpkg_fail_port_install. (#22765)
* [sentry-native] Remove vcpkg_fail_port_install.

vcpkg.json and portfile.cmake don't agree, but given that vcpkg.json is more restrictive than portfile.cmake, I just deleted the call.

vcpkg.json: !(arm | (arm64 & !osx) | uwp)
portfile.cmake: osx | !(arm32 | arm64 | uwp)

Putting `!(arm | (arm64 & !osx) | uwp)` into DNF:
```
!(arm | (arm64 & !osx) | uwp)                             given
!arm & !(arm64 & !osx) & !uwp                             demorgan
!arm & (!arm64 | osx) & !uwp                              demorgan
(!arm & !uwp & !arm64) | (!arm & !uwp & osx)              distribute ands over ors
(!arm32 & !arm64 & !uwp) | (!arm32 & !arm64 & !uwp & osx) definition of arm
(!arm32 & !arm64 & !uwp) | (!arm32 & !arm64 & osx)        osx implies uwp
```

Putting `osx | !(arm32 | arm64 | uwp)` into DNF:
```
osx | !(arm32 | arm64 | uwp)                     given
osx | (!arm32 & !arm64 & !uwp)                   demorgan
```

(at which point one of the conjunctions is identical and the other is just more conditions on osx)

In support of https://github.com/microsoft/vcpkg/pull/21502

* DNF

* add license

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-24 15:14:39 -08:00
..
2022-01-04 19:48:02 -08:00
2021-10-21 22:36:39 -07:00
2021-09-13 20:03:28 -07:00
2021-04-01 10:44:04 -07:00
2022-01-24 15:08:18 -08:00
2021-09-27 21:01:08 -07:00
2021-11-05 13:03:13 -07:00
2021-10-06 12:50:25 -07:00
2021-11-04 12:59:26 -07:00
2021-11-29 16:59:50 -08:00
2021-06-29 09:13:44 -07:00
2021-09-16 10:34:09 -07:00
2021-07-14 12:46:05 -07:00
2021-07-22 22:13:18 -07:00
2021-04-29 13:56:26 -07:00
2021-07-14 12:46:05 -07:00
2022-01-06 13:35:56 -08:00
2021-09-09 01:24:04 -07:00
2021-09-24 10:47:08 -07:00
2021-08-30 10:20:48 -07:00
2021-12-21 23:12:49 -05:00
2021-11-05 16:08:58 -07:00
2021-11-08 16:09:11 -08:00
2021-09-09 01:24:04 -07:00
2021-09-09 01:24:04 -07:00