[Super-tux-commit] supertux configure.ac,1.25,1.26
Brought to you by:
wkendrick
From: Matze B. <mat...@us...> - 2004-06-02 23:01:05
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14258 Modified Files: configure.ac Log Message: added gettext support to autoconf&others and translated the main menu to german Index: configure.ac =================================================================== RCS file: /cvsroot/super-tux/supertux/configure.ac,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- configure.ac 24 May 2004 16:14:42 -0000 1.25 +++ configure.ac 2 Jun 2004 23:00:26 -0000 1.26 @@ -10,7 +10,6 @@ dnl =========================================================================== dnl Process this file with autoconf to produce a configure script. - AC_PREREQ([2.54]) AC_INIT(SuperTux, 0.1.1) AC_CONFIG_SRCDIR([src/supertux.cpp]) @@ -63,6 +62,8 @@ AC_MSG_RESULT([no]) fi +AM_GNU_GETTEXT + dnl =========================================================================== dnl Check for SDL AM_PATH_SDL($SDL_VERSION, @@ -99,7 +100,10 @@ dnl Checks for library functions. AC_CHECK_FUNCS(mkdir strdup strstr) -AC_OUTPUT(Makefile src/Makefile data/Makefile) +AC_OUTPUT(Makefile m4/Makefile intl/Makefile + src/Makefile + data/Makefile + po/Makefile.in) echo "" echo "Features:" |