Gabber now has *working* i18n!
svn path=/trunk/; revision=3148
This commit is contained in:
@ -1,42 +1,3 @@
|
||||
2000-05-15 Russell Steinthal <rms39@columbia.edu>
|
||||
|
||||
* gnome-pilot.m4 (PILOT_LIBS): An attempt to fix the gnome-pilot
|
||||
check on Solaris (`$GNOME_CONFIG ...` returns more than one word,
|
||||
so we need quotes around it to keep test from bombing out)
|
||||
|
||||
2000-05-01 Dan Winship <danw@helixcode.com>
|
||||
|
||||
* gnome-pilot.m4 (PILOT_LIBS): "But that trick NEVER works!"
|
||||
"This time for sure!"
|
||||
|
||||
Sun Apr 23 12:15:14 2000 George Lebl <jirka@5z.com>
|
||||
|
||||
* gnome.m4: add an extra lib of docklets. These checks are
|
||||
braindamaged though, they don't fail and thus gnome-core for
|
||||
example compiles without gnomecc. There need to be separate .m4
|
||||
files or checks
|
||||
|
||||
2000-04-19 Eskil Heyn Olsen <deity@eskil.dk>
|
||||
|
||||
* gnome-pilot.m4 (PILOT_LIBS): Changed the error string for gnome-pilot
|
||||
(PILOT_LIBS): Fixes the gnome-config check
|
||||
|
||||
2000-04-10 Dan Winship <danw@helixcode.com>
|
||||
|
||||
* gnome-pilot.m4 (PILOT_LIBS): Fix a bug introduced in the
|
||||
gnome-pilot-config to "gnome-config gpilot" change that caused not
|
||||
having pilot-link installed to become a fatal error.
|
||||
|
||||
2000-02-26 James Henstridge <james@daa.com.au>
|
||||
|
||||
* gnome-gettext.m4: fix up check of LINGUAS variable so that we don't
|
||||
get problems when LINGUAS contains `en' and ALL_LINGUAS contains
|
||||
`en_GB' for instance.
|
||||
|
||||
2000-02-22 Martin Baulig <martin@home-of-linux.org>
|
||||
|
||||
* autogen.sh: Don't run libtoolize when `NO_LIBTOOLIZE' is set.
|
||||
|
||||
2000-02-09 Raja R Harinath <harinath@cs.umn.edu>
|
||||
|
||||
* autogen.sh: Fix GNUism introduced in the previous fix.
|
||||
|
||||
@ -105,7 +105,7 @@ do
|
||||
aclocalinclude="$ACLOCAL_FLAGS"
|
||||
for k in $aclocalinclude; do
|
||||
if test -d $k; then
|
||||
if [ -f $k/gnome.m4 -a "$GNOME_INTERFACE_VERSION" = "1" ]; then
|
||||
if [ -f $k/gnome.m4 -a "$GNOME_INTERFACE_VERSION" = "1.0" ]; then
|
||||
rm -f $DELETEFILES
|
||||
fi
|
||||
fi
|
||||
@ -113,7 +113,7 @@ do
|
||||
for k in $macrodirs; do
|
||||
if test -d $k; then
|
||||
aclocalinclude="$aclocalinclude -I $k"
|
||||
if [ -f $k/gnome.m4 -a "$GNOME_INTERFACE_VERSION" = "1" ]; then
|
||||
if [ -f $k/gnome.m4 -a "$GNOME_INTERFACE_VERSION" = "1.0" ]; then
|
||||
rm -f $DELETEFILES
|
||||
fi
|
||||
fi
|
||||
@ -139,10 +139,8 @@ do
|
||||
test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
|
||||
fi
|
||||
if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then
|
||||
if test -z "$NO_LIBTOOLIZE" ; then
|
||||
echo "Running libtoolize..."
|
||||
libtoolize --force --copy
|
||||
fi
|
||||
echo "Running libtoolize..."
|
||||
libtoolize --force --copy
|
||||
fi
|
||||
echo "Running aclocal $aclocalinclude ..."
|
||||
aclocal $aclocalinclude
|
||||
|
||||
@ -249,7 +249,7 @@ strdup __argz_count __argz_stringify __argz_next])
|
||||
fi
|
||||
for lang in $LINGUAS; do
|
||||
case "$ALL_LINGUAS" in
|
||||
*\ $lang\ *|$lang\ *|*\ $lang) NEW_LINGUAS="$NEW_LINGUAS $lang" ;;
|
||||
*$lang*) NEW_LINGUAS="$NEW_LINGUAS $lang" ;;
|
||||
esac
|
||||
done
|
||||
LINGUAS=$NEW_LINGUAS
|
||||
|
||||
@ -97,29 +97,23 @@ AC_DEFUN([PILOT_LINK_CHECK],[
|
||||
])
|
||||
|
||||
AC_DEFUN([GNOME_PILOT_HOOK],[
|
||||
AC_PATH_PROG(GNOME_CONFIG,gnome-config,no)
|
||||
AC_PATH_PROG(GNOME_PILOT_CONFIG,gnome-pilot-config,no)
|
||||
AC_CACHE_CHECK([for gnome-pilot environment],gnome_cv_pilot_found,[
|
||||
if test "x$GNOME_CONFIG" = "xno"; then
|
||||
if test x$GNOME_PILOT_CONFIG = xno; then
|
||||
gnome_cv_pilot_found=no
|
||||
else
|
||||
# gnome-config doesn't return a useful error status,
|
||||
# so we check if it outputs anything to stderr
|
||||
if test "x`$GNOME_CONFIG gpilot 2>&1 > /dev/null`" = "x"; then
|
||||
gnome_cv_pilot_found=yes
|
||||
else
|
||||
gnome_cv_pilot_found=no
|
||||
fi
|
||||
gnome_cv_pilot_found=yes
|
||||
fi
|
||||
])
|
||||
AM_CONDITIONAL(HAVE_GNOME_PILOT,test x$gnome_cv_pilot_found = xyes)
|
||||
if test x$gnome_cv_pilot_found = xyes; then
|
||||
PILOT_LINK_CHECK($1)
|
||||
GNOME_PILOT_CFLAGS=`gnome-config --cflags gpilot`
|
||||
GNOME_PILOT_LIBS=`gnome-config --libs gpilot`
|
||||
GNOME_PILOT_CFLAGS=`gnome-pilot-config --cflags client conduitmgmt`
|
||||
GNOME_PILOT_LIBS=`gnome-pilot-config --libs client conduitmgmt`
|
||||
$2
|
||||
else
|
||||
if test x$3 = xfailure; then
|
||||
AC_MSG_ERROR(gnome-pilot development package not installed or installation problem)
|
||||
AC_MSG_ERROR(Gnome-pilot not installed or installation problem)
|
||||
fi
|
||||
fi
|
||||
])
|
||||
|
||||
@ -104,10 +104,6 @@ AC_DEFUN([GNOME_INIT_HOOK],[
|
||||
AC_SUBST(GNOME_APPLETS_LIBS)
|
||||
GNOME_APPLETS_LIBS=`$GNOME_CONFIG --libs-only-l applets`
|
||||
AC_MSG_RESULT($GNOME_APPLETS_LIBS);;
|
||||
docklets)
|
||||
AC_SUBST(GNOME_DOCKLETS_LIBS)
|
||||
GNOME_DOCKLETS_LIBS=`$GNOME_CONFIG --libs-only-l docklets`
|
||||
AC_MSG_RESULT($GNOME_DOCKLETS_LIBS);;
|
||||
capplet)
|
||||
AC_SUBST(GNOME_CAPPLET_LIBS)
|
||||
GNOME_CAPPLET_LIBS=`$GNOME_CONFIG --libs-only-l capplet`
|
||||
|
||||
Reference in New Issue
Block a user