OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Thomas Lotterer
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 15-Feb-2004 10:38:49
Branch: HEAD Handle: 2004021509384800
Modified files:
openpkg-src/sed sed.spec
Log:
ISPRINT ends up in a two parameter macro on Solaris 2.6 possibly due
to redefinition ordering problem; the macro is only used once so go
the easy way and substitute with a working macro only on this
particular platform
Summary:
Revision Changes Path
1.40 +4 -1 openpkg-src/sed/sed.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/sed/sed.spec
============================================================================
$ cvs diff -u -r1.39 -r1.40 sed.spec
--- openpkg-src/sed/sed.spec 7 Feb 2004 17:58:42 -0000 1.39
+++ openpkg-src/sed/sed.spec 15 Feb 2004 09:38:48 -0000 1.40
@@ -34,7 +34,7 @@
Group: Text
License: GPL
Version: 4.0.9
-Release: 20040207
+Release: 20040215
# list of sources
Source0: ftp://ftp.gnu.org/gnu/sed/sed-%{version}.tar.gz
@@ -63,6 +63,9 @@
%prep
%setup -q
%patch -p0
+ case "%{l_platform -t}" in
+ *-sunos5.6) %{l_shtool} subst -e 's;ISPRINT;isprint;g' sed/execute.c ;;
+ esac
%build
echo 'ac_cv_header_locale_h=no' >config.cache
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]