mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 16:15:39 +00:00
792093dc32
* bootstrap-generic: New script, handles bootstrapping stuff generically and saves bootstrap settings so we can regenerate configure.in from configure.in.in. * bootstrap * bootstrap-2.4 * bootstrap-for-the-insane: Modify to use bootstrap-generic * Makefile.am (configure.in): Add a rule to run bootstrap.status to regenerate configure.in if configure.in.in changes. svn path=/trunk/gtk-sharp/; revision=48412
14 lines
348 B
Bash
Executable file
14 lines
348 B
Bash
Executable file
#!/bin/sh
|
|
# Run this to set configure.in up for an API version.
|
|
|
|
GTK_SHARP_VERSION=2.7.0.99
|
|
ASSEMBLY_VERSION=2.8.0.0
|
|
GTK_REQUIRED_VERSION=2.7.0
|
|
GNOME_REQUIRED_VERSION=2.10.0
|
|
VERSIONCSDEFINES="-define:GTK_SHARP_2_6 -define:GTK_SHARP_2_8"
|
|
VERSIONCFLAGS="-DGTK_SHARP_2_6 -DGTK_SHARP_2_8"
|
|
GTK_API_TAG=2.8
|
|
GNOME_API_TAG=2.10
|
|
|
|
. ./bootstrap-generic "$@"
|