0a48773f8c
Update contrib/expat by merging from the vendor branch. Update expat_config.h manually, using make -C /usr/ports/textproc/expat2 configure as a baseline. MFC after: 1 month Relnotes: yes Security: yes; see contrib/expat/Changes since 2.2.0 Sponsored by: Dell EMC Isilon
13 lines
181 B
Bash
13 lines
181 B
Bash
#! /usr/bin/env bash
|
|
# Copyright (C) 2017 Expat development team
|
|
# Licensed under the MIT license
|
|
|
|
case "@host@" in
|
|
*-mingw*)
|
|
exec wine "$@"
|
|
;;
|
|
*)
|
|
exec "$@"
|
|
;;
|
|
esac
|