forked from vitrine/wmaker
This starts to establish the structure for an in-place rewrite of WINGs. An actual redesign of WINGs may follow, but for now there are no plans to alter the structure of WINGs substantially.
23 lines
650 B
Bash
Executable File
23 lines
650 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This file provides ad-hoc fixups to the WINGsP provided by bindgen:
|
|
# - Import Xlib symbols so that everything compiles.
|
|
# - The opaque type names _XftDraw and _XftFont are replaced with void*.
|
|
# - Pango bindings aren't yet pulled into our Rust code, so PangoLayout is also demoted to void*.
|
|
|
|
set -e
|
|
|
|
if [ "x$1" = "x" ]; then
|
|
echo "Usage: $(basename $0) <file to patch>"
|
|
exit 1
|
|
fi
|
|
|
|
FILE="$1"
|
|
|
|
exec sed -i -r \
|
|
-e "1s/^/use x11::xlib::*;\nuse crate::font::ffi::WMFont;\n\n/" \
|
|
-e "s/_XftDraw/::std::ffi::c_void/g" \
|
|
-e "s/_XftFont/::std::ffi::c_void/g" \
|
|
-e "s/PangoLayout/::std::ffi::c_void/g" \
|
|
"$1"
|