OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 30-Jul-2003 20:27:09
Branch: OPENPKG_1_3_SOLID Handle: 2003073019270900
Added files: (Branch: OPENPKG_1_3_SOLID)
openpkg-src/ncurses ncurses.patch
Modified files: (Branch: OPENPKG_1_3_SOLID)
openpkg-src/ncurses ncurses.spec
Log:
MFS: changes since last merge
Summary:
Revision Changes Path
1.1.4.1 +28 -0 openpkg-src/ncurses/ncurses.patch
1.73.2.3.2.2+2 -0 openpkg-src/ncurses/ncurses.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/ncurses/ncurses.patch
============================================================================
$ cvs diff -u -r0 -r1.1.4.1 ncurses.patch
--- /dev/null 2003-07-30 20:27:09.000000000 +0200
+++ ncurses.patch 2003-07-30 20:27:09.000000000 +0200
@@ -0,0 +1,28 @@
+--- include/curses.h.in.dist 2003-07-30 15:13:01.000000000 +0200
++++ include/curses.h.in 2003-07-30 15:15:08.000000000 +0200
+@@ -115,6 +115,9 @@
+ * Otherwise, let it remain a typedef to avoid conflicts with other #define's.
+ * In either case, make a typedef for NCURSES_BOOL which can be used if needed
+ * from either C or C++.
++ *
++ * We have <stdbool.h> if and only if we are a ISO C 9x compiler. A configure
++ * time check is not sufficient.
+ */
+
+ #undef TRUE
+@@ -127,13 +130,13 @@
+
+ #if @USE_CXX_BOOL@ /* !__cplusplus, etc. */
+
+-#if @cf_cv_header_stdbool_h@
++#if defined(__STDC__) && (__STDC_VERSION__ >= 199901L)
+ #include <stdbool.h>
+ #endif
+
+ #undef bool
+
+-#if @cf_cv_header_stdbool_h@
++#if defined(__STDC__) && (__STDC_VERSION__ >= 199901L)
+ #define bool NCURSES_BOOL
+ #else
+ typedef NCURSES_BOOL bool;
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/ncurses/ncurses.spec
============================================================================
$ cvs diff -u -r1.73.2.3.2.1 -r1.73.2.3.2.2 ncurses.spec
--- openpkg-src/ncurses/ncurses.spec 29 Jul 2003 15:00:09 -0000 1.73.2.3.2.1
+++ openpkg-src/ncurses/ncurses.spec 30 Jul 2003 18:27:09 -0000 1.73.2.3.2.2
@@ -102,6 +102,7 @@
Patch27:
ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch27}.patch.gz
Patch28:
ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch28}.patch.gz
Patch29:
ftp://invisible-island.net/ncurses/%{V_base}/ncurses-%{V_base}-%{V_patch29}.patch.gz
+Patch30: ncurses.patch
# build information
Prefix: %{l_prefix}
@@ -129,6 +130,7 @@
do
%{l_gzip} -d -c $patchfile | %{l_patch} -p1 || true
done
+ %patch30 -p0
%build
CC="%{l_cc}" \
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]