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 openpkg-web Date: 15-Oct-2003 12:16:47
Branch: HEAD Handle: 2003101511164502
Modified files:
openpkg-src/openpkg HISTORY openpkg.spec rpm.patch.bugfix
rpm.patch.feature rpm.patch.porting
rpm.patch.regen
openpkg-web news.txt
Log:
fix RPM for building without GCC again
Summary:
Revision Changes Path
1.71 +1 -0 openpkg-src/openpkg/HISTORY
1.231 +1 -1 openpkg-src/openpkg/openpkg.spec
1.29 +1 -1 openpkg-src/openpkg/rpm.patch.bugfix
1.30 +1 -1 openpkg-src/openpkg/rpm.patch.feature
1.33 +25 -7 openpkg-src/openpkg/rpm.patch.porting
1.28 +1 -1 openpkg-src/openpkg/rpm.patch.regen
1.7012 +1 -0 openpkg-web/news.txt
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/HISTORY
============================================================================
$ cvs diff -u -r1.70 -r1.71 HISTORY
--- openpkg-src/openpkg/HISTORY 14 Oct 2003 18:33:54 -0000 1.70
+++ openpkg-src/openpkg/HISTORY 15 Oct 2003 10:16:46 -0000 1.71
@@ -2,6 +2,7 @@
2003
====
+20031014 fix RPM for building without GCC again
20031014 port to Solaris 8 with Forte C compiler
20031014 fix filesystem space checking (aux.prereq.sh)
20031014 get rid of TEMPDIR (we use more canonical TMPDIR now only)
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/openpkg.spec
============================================================================
$ cvs diff -u -r1.230 -r1.231 openpkg.spec
--- openpkg-src/openpkg/openpkg.spec 14 Oct 2003 13:09:41 -0000 1.230
+++ openpkg-src/openpkg/openpkg.spec 15 Oct 2003 10:16:46 -0000 1.231
@@ -39,7 +39,7 @@
# o any cc(1)
# the package version/release
-%define V_openpkg 20031014
+%define V_openpkg 20031015
# the used software versions
%define V_rpm 4.2.1
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/rpm.patch.bugfix
============================================================================
$ cvs diff -u -r1.28 -r1.29 rpm.patch.bugfix
--- openpkg-src/openpkg/rpm.patch.bugfix 14 Oct 2003 18:33:54 -0000 1.28
+++ openpkg-src/openpkg/rpm.patch.bugfix 15 Oct 2003 10:16:46 -0000 1.29
@@ -10,7 +10,7 @@
## 'patch' tool to upgrade those files. Each patch snippet is annotated
## with a short description.
##
-## Created on: 14-Oct-2003
+## Created on: 15-Oct-2003
##
## ATTENTION: THIS PATCH FILE WAS AUTO-GENERATED FROM AN OPENPKG
## RPM CVS REPOSITORY, HENCE DO NOT EDIT THIS FILE.
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/rpm.patch.feature
============================================================================
$ cvs diff -u -r1.29 -r1.30 rpm.patch.feature
--- openpkg-src/openpkg/rpm.patch.feature 14 Oct 2003 18:33:54 -0000 1.29
+++ openpkg-src/openpkg/rpm.patch.feature 15 Oct 2003 10:16:46 -0000 1.30
@@ -10,7 +10,7 @@
## 'patch' tool to upgrade those files. Each patch snippet is annotated
## with a short description.
##
-## Created on: 14-Oct-2003
+## Created on: 15-Oct-2003
##
## ATTENTION: THIS PATCH FILE WAS AUTO-GENERATED FROM AN OPENPKG
## RPM CVS REPOSITORY, HENCE DO NOT EDIT THIS FILE.
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/rpm.patch.porting
============================================================================
$ cvs diff -u -r1.32 -r1.33 rpm.patch.porting
--- openpkg-src/openpkg/rpm.patch.porting 14 Oct 2003 18:33:54 -0000 1.32
+++ openpkg-src/openpkg/rpm.patch.porting 15 Oct 2003 10:16:47 -0000 1.33
@@ -10,7 +10,7 @@
## 'patch' tool to upgrade those files. Each patch snippet is annotated
## with a short description.
##
-## Created on: 14-Oct-2003
+## Created on: 15-Oct-2003
##
## ATTENTION: THIS PATCH FILE WAS AUTO-GENERATED FROM AN OPENPKG
## RPM CVS REPOSITORY, HENCE DO NOT EDIT THIS FILE.
@@ -280,7 +280,7 @@
+---------------------------------------------------------------------------
Index: file/system.h
--- file/system.h 24 Jan 2003 19:41:56 -0000 1.1.1.1
-+++ file/system.h 14 Oct 2003 18:20:45 -0000
++++ file/system.h 15 Oct 2003 10:09:30 -0000
@@ -53,6 +53,8 @@
#else
#if HAVE_ERROR && HAVE_ERROR_H
@@ -302,7 +302,7 @@
/[EMAIL PROTECTED] fileSystem @*/
/[EMAIL PROTECTED] fileSystem @*/
{
-@@ -286,9 +292,15 @@
+@@ -286,9 +292,33 @@
#if !defined(__LCLINT__)
/* Memory allocation via macro defs to get meaningful locations from mtrace() */
@@ -311,14 +311,32 @@
#define xcalloc(_nmemb, _size) (calloc((_nmemb), (_size)) ? : vmefail(0))
#define xrealloc(_ptr, _size) (realloc((_ptr), (_size)) ? : vmefail(0))
+#else
-+#define xmalloc(_size) (malloc(_size) || vmefail(0))
-+#define xcalloc(_nmemb, _size) (calloc((_nmemb), (_size)) || vmefail(0))
-+#define xrealloc(_ptr, _size) (realloc((_ptr), (_size)) || vmefail(0))
++static void *xmalloc(size_t size)
++{
++ void *vp = malloc(size);
++ if (vp == NULL)
++ vmefail(0);
++ return vp;
++}
++static void *xcalloc(size_t number, size_t size)
++{
++ void *vp = calloc(number, size);
++ if (vp == NULL)
++ vmefail(0);
++ return vp;
++}
++static void *xrealloc(void *ptr, size_t size)
++{
++ void *vp = realloc(ptr, size);
++ if (vp == NULL)
++ vmefail(0);
++ return vp;
++}
+#endif
#define xstrdup(_str) (strcpy(xmalloc(strlen(_str)+1), (_str)))
#endif
-@@ -314,9 +326,14 @@
+@@ -314,9 +344,14 @@
#if defined(__LCLINT__)
#define FILE_RCSID(id)
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/openpkg/rpm.patch.regen
============================================================================
$ cvs diff -u -r1.27 -r1.28 rpm.patch.regen
--- openpkg-src/openpkg/rpm.patch.regen 14 Oct 2003 18:33:54 -0000 1.27
+++ openpkg-src/openpkg/rpm.patch.regen 15 Oct 2003 10:16:47 -0000 1.28
@@ -10,7 +10,7 @@
## 'patch' tool to upgrade those files. Each patch snippet is annotated
## with a short description.
##
-## Created on: 14-Oct-2003
+## Created on: 15-Oct-2003
##
## ATTENTION: THIS PATCH FILE WAS AUTO-GENERATED FROM AN OPENPKG
## RPM CVS REPOSITORY, HENCE DO NOT EDIT THIS FILE.
@@ .
patch -p0 <<'@@ .'
Index: openpkg-web/news.txt
============================================================================
$ cvs diff -u -r1.7011 -r1.7012 news.txt
--- openpkg-web/news.txt 15 Oct 2003 09:37:12 -0000 1.7011
+++ openpkg-web/news.txt 15 Oct 2003 10:16:45 -0000 1.7012
@@ -1,3 +1,4 @@
+15-Oct-2003: Upgraded package: P<openpkg-20031015-20031015>
15-Oct-2003: Upgraded package: P<pnetlib-0.6.0-20031015>
15-Oct-2003: Upgraded package: P<pnet-0.6.0-20031015>
15-Oct-2003: Upgraded package: P<dia-0.92pre7-20031015>
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]