Look up prefix at run-time on Win32, assuming the standard directory

2005-12-07  Tor Lillqvist  <tml@novell.com>

	* glib-gettextize.in: Look up prefix at run-time on Win32,
	assuming the standard directory structure with glib-gettextize in
	$prefix/bin.
This commit is contained in:
Tor Lillqvist 2005-12-07 03:57:14 +00:00 committed by Tor Lillqvist
parent d3388eb4e8
commit d63b58e8c5
4 changed files with 25 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-12-07 Tor Lillqvist <tml@novell.com>
* glib-gettextize.in: Look up prefix at run-time on Win32,
assuming the standard directory structure with glib-gettextize in
$prefix/bin.
2005-12-06 Matthias Clasen <mclasen@redhat.com>
* glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since

View File

@ -1,3 +1,9 @@
2005-12-07 Tor Lillqvist <tml@novell.com>
* glib-gettextize.in: Look up prefix at run-time on Win32,
assuming the standard directory structure with glib-gettextize in
$prefix/bin.
2005-12-06 Matthias Clasen <mclasen@redhat.com>
* glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since

View File

@ -1,3 +1,9 @@
2005-12-07 Tor Lillqvist <tml@novell.com>
* glib-gettextize.in: Look up prefix at run-time on Win32,
assuming the standard directory structure with glib-gettextize in
$prefix/bin.
2005-12-06 Matthias Clasen <mclasen@redhat.com>
* glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since

View File

@ -43,7 +43,13 @@ try_ln_s=:
# Directory where the sources are stored.
prefix=@prefix@
gettext_dir=@prefix@/share/glib-2.0/gettext
case `uname` in
MINGW32*)
prefix="`dirname $0`/.."
;;
esac
gettext_dir=$prefix/share/glib-2.0/gettext
while test $# -gt 0; do
case "$1" in