mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-14 05:16:18 +01:00
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:
parent
d3388eb4e8
commit
d63b58e8c5
@ -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>
|
2005-12-06 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since
|
* glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since
|
||||||
|
@ -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>
|
2005-12-06 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since
|
* glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since
|
||||||
|
@ -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>
|
2005-12-06 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since
|
* glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since
|
||||||
|
@ -43,7 +43,13 @@ try_ln_s=:
|
|||||||
|
|
||||||
# Directory where the sources are stored.
|
# Directory where the sources are stored.
|
||||||
prefix=@prefix@
|
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
|
while test $# -gt 0; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
|
Loading…
Reference in New Issue
Block a user