Hello community, here is the log from the commit of package yast2-ycp-ui-bindings checked in at Mon Sep 29 18:30:01 CEST 2008. -------- --- yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes 2008-09-25 12:00:58.000000000 +0200 +++ /mounts/work_src_done/STABLE/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes 2008-09-29 14:40:17.090708000 +0200 @@ -1,0 +2,6 @@ +Fri Sep 26 15:54:34 CEST 2008 - tgoettlicher@suse.de + +- Fixed bnc #418443: Yast modules windows have no title +- V 2.17.8 + +------------------------------------------------------------------- Old: ---- yast2-ycp-ui-bindings-2.17.7.tar.bz2 New: ---- yast2-ycp-ui-bindings-2.17.8.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-ycp-ui-bindings.spec ++++++ --- /var/tmp/diff_new_pack.Z15367/_old 2008-09-29 18:29:44.000000000 +0200 +++ /var/tmp/diff_new_pack.Z15367/_new 2008-09-29 18:29:44.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package yast2-ycp-ui-bindings (Version 2.17.7) +# spec file for package yast2-ycp-ui-bindings (Version 2.17.8) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -19,12 +19,12 @@ Name: yast2-ycp-ui-bindings -Version: 2.17.7 +Version: 2.17.8 Release: 1 License: GPL v2 or later Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-ycp-ui-bindings-2.17.7.tar.bz2 +Source0: yast2-ycp-ui-bindings-2.17.8.tar.bz2 Prefix: /usr BuildRequires: gcc-c++ BuildRequires: yast2-devtools @@ -37,8 +37,8 @@ Conflicts: yast2-core < 2.16.38 # libycp includes crypto built-ins BuildRequires: libxcrypt-devel -Requires: yast2-libyui >= 2.17.11 -BuildRequires: yast2-libyui-devel >= 2.17.11 +Requires: yast2-libyui >= 2.17.12 +BuildRequires: yast2-libyui-devel >= 2.17.12 # libyui ImplPtr BuildRequires: boost-devel Summary: YaST2 - YCP Bindings for the YaST2 User Interface Engine @@ -84,7 +84,7 @@ Matthias Kettner %prep -%setup -n yast2-ycp-ui-bindings-2.17.7 +%setup -n yast2-ycp-ui-bindings-2.17.8 %build %{prefix}/bin/y2tool y2autoconf @@ -123,6 +123,9 @@ %{_libdir}/pkgconfig/yast2-ycp-ui-bindings.pc %doc %{prefix}/share/doc/packages/yast2-ycp-ui-bindings %changelog +* Fri Sep 26 2008 tgoettlicher@suse.de +- Fixed bnc #418443: Yast modules windows have no title +- V 2.17.8 * Thu Sep 25 2008 sh@suse.de - Require latest libyui (API change!) - V 2.17.7 ++++++ yast2-ycp-ui-bindings-2.17.7.tar.bz2 -> yast2-ycp-ui-bindings-2.17.8.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/aclocal.m4 new/yast2-ycp-ui-bindings-2.17.8/aclocal.m4 --- old/yast2-ycp-ui-bindings-2.17.7/aclocal.m4 2008-09-25 12:00:22.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/aclocal.m4 2008-09-04 15:33:30.000000000 +0200 @@ -7519,162 +7519,6 @@ AC_MSG_RESULT([$SED]) ]) -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# -# Copyright © 2004 Scott James Remnant <scott@netsplit.com>. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- -AC_DEFUN([PKG_PROG_PKG_CONFIG], -[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) -m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) -AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=m4_default([$1], [0.9.0]) - AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - PKG_CONFIG="" - fi - -fi[]dnl -])# PKG_PROG_PKG_CONFIG - -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# -# Similar to PKG_CHECK_MODULES, make sure that the first instance of -# this or PKG_CHECK_MODULES is called, or make sure to call -# PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- -AC_DEFUN([PKG_CHECK_EXISTS], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -if test -n "$PKG_CONFIG" && \ - AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then - m4_ifval([$2], [$2], [:]) -m4_ifvaln([$3], [else - $3])dnl -fi]) - - -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- -m4_define([_PKG_CONFIG], -[if test -n "$$1"; then - pkg_cv_[]$1="$$1" - elif test -n "$PKG_CONFIG"; then - PKG_CHECK_EXISTS([$3], - [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], - [pkg_failed=yes]) - else - pkg_failed=untried -fi[]dnl -])# _PKG_CONFIG - -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- -AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi[]dnl -])# _PKG_SHORT_ERRORS_SUPPORTED - - -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- -AC_DEFUN([PKG_CHECK_MODULES], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl -AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl - -pkg_failed=no -AC_MSG_CHECKING([for $1]) - -_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) -_PKG_CONFIG([$1][_LIBS], [libs], [$2]) - -m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS -and $1[]_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details.]) - -if test $pkg_failed = yes; then - _PKG_SHORT_ERRORS_SUPPORTED - if test $_pkg_short_errors_supported = yes; then - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` - else - $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD - - ifelse([$4], , [AC_MSG_ERROR(dnl -[Package requirements ($2) were not met: - -$$1_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -_PKG_TEXT -])], - [AC_MSG_RESULT([no]) - $4]) -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://pkg-config.freedesktop.org/>.])], - [$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 - dnl check for docbook -*- autoconf -*- diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/configure new/yast2-ycp-ui-bindings-2.17.8/configure --- old/yast2-ycp-ui-bindings-2.17.7/configure 2008-09-25 12:00:25.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/configure 2008-09-04 15:33:33.000000000 +0200 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61 for yast2-ycp-ui-bindings 2.17.7. +# Generated by GNU Autoconf 2.61 for yast2-ycp-ui-bindings 2.17.3. # # Report bugs to <http://bugs.opensuse.org/>. # @@ -728,8 +728,8 @@ # Identity of this package. PACKAGE_NAME='yast2-ycp-ui-bindings' PACKAGE_TARNAME='yast2-ycp-ui-bindings' -PACKAGE_VERSION='2.17.7' -PACKAGE_STRING='yast2-ycp-ui-bindings 2.17.7' +PACKAGE_VERSION='2.17.3' +PACKAGE_STRING='yast2-ycp-ui-bindings 2.17.3' PACKAGE_BUGREPORT='http://bugs.opensuse.org/' ac_unique_file="RPMNAME" @@ -907,9 +907,6 @@ am__fastdepCXX_TRUE am__fastdepCXX_FALSE CPP -PKG_CONFIG -Y2CORE_CFLAGS -Y2CORE_LIBS AGENT_LIBADD SED GREP @@ -941,9 +938,6 @@ CXXFLAGS CCC CPP -PKG_CONFIG -Y2CORE_CFLAGS -Y2CORE_LIBS CXXCPP F77 FFLAGS' @@ -1449,7 +1443,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures yast2-ycp-ui-bindings 2.17.7 to adapt to many kinds of systems. +\`configure' configures yast2-ycp-ui-bindings 2.17.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1520,7 +1514,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of yast2-ycp-ui-bindings 2.17.7:";; + short | recursive ) echo "Configuration of yast2-ycp-ui-bindings 2.17.3:";; esac cat <<\_ACEOF @@ -1559,10 +1553,6 @@ CXX C++ compiler command CXXFLAGS C++ compiler flags CPP C preprocessor - PKG_CONFIG path to pkg-config utility - Y2CORE_CFLAGS - C compiler flags for Y2CORE, overriding pkg-config - Y2CORE_LIBS linker flags for Y2CORE, overriding pkg-config CXXCPP C++ preprocessor F77 Fortran 77 compiler command FFLAGS Fortran 77 compiler flags @@ -1631,7 +1621,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -yast2-ycp-ui-bindings configure 2.17.7 +yast2-ycp-ui-bindings configure 2.17.3 generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -1645,7 +1635,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by yast2-ycp-ui-bindings $as_me 2.17.7, which was +It was created by yast2-ycp-ui-bindings $as_me 2.17.3, which was generated by GNU Autoconf 2.61. Invocation command line was $ $0 $@ @@ -2466,7 +2456,7 @@ # Define the identity of the package. PACKAGE='yast2-ycp-ui-bindings' - VERSION='2.17.7' + VERSION='2.17.3' cat >>confdefs.h <<_ACEOF @@ -2694,7 +2684,7 @@ -VERSION="2.17.7" +VERSION="2.17.3" RPMNAME="yast2-ycp-ui-bindings" MAINTAINER="Stefan Hundhammer <sh@suse.de>" @@ -6105,247 +6095,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -# If we have core, get its Y2CORE_CFLAGS. -# When building core itself, it has set Y2CORE_CFLAGS elsewhere already - - -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. -set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - - ;; -esac -fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG -if test -n "$PKG_CONFIG"; then - { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_PKG_CONFIG"; then - ac_pt_PKG_CONFIG=$PKG_CONFIG - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - case $ac_pt_PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG -if test -n "$ac_pt_PKG_CONFIG"; then - { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 -echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - if test "x$ac_pt_PKG_CONFIG" = x; then - PKG_CONFIG="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&5 -echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&2;} -ac_tool_warned=yes ;; -esac - PKG_CONFIG=$ac_pt_PKG_CONFIG - fi -else - PKG_CONFIG="$ac_cv_path_PKG_CONFIG" -fi - -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=0.9.0 - { echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 -echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; } - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6; } - else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } - PKG_CONFIG="" - fi - -fi -if test -n "$PKG_CONFIG" && \ - { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"yast2-core\"") >&5 - ($PKG_CONFIG --exists --print-errors "yast2-core") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - - -pkg_failed=no -{ echo "$as_me:$LINENO: checking for Y2CORE" >&5 -echo $ECHO_N "checking for Y2CORE... $ECHO_C" >&6; } - -if test -n "$Y2CORE_CFLAGS"; then - pkg_cv_Y2CORE_CFLAGS="$Y2CORE_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"yast2-core\"") >&5 - ($PKG_CONFIG --exists --print-errors "yast2-core") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - pkg_cv_Y2CORE_CFLAGS=`$PKG_CONFIG --cflags "yast2-core" 2>/dev/null` -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$Y2CORE_LIBS"; then - pkg_cv_Y2CORE_LIBS="$Y2CORE_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"yast2-core\"") >&5 - ($PKG_CONFIG --exists --print-errors "yast2-core") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - pkg_cv_Y2CORE_LIBS=`$PKG_CONFIG --libs "yast2-core" 2>/dev/null` -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - Y2CORE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "yast2-core" 2>&1` - else - Y2CORE_PKG_ERRORS=`$PKG_CONFIG --print-errors "yast2-core" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$Y2CORE_PKG_ERRORS" >&5 - - { { echo "$as_me:$LINENO: error: Package requirements (yast2-core) were not met: - -$Y2CORE_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables Y2CORE_CFLAGS -and Y2CORE_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" >&5 -echo "$as_me: error: Package requirements (yast2-core) were not met: - -$Y2CORE_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables Y2CORE_CFLAGS -and Y2CORE_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" >&2;} - { (exit 1); exit 1; }; } -elif test $pkg_failed = untried; then - { { echo "$as_me:$LINENO: error: 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. - -Alternatively, you may set the environment variables Y2CORE_CFLAGS -and Y2CORE_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see <http://pkg-config.freedesktop.org/>. -See \`config.log' for more details." >&5 -echo "$as_me: error: 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. - -Alternatively, you may set the environment variables Y2CORE_CFLAGS -and Y2CORE_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. - -To get pkg-config, see <http://pkg-config.freedesktop.org/>. -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -else - Y2CORE_CFLAGS=$pkg_cv_Y2CORE_CFLAGS - Y2CORE_LIBS=$pkg_cv_Y2CORE_LIBS - { echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6; } - : -fi - -fi - -CFLAGS="${CFLAGS} ${Y2CORE_CFLAGS} -Wall -Wformat=2 -Wmissing-prototypes" -CXXFLAGS="${CXXFLAGS} ${Y2CORE_CFLAGS} -Wall -Wformat=2" +CFLAGS="${CFLAGS} -Wall -Wformat=2 -Wmissing-prototypes" +CXXFLAGS="${CXXFLAGS} -Wall -Wformat=2" : ${AGENT_LIBADD:='-L$(libdir) -lscr'} @@ -7064,7 +6815,7 @@ ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 7067 "configure"' > conftest.$ac_ext + echo '#line 6818 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -9419,11 +9170,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:9422: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9173: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:9426: \$? = $ac_status" >&5 + echo "$as_me:9177: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -9709,11 +9460,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:9712: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9463: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:9716: \$? = $ac_status" >&5 + echo "$as_me:9467: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -9813,11 +9564,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:9816: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9567: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:9820: \$? = $ac_status" >&5 + echo "$as_me:9571: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -12177,7 +11928,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 12180 "configure" +#line 11931 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12277,7 +12028,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 12280 "configure" +#line 12031 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -14678,11 +14429,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:14681: $lt_compile\"" >&5) + (eval echo "\"\$as_me:14432: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:14685: \$? = $ac_status" >&5 + echo "$as_me:14436: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -14782,11 +14533,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:14785: $lt_compile\"" >&5) + (eval echo "\"\$as_me:14536: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:14789: \$? = $ac_status" >&5 + echo "$as_me:14540: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -16365,11 +16116,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:16368: $lt_compile\"" >&5) + (eval echo "\"\$as_me:16119: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:16372: \$? = $ac_status" >&5 + echo "$as_me:16123: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -16469,11 +16220,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:16472: $lt_compile\"" >&5) + (eval echo "\"\$as_me:16223: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:16476: \$? = $ac_status" >&5 + echo "$as_me:16227: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -18676,11 +18427,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:18679: $lt_compile\"" >&5) + (eval echo "\"\$as_me:18430: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:18683: \$? = $ac_status" >&5 + echo "$as_me:18434: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -18966,11 +18717,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:18969: $lt_compile\"" >&5) + (eval echo "\"\$as_me:18720: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:18973: \$? = $ac_status" >&5 + echo "$as_me:18724: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -19070,11 +18821,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:19073: $lt_compile\"" >&5) + (eval echo "\"\$as_me:18824: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:19077: \$? = $ac_status" >&5 + echo "$as_me:18828: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -22895,7 +22646,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by yast2-ycp-ui-bindings $as_me 2.17.7, which was +This file was extended by yast2-ycp-ui-bindings $as_me 2.17.3, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -22948,7 +22699,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -yast2-ycp-ui-bindings config.status 2.17.7 +yast2-ycp-ui-bindings config.status 2.17.3 configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" @@ -23310,9 +23061,6 @@ am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim CPP!$CPP$ac_delim -PKG_CONFIG!$PKG_CONFIG$ac_delim -Y2CORE_CFLAGS!$Y2CORE_CFLAGS$ac_delim -Y2CORE_LIBS!$Y2CORE_LIBS$ac_delim AGENT_LIBADD!$AGENT_LIBADD$ac_delim SED!$SED$ac_delim GREP!$GREP$ac_delim @@ -23332,7 +23080,7 @@ LTLIBOBJS!$LTLIBOBJS$ac_delim _ACEOF - if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 60; then + if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 57; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/configure.in new/yast2-ycp-ui-bindings-2.17.8/configure.in --- old/yast2-ycp-ui-bindings-2.17.7/configure.in 2008-09-25 12:00:02.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/configure.in 2008-09-04 15:33:18.000000000 +0200 @@ -1,9 +1,9 @@ dnl configure.in for yast2-ycp-ui-bindings dnl -dnl -- This file is generated by y2autoconf 2.17.6 - DO NOT EDIT! -- +dnl -- This file is generated by y2autoconf 2.16.7 - DO NOT EDIT! -- dnl (edit configure.in.in instead) -AC_INIT(yast2-ycp-ui-bindings, 2.17.7, http://bugs.opensuse.org/, yast2-ycp-ui-bindings) +AC_INIT(yast2-ycp-ui-bindings, 2.17.3, http://bugs.opensuse.org/, yast2-ycp-ui-bindings) dnl Check for presence of file 'RPMNAME' AC_CONFIG_SRCDIR([RPMNAME]) @@ -18,7 +18,7 @@ AM_INIT_AUTOMAKE(tar-ustar -Wno-portability) dnl Important YaST2 variables -VERSION="2.17.7" +VERSION="2.17.3" RPMNAME="yast2-ycp-ui-bindings" MAINTAINER="Stefan Hundhammer <sh@suse.de>" @@ -150,14 +150,8 @@ AC_PROG_CC AC_PROG_CPP -# If we have core, get its Y2CORE_CFLAGS. -# When building core itself, it has set Y2CORE_CFLAGS elsewhere already -PKG_CHECK_EXISTS([yast2-core],[ - PKG_CHECK_MODULES(Y2CORE, yast2-core) -]) - -CFLAGS="${CFLAGS} ${Y2CORE_CFLAGS} -Wall -Wformat=2 -Wmissing-prototypes" -CXXFLAGS="${CXXFLAGS} ${Y2CORE_CFLAGS} -Wall -Wformat=2" +CFLAGS="${CFLAGS} -Wall -Wformat=2 -Wmissing-prototypes" +CXXFLAGS="${CXXFLAGS} -Wall -Wformat=2" : ${AGENT_LIBADD:='-L$(libdir) -lscr'} AC_SUBST(AGENT_LIBADD) diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/examples/bullshit.ycp new/yast2-ycp-ui-bindings-2.17.8/examples/bullshit.ycp --- old/yast2-ycp-ui-bindings-2.17.7/examples/bullshit.ycp 2008-09-24 18:16:25.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/examples/bullshit.ycp 1970-01-01 01:00:00.000000000 +0100 @@ -1,24 +0,0 @@ -{ - UI::OpenDialog( - `VBox( - `Label("Hello, World!"), - `ReplacePoint(`id(`rep), - `PushButton(`opt(`default), "&OK 99") ) - ) - ); - - integer i=10; - - while ( i > 0 ) - { - // UI::PollInput(); - i=i-1; - UI::ReplaceWidget(`rep, - `PushButton(`opt(`default), - sformat( "&OK %1", i ) ) ); - UI::TimeoutUserInput( 2000 ); - } - - - UI::CloseDialog(); -} diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/examples/Makefile.in new/yast2-ycp-ui-bindings-2.17.8/examples/Makefile.in --- old/yast2-ycp-ui-bindings-2.17.7/examples/Makefile.in 2008-09-25 12:00:28.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/examples/Makefile.in 2008-09-04 15:33:36.000000000 +0200 @@ -125,7 +125,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ RPMNAME = @RPMNAME@ @@ -143,8 +142,6 @@ XML_CATALOG = @XML_CATALOG@ XSLTPROC = @XSLTPROC@ XSLTPROC_FLAGS = @XSLTPROC_FLAGS@ -Y2CORE_CFLAGS = @Y2CORE_CFLAGS@ -Y2CORE_LIBS = @Y2CORE_LIBS@ Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@ YDOXYGEN = @YDOXYGEN@ abs_builddir = @abs_builddir@ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/examples/screenshots/Makefile.in new/yast2-ycp-ui-bindings-2.17.8/examples/screenshots/Makefile.in --- old/yast2-ycp-ui-bindings-2.17.7/examples/screenshots/Makefile.in 2008-09-25 12:00:29.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/examples/screenshots/Makefile.in 2008-09-04 15:33:36.000000000 +0200 @@ -127,7 +127,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ RPMNAME = @RPMNAME@ @@ -145,8 +144,6 @@ XML_CATALOG = @XML_CATALOG@ XSLTPROC = @XSLTPROC@ XSLTPROC_FLAGS = @XSLTPROC_FLAGS@ -Y2CORE_CFLAGS = @Y2CORE_CFLAGS@ -Y2CORE_LIBS = @Y2CORE_LIBS@ Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@ YDOXYGEN = @YDOXYGEN@ abs_builddir = @abs_builddir@ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/examples/screenshots/resized-larger/Makefile.in new/yast2-ycp-ui-bindings-2.17.8/examples/screenshots/resized-larger/Makefile.in --- old/yast2-ycp-ui-bindings-2.17.7/examples/screenshots/resized-larger/Makefile.in 2008-09-25 12:00:29.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/examples/screenshots/resized-larger/Makefile.in 2008-09-04 15:33:36.000000000 +0200 @@ -115,7 +115,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ RPMNAME = @RPMNAME@ @@ -133,8 +132,6 @@ XML_CATALOG = @XML_CATALOG@ XSLTPROC = @XSLTPROC@ XSLTPROC_FLAGS = @XSLTPROC_FLAGS@ -Y2CORE_CFLAGS = @Y2CORE_CFLAGS@ -Y2CORE_LIBS = @Y2CORE_LIBS@ Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@ YDOXYGEN = @YDOXYGEN@ abs_builddir = @abs_builddir@ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/examples/screenshots/resized-smaller/Makefile.in new/yast2-ycp-ui-bindings-2.17.8/examples/screenshots/resized-smaller/Makefile.in --- old/yast2-ycp-ui-bindings-2.17.7/examples/screenshots/resized-smaller/Makefile.in 2008-09-25 12:00:29.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/examples/screenshots/resized-smaller/Makefile.in 2008-09-04 15:33:36.000000000 +0200 @@ -115,7 +115,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ RPMNAME = @RPMNAME@ @@ -133,8 +132,6 @@ XML_CATALOG = @XML_CATALOG@ XSLTPROC = @XSLTPROC@ XSLTPROC_FLAGS = @XSLTPROC_FLAGS@ -Y2CORE_CFLAGS = @Y2CORE_CFLAGS@ -Y2CORE_LIBS = @Y2CORE_LIBS@ Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@ YDOXYGEN = @YDOXYGEN@ abs_builddir = @abs_builddir@ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/examples/WizBench.ycp new/yast2-ycp-ui-bindings-2.17.8/examples/WizBench.ycp --- old/yast2-ycp-ui-bindings-2.17.7/examples/WizBench.ycp 2008-09-19 13:42:29.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/examples/WizBench.ycp 1970-01-01 01:00:00.000000000 +0100 @@ -1,58 +0,0 @@ -// Example of using the Wizard widget. -// -// Note: YCP applications are discouraged from using the Wizard widget directly. -// Use the Wizard module instead. - -{ - if ( ! UI::HasSpecialWidget(`Wizard) ) - { - y2error( "This works only with UIs that provide the wizard widget!" ); - return; - } - - string help_text = - "<p>This is a help text.</p>" - + "<p>It should be helpful.</p>" - + "<p>If it isn't helpful, it should rather not be called a <i>help text</i>.</p>"; - - UI::OpenDialog(`opt(`defaultsize ), - `Wizard(`opt(`stepsEnabled), - `back, "&Back", - `abort, "Ab&ort", - `next, "&Next" ) ); - - // UI::DumpWidgetTree(); - - UI::WizardCommand(`SetDialogIcon( "/usr/share/YaST2/theme/current/icons/22x22/apps/YaST.png" ) ); - UI::WizardCommand(`SetDialogHeading( "Welcome to the YaST2 installation" ) ); - UI::WizardCommand(`SetHelpText( help_text ) ); - - UI::WizardCommand(`AddStepHeading( "Base Installation" ) ); - UI::WizardCommand(`AddStep( "Language", "lang" ) ); - UI::WizardCommand(`AddStep( "Installation Settings", "proposal" ) ); - UI::WizardCommand(`AddStep( "Perform Installation", "doit" ) ); - - UI::WizardCommand(`AddStepHeading( "Configuration" ) ); - UI::WizardCommand(`AddStep( "Root Password", "root_pw" ) ); - UI::WizardCommand(`AddStep( "Network", "net" ) ); - UI::WizardCommand(`AddStep( "Online Update", "you" ) ); - UI::WizardCommand(`AddStep( "Users", "auth" ) ); - UI::WizardCommand(`AddStep( "Clean Up", "suse_config" ) ); - UI::WizardCommand(`AddStep( "Release Notes", "rel_notes" ) ); - UI::WizardCommand(`AddStep( "Device Configuration", "hw_proposal" ) ); - UI::WizardCommand(`UpdateSteps() ); - - if ( false ) - { - UI::WizardCommand(`SetAbortButtonLabel( "&Cancel" ) ); - UI::WizardCommand(`SetBackButtonLabel( "" ) ); - UI::WizardCommand(`SetNextButtonLabel( "&Accept" ) ); - } - - UI::WizardCommand(`SetCurrentStep( "net" ) ); - - map event = UI::WaitForEvent( 10 ); - - UI::CloseDialog(); - -} diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/Makefile.in new/yast2-ycp-ui-bindings-2.17.8/Makefile.in --- old/yast2-ycp-ui-bindings-2.17.7/Makefile.in 2008-09-25 12:00:29.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/Makefile.in 2008-09-04 15:33:37.000000000 +0200 @@ -149,7 +149,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ RPMNAME = $(shell cat $(srcdir)/RPMNAME) @@ -167,8 +166,6 @@ XML_CATALOG = @XML_CATALOG@ XSLTPROC = @XSLTPROC@ XSLTPROC_FLAGS = @XSLTPROC_FLAGS@ -Y2CORE_CFLAGS = @Y2CORE_CFLAGS@ -Y2CORE_LIBS = @Y2CORE_LIBS@ Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@ YDOXYGEN = @YDOXYGEN@ abs_builddir = @abs_builddir@ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/src/Makefile.in new/yast2-ycp-ui-bindings-2.17.8/src/Makefile.in --- old/yast2-ycp-ui-bindings-2.17.7/src/Makefile.in 2008-09-25 12:00:29.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/src/Makefile.in 2008-09-04 15:33:37.000000000 +0200 @@ -148,7 +148,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ RPMNAME = @RPMNAME@ @@ -166,8 +165,6 @@ XML_CATALOG = @XML_CATALOG@ XSLTPROC = @XSLTPROC@ XSLTPROC_FLAGS = @XSLTPROC_FLAGS@ -Y2CORE_CFLAGS = @Y2CORE_CFLAGS@ -Y2CORE_LIBS = @Y2CORE_LIBS@ Y2DEVTOOLS_PREFIX = @Y2DEVTOOLS_PREFIX@ YDOXYGEN = @YDOXYGEN@ abs_builddir = @abs_builddir@ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/src/YCPWizardCommandParser.cc new/yast2-ycp-ui-bindings-2.17.8/src/YCPWizardCommandParser.cc --- old/yast2-ycp-ui-bindings-2.17.7/src/YCPWizardCommandParser.cc 2008-04-11 18:10:08.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/src/YCPWizardCommandParser.cc 2008-09-24 16:20:27.000000000 +0200 @@ -31,6 +31,7 @@ { if ( isCommand( "SetHelpText ( string )", cmd ) ) { wizard->setHelpText ( stringArg( cmd, 0 ) ); return true; } if ( isCommand( "SetDialogIcon ( string )", cmd ) ) { wizard->setDialogIcon ( stringArg( cmd, 0 ) ); return true; } + if ( isCommand( "SetDialogTitle ( string )", cmd ) ) { wizard->setDialogTitle( stringArg( cmd, 0 ) ); return true; } if ( isCommand( "SetDialogHeading ( string )", cmd ) ) { wizard->setDialogHeading( stringArg( cmd, 0 ) ); return true; } if ( isCommand( "SetCurrentStep ( string )", cmd ) ) { wizard->setCurrentStep( stringArg( cmd, 0 ) ); return true; } diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ycp-ui-bindings-2.17.7/VERSION new/yast2-ycp-ui-bindings-2.17.8/VERSION --- old/yast2-ycp-ui-bindings-2.17.7/VERSION 2008-09-25 11:58:25.000000000 +0200 +++ new/yast2-ycp-ui-bindings-2.17.8/VERSION 2008-09-26 15:54:16.000000000 +0200 @@ -1 +1 @@ -2.17.7 +2.17.8 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de