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:25:46
  Branch: OPENPKG_1_STABLE                 Handle: 2003073019254500

  Added files:              (Branch: OPENPKG_1_STABLE)
    openpkg-src/ncurses     ncurses.patch
  Modified files:           (Branch: OPENPKG_1_STABLE)
    openpkg-src/ncurses     ncurses.spec

  Log:
    MFC: changes since last merge

  Summary:
    Revision    Changes     Path
    1.1.2.1     +28 -0      openpkg-src/ncurses/ncurses.patch
    1.73.2.4    +3  -1      openpkg-src/ncurses/ncurses.spec
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: openpkg-src/ncurses/ncurses.patch
  ============================================================================
  $ cvs diff -u -r0 -r1.1.2.1 ncurses.patch
  --- /dev/null 2003-07-30 20:25:45.000000000 +0200
  +++ ncurses.patch     2003-07-30 20:25:46.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 -r1.73.2.4 ncurses.spec
  --- openpkg-src/ncurses/ncurses.spec  28 Jul 2003 11:38:37 -0000      1.73.2.3
  +++ openpkg-src/ncurses/ncurses.spec  30 Jul 2003 18:25:45 -0000      1.73.2.4
  @@ -68,7 +68,7 @@
   Group:        Terminal
   License:      GPL
   Version:      %{V_base}.%{V_patchL}
  -Release:      1.20030728
  +Release:      1.20030730
   
   #   list of sources
   Source0:      ftp://invisible-island.net/ncurses/ncurses-%{V_base}.tar.gz
  @@ -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]

Reply via email to