Mailinglist Archive: opensuse-commit (1828 mails)

< Previous Next >
commit mono-debugger
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Mon, 01 Sep 2008 14:04:20 +0200
  • Message-id: <20080901120420.AAF1567815E@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package mono-debugger
checked in at Mon Sep 1 14:04:20 CEST 2008.


--------
--- arch/i386/mono-debugger/mono-debugger.changes 2008-08-27
18:42:52.000000000 +0200
+++ /mounts/work_src_done/STABLE/mono-debugger/mono-debugger.changes
2008-09-01 13:58:26.983832000 +0200
@@ -1,0 +2,7 @@
+Mon Sep 1 11:51:18 CEST 2008 - ro@xxxxxxx
+
+- respect CFLAGS setting (for RPM_OPT_FLAGS)
+ (patch present but disabled, too many errors)
+- make term.c include ncurses/termcap.h to fix build
+
+-------------------------------------------------------------------



New:
----
mono-debugger-cflags.patch
mono-debugger-termcap.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ mono-debugger.spec ++++++
--- /var/tmp/diff_new_pack.as1491/_old 2008-09-01 14:02:15.000000000 +0200
+++ /var/tmp/diff_new_pack.as1491/_new 2008-09-01 14:02:15.000000000 +0200
@@ -24,9 +24,11 @@
Summary: Mono Debugger
Url: http://www.mono-project.com/Debugger
Version: 2.0
-Release: 1
+Release: 2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source0: %{name}-%{version}.tar.bz2
+Patch: mono-debugger-cflags.patch
+Patch1: mono-debugger-termcap.patch
Provides: mono-debugger = %{version}-%{release}
ExclusiveArch: %ix86 x86_64
Requires: mono-core = %{version}
@@ -83,10 +85,12 @@

%prep
%setup -q -n mono-debugger-%{version}
+%patch1

%build
%{?env_options}
%{?configure_options}
+CFLAGS="$RPM_OPT_FLAGS `ncurses5-config --cflags`"
%configure
make

@@ -111,13 +115,17 @@
%define __find_requires env sh -c 'filelist=($(cat)) && { printf "%s\\n"
"${filelist[@]}" | /usr/lib/rpm/find-requires && printf "%s\\n"
"${filelist[@]}" | /usr/bin/mono-find-requires ; } | sort | uniq'

%changelog
+* Mon Sep 01 2008 ro@xxxxxxx
+- respect CFLAGS setting (for RPM_OPT_FLAGS)
+ (patch present but disabled, too many errors)
+- make term.c include ncurses/termcap.h to fix build
* Tue Aug 26 2008 ajorgensen@xxxxxxxxxx
- Update to 2.0
* Will be released with Mono going forward to ensure compatibility
* Many bugfixes
* Tue May 06 2008 aj@xxxxxxx
- Use <sys/users.h> to fix build.
-* Mon Jan 14 2008 wberrier@xxxxxxxxxx
+* Tue Jan 15 2008 wberrier@xxxxxxxxxx
- Update to 0.60
-Updated to run with mono 1.2.6 runtime
-Various bux fixes
@@ -137,11 +145,11 @@
- add %%debug_package so debug packages get created
* Wed Apr 11 2007 wberrier@xxxxxxxxxx
- Add mono dep/req for older distros
-* Wed Apr 04 2007 wberrier@xxxxxxxxxx
+* Thu Apr 05 2007 wberrier@xxxxxxxxxx
- Adapt for buildservice
* Wed Dec 06 2006 dmueller@xxxxxxx
- don't build as root
-* Tue Nov 14 2006 wberrier@xxxxxxx
+* Wed Nov 15 2006 wberrier@xxxxxxx
- Update to 0.31
- (contains a gpl friendly libedit)
- Remove old patches
@@ -179,12 +187,12 @@
and more reliable.
* Wed Jan 25 2006 mls@xxxxxxx
- converted neededforbuild to BuildRequires
-* Wed Dec 21 2005 wberrier@xxxxxxx
+* Thu Dec 22 2005 wberrier@xxxxxxx
- Clean up spec, update to 0.11, add NULL patch for libedit, only
build on x86 and x86_64
* Mon Aug 29 2005 aj@xxxxxxx
- Add check-build.sh.
-* Mon Aug 01 2005 ro@xxxxxxx
+* Tue Aug 02 2005 ro@xxxxxxx
- make it build ...
-* Tue Jul 19 2005 wberrier@xxxxxxx
+* Wed Jul 20 2005 wberrier@xxxxxxx
- Initial submission


++++++ mono-debugger-cflags.patch ++++++
--- configure
+++ configure
@@ -21519,7 +21519,7 @@



-CFLAGS='-g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations
-Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wshadow
-Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings'
+CFLAGS="$CFLAGS -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations
-Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wshadow
-Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings"

# Extract the first word of "pkg-config", so it can be a program name with
args.
set dummy pkg-config; ac_word=$2
@@ -23417,7 +23417,7 @@

{ echo "$as_me:$LINENO: checking Whether your Mono is working" >&5
echo $ECHO_N "checking Whether your Mono is working... $ECHO_C" >&6; }
-old_CFLAGS=$cflags
+old_CFLAGS=$CFLAGS
CFLAGS=$WRAPPER_CFLAGS
cat >conftest.$ac_ext <<_ACEOF
/* confdefs.h. */
--- configure.in
+++ configure.in
@@ -104,7 +104,7 @@
# not 64 bit clean in cross-compile
AC_CHECK_SIZEOF(void *, 4)

-CFLAGS='-g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations
-Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wshadow
-Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings'
+CFLAGS="$CFLAGS -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations
-Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wshadow
-Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings"

AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
if test "x$PKG_CONFIG" = "xno"; then
@@ -280,7 +280,7 @@
AM_CONDITIONAL(HAVE_XSP, test "x$xsp" = "xyes")

AC_MSG_CHECKING([Whether your Mono is working])
-old_CFLAGS=$cflags
+old_CFLAGS=$CFLAGS
CFLAGS=$WRAPPER_CFLAGS
AC_TRY_COMPILE([#include <mono/metadata/mono-debug.h>
#include <mono/metadata/debug-mono-symfile.h>
++++++ mono-debugger-termcap.patch ++++++
--- frontend/libedit/term.c
+++ frontend/libedit/term.c
@@ -52,6 +52,14 @@
# include <ncurses.h>
#endif

+#ifdef HAVE_TERMCAP_H
+# include <termcap.h>
+#elif HAVE_TERMCAP_TERMCAP_H
+# include <termcap/termcap.h>
+#else
+# include <ncurses/termcap.h>
+#endif
+
/* Solaris's term.h does horrid things. */
#if (defined(HAVE_TERM_H) && !defined(_SUNOS))
# include <term.h>

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread