https://github.com/videolan/vlc
Revision 797db11c29af7a4805353adf6c74d8b5c1439b68 authored by Steve Lhomme on 21 June 2022, 13:50:55 UTC, committed by Felix Paul Kühne on 28 June 2022, 19:16:44 UTC
`ssize_t` doesn't exist in MSVC and is not used in included headers on 4.0.
1 parent 214a24c
Raw File
Tip revision: 797db11c29af7a4805353adf6c74d8b5c1439b68 authored by Steve Lhomme on 21 June 2022, 13:50:55 UTC
doc: libvlc: fix MSVC build
Tip revision: 797db11
make-alias
#! /bin/sh
# Interface alias build script for VLC
# Copyright © 2007 Rémi Denis-Courmont.

OUT="$1"
IFACE="$2"

cat > "$OUT.tmp" << EOF
#! /bin/sh
exec $bindir/`echo "$program_prefix"vlc"$program_suffix" | sed -e "$transform"` -I "$IFACE" "\$@"
EOF

chmod +x "$OUT.tmp"
mv -f -- "$OUT.tmp" "$OUT"
back to top