Build with gcc-2.95.3 and python-2.2, remove incompat CFLAGS and casts.
CVS patchset: 7082 CVS date: 2004/01/22 14:28:08
This commit is contained in:
parent
5c2cdc1763
commit
b8988af3c5
|
@ -5,12 +5,12 @@ export LDFLAGS
|
|||
|
||||
LTV="libtoolize (GNU libtool) 1.5"
|
||||
ACV="autoconf (GNU Autoconf) 2.59"
|
||||
AMV="automake (GNU automake) 1.8"
|
||||
AMV="automake (GNU automake) 1.8.2"
|
||||
USAGE="
|
||||
This script documents the versions of the tools I'm using to build rpm:
|
||||
libtool-1.5
|
||||
autoconf-2.59
|
||||
automake-1.8
|
||||
automake-1.8.2
|
||||
Simply edit this script to change the libtool/autoconf/automake versions
|
||||
checked if you need to, as rpm should build (and has built) with all
|
||||
recent versions of libtool/autoconf/automake.
|
||||
|
|
|
@ -55,7 +55,7 @@ AC_MINIX
|
|||
AS=${AS-as}
|
||||
AC_SUBST(AS)
|
||||
if test "$ac_cv_c_compiler_gnu" = yes; then
|
||||
CFLAGS="$CFLAGS -fPIC -DPIC -D_GNU_SOURCE -D_REENTRANT -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wno-char-subscripts -Wno-strict-aliasing"
|
||||
CFLAGS="$CFLAGS -fPIC -DPIC -D_GNU_SOURCE -D_REENTRANT -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wno-char-subscripts"
|
||||
fi
|
||||
export CFLAGS
|
||||
|
||||
|
|
|
@ -5,12 +5,12 @@ export LDFLAGS
|
|||
|
||||
LTV="libtoolize (GNU libtool) 1.5"
|
||||
ACV="autoconf (GNU Autoconf) 2.59"
|
||||
AMV="automake (GNU automake) 1.8"
|
||||
AMV="automake (GNU automake) 1.8.2"
|
||||
USAGE="
|
||||
This script documents the versions of the tools I'm using to build rpm:
|
||||
libtool-1.5
|
||||
autoconf-2.59
|
||||
automake-1.8
|
||||
automake-1.8.2
|
||||
Simply edit this script to change the libtool/autoconf/automake versions
|
||||
checked if you need to, as rpm should build (and has built) with all
|
||||
recent versions of libtool/autoconf/automake.
|
||||
|
|
|
@ -5,12 +5,12 @@ export LDFLAGS
|
|||
|
||||
LTV="libtoolize (GNU libtool) 1.5"
|
||||
ACV="autoconf (GNU Autoconf) 2.59"
|
||||
AMV="automake (GNU automake) 1.8"
|
||||
AMV="automake (GNU automake) 1.8.2"
|
||||
USAGE="
|
||||
This script documents the versions of the tools I'm using to build rpm:
|
||||
libtool-1.5
|
||||
autoconf-2.59
|
||||
automake-1.8
|
||||
automake-1.8.2
|
||||
Simply edit this script to change the libtool/autoconf/automake versions
|
||||
checked if you need to, as rpm should build (and has built) with all
|
||||
recent versions of libtool/autoconf/automake.
|
||||
|
|
|
@ -316,7 +316,7 @@ PyTypeObject rpmfd_Type = {
|
|||
(initproc) rpmfd_init, /* tp_init */
|
||||
(allocfunc) rpmfd_alloc, /* tp_alloc */
|
||||
(newfunc) rpmfd_new, /* tp_new */
|
||||
(freefunc) rpmfd_free, /* tp_free */
|
||||
rpmfd_free, /* tp_free */
|
||||
0, /* tp_is_gc */
|
||||
#endif
|
||||
};
|
||||
|
|
|
@ -560,7 +560,7 @@ PyTypeObject rpmfts_Type = {
|
|||
(initproc) rpmfts_init, /* tp_init */
|
||||
rpmfts_alloc, /* tp_alloc */
|
||||
rpmfts_new, /* tp_new */
|
||||
(freefunc) rpmfts_free, /* tp_free */
|
||||
rpmfts_free, /* tp_free */
|
||||
0, /* tp_is_gc */
|
||||
};
|
||||
/*@=fullinitblock@*/
|
||||
|
|
|
@ -363,7 +363,7 @@ PyTypeObject rpmrc_Type = {
|
|||
rpmrc_init, /* tp_init */
|
||||
rpmrc_alloc, /* tp_alloc */
|
||||
rpmrc_new, /* tp_new */
|
||||
(freefunc) rpmrc_free, /* tp_free */
|
||||
rpmrc_free, /* tp_free */
|
||||
0, /* tp_is_gc */
|
||||
};
|
||||
#else
|
||||
|
|
|
@ -1547,7 +1547,7 @@ PyTypeObject rpmts_Type = {
|
|||
(initproc) rpmts_init, /* tp_init */
|
||||
(allocfunc) rpmts_alloc, /* tp_alloc */
|
||||
(newfunc) rpmts_new, /* tp_new */
|
||||
(freefunc) rpmts_free, /* tp_free */
|
||||
rpmts_free, /* tp_free */
|
||||
0, /* tp_is_gc */
|
||||
#endif
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue