Update of /cvsroot/vba/VisualBoyAdvance
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17105
Modified Files:
configure configure.in
Log Message:
Extended the gettext support to the core. Minor fixes. French translation is now almost complete.
Index: configure
===================================================================
RCS file: /cvsroot/vba/VisualBoyAdvance/configure,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** configure 1 May 2004 14:03:51 -0000 1.23
--- configure 5 May 2004 16:01:09 -0000 1.24
***************
*** 865,870 ****
--enable-c-core enable C core (default is no on x86 targets)
--enable-profiling enable profiling (default is yes)
! --enable-sdl build the SDL frontend (default is yes)
! --enable-gtk=VERSION build the GTK+ frontend (default is no)
--enable-dev enable development features (default is yes)
--disable-nls do not use Native Language Support
--- 865,870 ----
--enable-c-core enable C core (default is no on x86 targets)
--enable-profiling enable profiling (default is yes)
! --enable-sdl build the SDL interface (default is yes)
! --enable-gtk=[VERSION] build the GTK+ interface (default is no)
--enable-dev enable development features (default is yes)
--disable-nls do not use Native Language Support
Index: configure.in
===================================================================
RCS file: /cvsroot/vba/VisualBoyAdvance/configure.in,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** configure.in 1 May 2004 14:03:55 -0000 1.22
--- configure.in 5 May 2004 16:01:10 -0000 1.23
***************
*** 32,40 ****
AC_ARG_ENABLE(sdl,
! AC_HELP_STRING([--enable-sdl],[build the SDL frontend (default is yes)]),
, enable_sdl=yes)
AC_ARG_ENABLE(gtk,
! AC_HELP_STRING([--enable-gtk[=VERSION]],[build the GTK+ frontend (default is no)]),[
if test "x$enable_gtk" != xno; then
enable_gtk=yes
--- 32,40 ----
AC_ARG_ENABLE(sdl,
! AC_HELP_STRING([--enable-sdl],[build the SDL interface (default is yes)]),
, enable_sdl=yes)
AC_ARG_ENABLE(gtk,
! [ --enable-gtk=[[VERSION]] build the GTK+ interface (default is no)],[
if test "x$enable_gtk" != xno; then
enable_gtk=yes
|