[rkward-cvs] rkward TODO, 1.135, 1.136 acinclude.m4, 1.15, 1.16 aclocal.m4, 1.15, 1.16 config.h.in, 1.2, 1.3 configure, 1.46, 1.47 configure.in, 1.37, 1.38 configure.in.in, 1.18, 1.19
Thomas Friedrichsmeier
tfry at users.sourceforge.net
Wed Sep 13 12:32:02 UTC 2006
Update of /cvsroot/rkward/rkward
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv3947
Modified Files:
TODO acinclude.m4 aclocal.m4 config.h.in configure
configure.in configure.in.in
Log Message:
Automake mess
Index: configure
===================================================================
RCS file: /cvsroot/rkward/rkward/configure,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** configure 19 Jun 2006 20:06:07 -0000 1.46
--- configure 13 Sep 2006 12:31:59 -0000 1.47
***************
*** 1,7 ****
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
! # Generated by GNU Autoconf 2.59.
#
! # Copyright (C) 2003 Free Software Foundation, Inc.
# This configure script is free software; the Free Software Foundation
# gives unlimited permission to copy, distribute and modify it.
--- 1,8 ----
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
[...36135 lines suppressed...]
+ fi
+ fi
+
+ if test x$GXX = "xyes" -a x$kde_have_gcc_visibility = "xyes" -a x$kde_cv_val_qt_gcc_visibility_patched = "xno"; then
+ echo ""
+ echo "Your GCC supports symbol visibility, but the patch for Qt supporting visibility"
+ echo "was not included. Therefore, GCC symbol visibility support remains disabled."
+ echo ""
+ echo "For better performance, consider including the Qt visibility supporting patch"
+ echo "located at:"
+ echo ""
+ echo "http://bugs.kde.org/show_bug.cgi?id=109386"
+ echo ""
+ echo "and recompile all of Qt and KDE. Note, this is entirely optional and"
+ echo "everything will continue to work just fine without it."
+ echo ""
+ fi
+
if test "$all_tests" = "bad"; then
if test ! "$cache_file" = "/dev/null"; then
Index: configure.in
===================================================================
RCS file: /cvsroot/rkward/rkward/configure.in,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** configure.in 19 Jun 2006 20:06:09 -0000 1.37
--- configure.in 13 Sep 2006 12:32:00 -0000 1.38
***************
*** 1,2 ****
--- 1,6 ----
+ dnl =======================================================
+ dnl FILE: ./admin/configure.in.min
+ dnl =======================================================
+
dnl This file is part of the KDE libraries/packages
dnl Copyright (C) 2001 Stephan Kulow (coolo at kde.org)
***************
*** 14,19 ****
dnl You should have received a copy of the GNU Library General Public License
dnl along with this library; see the file COPYING.LIB. If not, write to
! dnl the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
! dnl Boston, MA 02111-1307, USA.
# Original Author was Kalle at kde.org
--- 18,23 ----
dnl You should have received a copy of the GNU Library General Public License
dnl along with this library; see the file COPYING.LIB. If not, write to
! dnl the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
! dnl Boston, MA 02110-1301, USA.
# Original Author was Kalle at kde.org
***************
*** 37,41 ****
dnl Automake doc recommends to do this only here. (Janos)
! AM_INIT_AUTOMAKE(rkward, 0.3.7pre1) dnl searches for some needed programs
KDE_SET_PREFIX
--- 41,45 ----
dnl Automake doc recommends to do this only here. (Janos)
! AM_INIT_AUTOMAKE(rkward, 0.3.7pre2) dnl searches for some needed programs
KDE_SET_PREFIX
***************
*** 56,59 ****
--- 60,67 ----
KDE_USE_QT(3)
AC_PATH_KDE
+ dnl =======================================================
+ dnl FILE: configure.in.in
+ dnl =======================================================
+
#MIN_CONFIG(3)
***************
*** 87,93 ****
AC_CONFIG_FILES([ rkward/windows/Makefile ])
AC_OUTPUT
if test "$all_tests" = "bad"; then
if test ! "$cache_file" = "/dev/null"; then
! echo ""
echo "Please remove the file $cache_file after changing your setup"
echo "so that configure will find the changes next time."
--- 95,134 ----
AC_CONFIG_FILES([ rkward/windows/Makefile ])
AC_OUTPUT
+ # Check if KDE_SET_PREFIX was called, and --prefix was passed to configure
+ if test -n "$kde_libs_prefix" -a -n "$given_prefix"; then
+ # And if so, warn when they don't match
+ if test "$kde_libs_prefix" != "$given_prefix"; then
+ # And if kde doesn't know about the prefix yet
+ echo ":"`kde-config --path exe`":" | grep ":$given_prefix/bin/:" 2>&1 >/dev/null
+ if test $? -ne 0; then
+ echo ""
+ echo "Warning: you chose to install this package in $given_prefix,"
+ echo "but KDE was found in $kde_libs_prefix."
+ echo "For this to work, you will need to tell KDE about the new prefix, by ensuring"
+ echo "that KDEDIRS contains it, e.g. export KDEDIRS=$given_prefix:$kde_libs_prefix"
+ echo "Then restart KDE."
+ echo ""
+ fi
+ fi
+ fi
+
+ if test x$GXX = "xyes" -a x$kde_have_gcc_visibility = "xyes" -a x$kde_cv_val_qt_gcc_visibility_patched = "xno"; then
+ echo ""
+ echo "Your GCC supports symbol visibility, but the patch for Qt supporting visibility"
+ echo "was not included. Therefore, GCC symbol visibility support remains disabled."
+ echo ""
+ echo "For better performance, consider including the Qt visibility supporting patch"
+ echo "located at:"
+ echo ""
+ echo "http://bugs.kde.org/show_bug.cgi?id=109386"
+ echo ""
+ echo "and recompile all of Qt and KDE. Note, this is entirely optional and"
+ echo "everything will continue to work just fine without it."
+ echo ""
+ fi
+
if test "$all_tests" = "bad"; then
if test ! "$cache_file" = "/dev/null"; then
! echo ""
echo "Please remove the file $cache_file after changing your setup"
echo "so that configure will find the changes next time."
Index: configure.in.in
===================================================================
RCS file: /cvsroot/rkward/rkward/configure.in.in,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** configure.in.in 19 Jun 2006 20:06:09 -0000 1.18
--- configure.in.in 13 Sep 2006 12:32:00 -0000 1.19
***************
*** 1,5 ****
#MIN_CONFIG(3)
! AM_INIT_AUTOMAKE(rkward,0.3.7pre1)
dnl CXXFLAGS="$NOOPT_CXXFLAGS" dnl __kdevelop[noopt]__
--- 1,5 ----
#MIN_CONFIG(3)
! AM_INIT_AUTOMAKE(rkward,0.3.7pre2)
dnl CXXFLAGS="$NOOPT_CXXFLAGS" dnl __kdevelop[noopt]__
Index: acinclude.m4
===================================================================
RCS file: /cvsroot/rkward/rkward/acinclude.m4,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** acinclude.m4 17 May 2006 12:36:13 -0000 1.15
--- acinclude.m4 13 Sep 2006 12:31:59 -0000 1.16
***************
*** 17,22 ****
dnl You should have received a copy of the GNU Library General Public License
dnl along with this library; see the file COPYING.LIB. If not, write to
! dnl the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
! dnl Boston, MA 02111-1307, USA.
dnl IMPORTANT NOTE:
--- 17,22 ----
dnl You should have received a copy of the GNU Library General Public License
dnl along with this library; see the file COPYING.LIB. If not, write to
! dnl the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
[...2812 lines suppressed...]
! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $compiler_flags $libobjs $deplibs'
else
_LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
***************
*** 11099,11105 ****
_LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z ${wl}text'
if test "$GCC" = yes; then
! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
else
! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
fi
runpath_var='LD_RUN_PATH'
--- 11752,11758 ----
_LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z ${wl}text'
if test "$GCC" = yes; then
! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $compiler_flags $libobjs $deplibs'
else
! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h ${wl}$soname -o $lib $compiler_flags $libobjs $deplibs'
fi
runpath_var='LD_RUN_PATH'
Index: aclocal.m4
===================================================================
RCS file: /cvsroot/rkward/rkward/aclocal.m4,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** aclocal.m4 17 May 2006 12:36:13 -0000 1.15
--- aclocal.m4 13 Sep 2006 12:31:59 -0000 1.16
***************
*** 29,34 ****
dnl You should have received a copy of the GNU Library General Public License
dnl along with this library; see the file COPYING.LIB. If not, write to
! dnl the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
! dnl Boston, MA 02111-1307, USA.
dnl IMPORTANT NOTE:
--- 29,34 ----
dnl You should have received a copy of the GNU Library General Public License
dnl along with this library; see the file COPYING.LIB. If not, write to
! dnl the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
[...2963 lines suppressed...]
+ elif test $pkg_failed = untried; then
+ ifelse([$4], , [AC_MSG_FAILURE(dnl
+ [The pkg-config script could not be found or is too old. Make sure it
+ is in your PATH or set the PKG_CONFIG environment variable to the full
+ path to pkg-config.
+
+ _PKG_TEXT
+
+ To get pkg-config, see <http://www.freedesktop.org/software/pkgconfig>.])],
+ [$4])
+ else
+ $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
+ $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
+ AC_MSG_RESULT([yes])
+ ifelse([$3], , :, [$3])
+ fi[]dnl
+ ])# PKG_CHECK_MODULES
+
# Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*-
Index: config.h.in
===================================================================
RCS file: /cvsroot/rkward/rkward/config.h.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** config.h.in 27 Jul 2004 23:05:23 -0000 1.2
--- config.h.in 13 Sep 2006 12:31:59 -0000 1.3
***************
*** 1,4 ****
--- 1,7 ----
/* config.h.in. Generated from configure.in by autoheader. */
+ /* Define to 1 if you have the <Carbon/Carbon.h> header file. */
+ #undef HAVE_CARBON_CARBON_H
+
/* Define if you have the CoreAudio API */
#undef HAVE_COREAUDIO
***************
*** 34,40 ****
#undef HAVE_NSGETENVIRON
! /* Define if you have the res_init function */
#undef HAVE_RES_INIT
/* Define if you have a STL implementation by SGI */
#undef HAVE_SGI_STL
--- 37,46 ----
#undef HAVE_NSGETENVIRON
! /* Define if you have res_init */
#undef HAVE_RES_INIT
+ /* Define if you have the res_init prototype */
+ #undef HAVE_RES_INIT_PROTO
+
/* Define if you have a STL implementation by SGI */
#undef HAVE_SGI_STL
***************
*** 67,70 ****
--- 73,79 ----
#undef HAVE_STRLCPY_PROTO
+ /* Define to 1 if you have the <sys/bitypes.h> header file. */
+ #undef HAVE_SYS_BITYPES_H
+
/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
***************
*** 100,119 ****
#undef PACKAGE_VERSION
! /* The size of a `char *', as computed by sizeof. */
#undef SIZEOF_CHAR_P
! /* The size of a `int', as computed by sizeof. */
#undef SIZEOF_INT
! /* The size of a `long', as computed by sizeof. */
#undef SIZEOF_LONG
! /* The size of a `short', as computed by sizeof. */
#undef SIZEOF_SHORT
! /* The size of a `size_t', as computed by sizeof. */
#undef SIZEOF_SIZE_T
! /* The size of a `unsigned long', as computed by sizeof. */
#undef SIZEOF_UNSIGNED_LONG
--- 109,128 ----
#undef PACKAGE_VERSION
! /* The size of `char *', as computed by sizeof. */
#undef SIZEOF_CHAR_P
! /* The size of `int', as computed by sizeof. */
#undef SIZEOF_INT
! /* The size of `long', as computed by sizeof. */
#undef SIZEOF_LONG
! /* The size of `short', as computed by sizeof. */
#undef SIZEOF_SHORT
! /* The size of `size_t', as computed by sizeof. */
#undef SIZEOF_SIZE_T
! /* The size of `unsigned long', as computed by sizeof. */
#undef SIZEOF_UNSIGNED_LONG
***************
*** 124,127 ****
--- 133,139 ----
#undef VERSION
+ /* Defined if compiling without arts */
+ #undef WITHOUT_ARTS
+
/*
* jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system
***************
*** 154,157 ****
--- 166,181 ----
+ #if !defined(HAVE_RES_INIT_PROTO)
+ #ifdef __cplusplus
+ extern "C" {
+ #endif
+ int res_init(void);
+ #ifdef __cplusplus
+ }
+ #endif
+ #endif
+
+
+
#if !defined(HAVE_STRLCAT_PROTO)
#ifdef __cplusplus
***************
*** 206,212 ****
! /* Compatibility define */
! #undef ksize_t
! /* Define the real type of socklen_t */
! #undef socklen_t
--- 230,237 ----
! /* type to use in place of socklen_t if not defined */
! #undef kde_socklen_t
! /* type to use in place of socklen_t if not defined (deprecated, use
! kde_socklen_t) */
! #undef ksize_t
Index: TODO
===================================================================
RCS file: /cvsroot/rkward/rkward/TODO,v
retrieving revision 1.135
retrieving revision 1.136
diff -C2 -d -r1.135 -r1.136
*** TODO 13 Sep 2006 10:28:48 -0000 1.135
--- TODO 13 Sep 2006 12:31:59 -0000 1.136
***************
*** 48,52 ****
- hot-key/permanent icon to cancel current command / hold processing. Perhaps in the busy/idle indicator?
- find out how to save toolbar states properly in parts-GUI
- - frequent output of a command should not raise the command log over and over again (user should have a chance to switch away)
- David's usability items
- use RKGlobals::marginHint (), RKGlobals::spacingHint () everywhere
--- 48,51 ----
More information about the rkward-tracker
mailing list