mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 19:05: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
304 B
Bash
Executable file
14 lines
304 B
Bash
Executable file
#!/bin/sh
|
|
# Run this to set configure.in up for an API version.
|
|
|
|
GTK_SHARP_VERSION=2.5.90
|
|
ASSEMBLY_VERSION=2.6.0.0
|
|
GTK_REQUIRED_VERSION=2.6.0
|
|
GNOME_REQUIRED_VERSION=2.10.0
|
|
VERSIONCSDEFINES=-define:GTK_SHARP_2_6
|
|
VERSIONCFLAGS=-DGTK_SHARP_2_6
|
|
GTK_API_TAG=2.6
|
|
GNOME_API_TAG=2.10
|
|
|
|
. ./bootstrap-generic "$@"
|