[Ap-python-commits] python Makefile.am,1.7,1.8 TODO,1.1,1.2 configure.ac,1.18,1.19
Status: Beta
Brought to you by:
sjah
From: <sj...@us...> - 2002-08-19 16:45:39
|
Update of /cvsroot/ap-python/python In directory usw-pr-cvs1:/tmp/cvs-serv29642 Modified Files: Makefile.am TODO configure.ac Log Message: Make __data__ and __version__ mean what they should mean. I18N. Fix distclean and uninstall targets. Index: Makefile.am =================================================================== RCS file: /cvsroot/ap-python/python/Makefile.am,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile.am 11 May 2002 00:14:21 -0000 1.7 --- Makefile.am 19 Aug 2002 16:45:36 -0000 1.8 *************** *** 1,3 **** ! SUBDIRS = src docs apcontrol examples aptk if ENABLE_INTERFACE --- 1,3 ---- ! SUBDIRS = src docs apcontrol examples aptk po if ENABLE_INTERFACE Index: TODO =================================================================== RCS file: /cvsroot/ap-python/python/TODO,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TODO 23 Jul 2002 09:00:31 -0000 1.1 --- TODO 19 Aug 2002 16:45:36 -0000 1.2 *************** *** 1,2 **** APTK: ! Widgets shouldn't eat resources when they are not visible. --- 1,2 ---- APTK: ! Widgets shouldn't waste resources when they are not visible. Index: configure.ac =================================================================== RCS file: /cvsroot/ap-python/python/configure.ac,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** configure.ac 21 Jul 2002 18:15:42 -0000 1.18 --- configure.ac 19 Aug 2002 16:45:36 -0000 1.19 *************** *** 127,130 **** --- 127,149 ---- AM_CONDITIONAL(ENABLE_APTK,test "$enable_aptk" = "yes") + dnl po files + AC_PATH_PROG(msgmergepath, "msgmerge") + if test "_$msgmergepath" = _ ; then + AC_MSG_ERROR([** msgmerge not installed or broken. Disable mo file generation. **]) + enable_po="no" + else + AC_SUBST(msgmergepath) + AC_PATH_PROG(msgfmtpath, "msgfmt") + if test "_$msgfmtpath" = _ ; then + AC_MSG_ERROR([** msgfmt not installed or broken. Disable mo file generation. **]) + enable_po="no" + else + AC_SUBST(msgfmtpath) + enable_po="yes" + fi + fi + + AM_CONDITIONAL(ENABLE_PO,test "$enable_po" = "yes") + dnl interface AC_ARG_ENABLE(interface, *************** *** 184,187 **** --- 203,207 ---- examples/aptk/Makefile aptk/Makefile + po/Makefile ]) |