OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Matthias Kurz
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 09-Jun-2005 12:16:31
Branch: HEAD Handle: 2005060911163100
Modified files:
openpkg-src/cvs cvs.spec
Log:
- forced usage of included getopt under Solaris
- added CPPFLAGS to avoid warning from configure
WARNING: Package ZLIB is more recent than requested external version
(1.2.1 > 1.1.3). configure with the --without-external-zlib
option to select the more recent version.
Summary:
Revision Changes Path
1.100 +8 -2 openpkg-src/cvs/cvs.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/cvs/cvs.spec
============================================================================
$ cvs diff -u -r1.99 -r1.100 cvs.spec
--- openpkg-src/cvs/cvs.spec 26 May 2005 20:23:19 -0000 1.99
+++ openpkg-src/cvs/cvs.spec 9 Jun 2005 10:16:31 -0000 1.100
@@ -37,7 +37,7 @@
Group: SCM
License: GPL
Version: %{V_cvs}
-Release: 20050526
+Release: 20050609
# package options
%option with_fsl yes
@@ -110,15 +110,21 @@
%build
# configure CVS package
+ rm -f config.cache
+ case "%{l_platform -t}" in
+ *-sunos* ) (echo "ac_cv_header_getopt_h=no"
+ echo "ac_cv_func_getopt_long_only=no") >config.cache;;
+ esac
CC="%{l_cc}" \
%if "%{with_rse}" == "yes"
CFLAGS="%{l_cflags -O} -DRSE_PATCHES" \
%else
CFLAGS="%{l_cflags -O}" \
%endif
+ CPPFLAGS="%{l_cppflags}" \
LDFLAGS="%{l_fsl_ldflags}" \
LIBS="%{l_fsl_libs}" \
- ./configure \
+ ./configure -C \
--prefix=%{l_prefix} \
--with-patch=%{l_prefix}/bin/patch \
--with-tmpdir=%{l_prefix}/var/cvs/tmp \
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [email protected]