-/** \file lib/hash.c
+/**
+ * \file lib/hash.c
* Hash table implemenation
*/
+/** \ingroup rpmtrans
+ * \file lib/transaction.c
+ */
+
#include "system.h"
#include <rpmlib.h>
static int archOkay(Header h)
{
- int_8 * pkgArchNum;
void * pkgArch;
- int type, count, archNum;
+ int type, count;
/* make sure we're trying to install this on the proper architecture */
headerGetEntry(h, RPMTAG_ARCH, &type, (void **) &pkgArch, &count);
+#ifndef DYING
if (type == RPM_INT8_TYPE) {
+ int_8 * pkgArchNum;
+ int archNum;
+
/* old arch handling */
rpmGetArchInfo(NULL, &archNum);
pkgArchNum = pkgArch;
if (archNum != *pkgArchNum) {
return 0;
}
- } else {
+ } else
+#endif
+ {
/* new arch handling */
if (!rpmMachineScore(RPM_MACHTABLE_INSTARCH, pkgArch)) {
return 0;
/* make sure we're trying to install this on the proper os */
headerGetEntry(h, RPMTAG_OS, &type, (void **) &pkgOs, &count);
+#ifndef DYING
if (type == RPM_INT8_TYPE) {
/* v1 packages and v2 packages both used improper OS numbers, so just
deal with it hope things work */
return 1;
- } else {
+ } else
+#endif
+ {
/* new os handling */
if (!rpmMachineScore(RPM_MACHTABLE_INSTOS, pkgOs)) {
return 0;
+/** \ingroup popt
+ * \file popt/findme.c
+ */
+
/* (C) 1998 Red Hat Software, Inc. -- Licensing details are in the COPYING
file accompanying popt source distributions, available from
ftp://ftp.redhat.com/pub/code/popt */
+/** \ingroup popt
+ * \file popt/findme.h
+ */
+
/* (C) 1998 Red Hat Software, Inc. -- Licensing details are in the COPYING
file accompanying popt source distributions, available from
ftp://ftp.redhat.com/pub/code/popt */
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
+/** \ingroup popt
+ * \file popt/popt.c
+ */
+
/* (C) 1998 Red Hat Software, Inc. -- Licensing details are in the COPYING
file accompanying popt source distributions, available from
ftp://ftp.redhat.com/pub/code/popt */
+/** \ingroup popt
+ * \file popt/popt.h
+ */
+
/* (C) 1998 Red Hat Software, Inc. -- Licensing details are in the COPYING
file accompanying popt source distributions, available from
ftp://ftp.redhat.com/pub/code/popt */
+/** \ingroup popt
+ * \file popt/poptconfig.c
+ */
+
/* (C) 1998 Red Hat Software, Inc. -- Licensing details are in the COPYING
file accompanying popt source distributions, available from
ftp://ftp.redhat.com/pub/code/popt */
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
+/** \ingroup popt
+ * \file popt/popthelp.c
+ */
+
/* (C) 1998 Red Hat Software, Inc. -- Licensing details are in the COPYING
file accompanying popt source distributions, available from
ftp://ftp.redhat.com/pub/code/popt */
+/** \ingroup popt
+ * \file popt/poptint.h
+ */
+
/* (C) 1998 Red Hat Software, Inc. -- Licensing details are in the COPYING
file accompanying popt source distributions, available from
ftp://ftp.redhat.com/pub/code/popt */
+/** \ingroup popt
+ * \file popt/poptparse.c
+ */
+
/* (C) 1998 Red Hat Software, Inc. -- Licensing details are in the COPYING
file accompanying popt source distributions, available from
ftp://ftp.redhat.com/pub/code/popt */