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: 05-Aug-2003 10:04:06
Branch: HEAD Handle: 2003080509040600
Modified files:
openpkg-src/openpkg HISTORY openpkg.spec
Log:
trick cURL to skip some useless F77 autoconf checks to get it working
under NetBSD again
Summary:
Revision Changes Path
1.28 +1 -0 openpkg-src/openpkg/HISTORY
1.189 +4 -1 openpkg-src/openpkg/openpkg.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/HISTORY
============================================================================
$ cvs diff -u -r1.27 -r1.28 HISTORY
--- openpkg-src/openpkg/HISTORY 5 Aug 2003 06:52:30 -0000 1.27
+++ openpkg-src/openpkg/HISTORY 5 Aug 2003 08:04:06 -0000 1.28
@@ -2,6 +2,7 @@
2003
====
+20030805 trick cURL to skip some useless F77 autoconf checks to get it working
under NetBSD again
20030805 allow variables with other characters than A-Z (e.g. LD_LIBRARY_PATH) to
be set in %env, too.
20030730 add entry to /etc/shells only if /etc/shells already exists at all
20030729 aux.wrap{src,bin}.sh: exit immediately if uudecode cannot be found
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/openpkg.spec
============================================================================
$ cvs diff -u -r1.188 -r1.189 openpkg.spec
--- openpkg-src/openpkg/openpkg.spec 5 Aug 2003 06:52:30 -0000 1.188
+++ openpkg-src/openpkg/openpkg.spec 5 Aug 2003 08:04:06 -0000 1.189
@@ -432,7 +432,10 @@
# build cURL tool
( cd curl-%{V_curl}
- echo 'ac_cv_header_openssl_engine_h=no' >config.cache
+ ( echo 'ac_cv_header_openssl_engine_h=no'
+ echo 'lt_cv_prog_compiler_c_o_F77=no'
+ echo 'lt_cv_sys_max_cmd_len=100'
+ ) >config.cache
CC="${l_cc}" \
CFLAGS="-I`pwd`/../zlib-%{V_zlib}" \
CPPFLAGS="-I`pwd`/../zlib-%{V_zlib}" \
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]