2005-07-28 21:24:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Run this to set configure.in up for an API version.
|
|
|
|
|
2005-08-23 16:50:44 +00:00
|
|
|
echo "**********************************************************************"
|
|
|
|
echo "This bootstrap is totally untested and unsupported."
|
|
|
|
echo "Use at your own risk. Don't expect any sort of timely bugfixes."
|
|
|
|
echo "Don't even expect it to compile."
|
|
|
|
echo "You have acknowledged your insanity by executing this script."
|
|
|
|
echo "Seek psychiatric help..."
|
|
|
|
echo "**********************************************************************"
|
|
|
|
|
2005-07-28 21:24:55 +00:00
|
|
|
GTK_SHARP_VERSION=2.7.0.99
|
|
|
|
ASSEMBLY_VERSION=2.8.0.0
|
2005-09-22 04:26:52 +00:00
|
|
|
POLICY_VERSIONS="2.4 2.6"
|
2005-08-16 06:08:28 +00:00
|
|
|
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 "$@"
|