Hello community, here is the log from the commit of package bb for openSUSE:Factory checked in at Tue Aug 30 10:43:48 CEST 2011.
-------- --- bb/bb.changes 2010-09-29 04:11:18.000000000 +0200 +++ /mounts/work_src_done/STABLE/bb/bb.changes 2011-08-29 19:49:34.000000000 +0200 @@ -1,0 +2,6 @@ +Mon Aug 29 17:48:45 UTC 2011 - [email protected] + +- Fix wrong linking +- include <time.h> to avoid warnings. + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- bb-fix-linking.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bb.spec ++++++ --- /var/tmp/diff_new_pack.CPsApU/_old 2011-08-30 10:42:30.000000000 +0200 +++ /var/tmp/diff_new_pack.CPsApU/_new 2011-08-30 10:42:30.000000000 +0200 @@ -1,7 +1,7 @@ # -# spec file for package bb (Version 1.3) +# spec file for package bb # -# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -23,7 +23,7 @@ Url: http://aa-project.sourceforge.net/bb/ Summary: Audio-Visual Demonstration for Text Terminal Version: 1.3 -Release: 555 +Release: 560 License: GPLv2+ Group: Amusements/Toys/Graphics Source: bb-1.3rc1.tar.bz2 @@ -32,6 +32,7 @@ Patch2: warn.patch Patch3: undefined-operation.diff Patch4: bb-1.3.0-no-minilzo-or-builddates.patch +Patch5: bb-fix-linking.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -55,6 +56,7 @@ %patch2 %patch3 %patch4 +%patch5 %build autoreconf -fiv ++++++ bb-fix-linking.patch ++++++ --- bb.c.orig +++ bb.c @@ -21,10 +21,13 @@ * 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include "config.h" + #include <string.h> #include <stdlib.h> #include <ctype.h> #include <aalib.h> +#include <time.h> #include "bb.h" int finish_stuff, starttime, endtime; --- configure.in.orig +++ configure.in @@ -3,8 +3,9 @@ AC_INIT(main.c) AM_INIT_AUTOMAKE(bb, 1.3.0) AM_CONFIG_HEADER(aconfig.h) -use_cc_g_flag=no -AC_PROG_CC +AC_PROG_CC_STDC +AC_USE_SYSTEM_EXTENSIONS +AC_SYS_LARGEFILE AC_PROG_INSTALL AC_HEADER_STDC @@ -27,7 +28,7 @@ AC_FUNC_MEMCMP AC_TYPE_SIGNAL AC_SUBST(HAVE_MIKMOD) AC_CHECK_FUNCS(ftime gettimeofday select strdup strstr strtol) - +AC_SEARCH_LIBS(sin, m) dnl Check for AA-lib AM_PATH_AALIB(1.4.0, , AC_MSG_ERROR([*** AALIB >= 1.4.0 not installed - please install first ***])) CFLAGS="$CFLAGS $AALIB_CFLAGS" ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
