Make rpmplugins.h private for now

- We'll probably want to make some changes to the plugin type system
  before considered "ready", the current plugin slots are limited
  to 32 and Meego folks apparently want to use a largish number
  of slots. So we might want something like separate plugin type
  (collection, security... etc) and then have 32 slots per each type.
  Making this private for now to avoid having to potentially break
  the API shortly after introduction.
This commit is contained in:
Panu Matilainen 2010-12-22 13:11:40 +02:00
parent 00463e2fe0
commit d10b403011
5 changed files with 3 additions and 8 deletions

View File

@ -76,7 +76,6 @@ pkginclude_HEADERS += lib/rpmte.h
pkginclude_HEADERS += lib/rpmts.h pkginclude_HEADERS += lib/rpmts.h
pkginclude_HEADERS += lib/rpmtypes.h pkginclude_HEADERS += lib/rpmtypes.h
pkginclude_HEADERS += lib/rpmvf.h pkginclude_HEADERS += lib/rpmvf.h
pkginclude_HEADERS += lib/rpmplugins.h
pkginclude_HEADERS += sign/rpmsign.h pkginclude_HEADERS += sign/rpmsign.h

View File

@ -7,7 +7,7 @@
#include <rpm/rpmstring.h> #include <rpm/rpmstring.h>
#include <rpm/rpmts.h> #include <rpm/rpmts.h>
#include <rpm/rpmplugins.h> #include "lib/rpmplugins.h"
#define STR1(x) #x #define STR1(x) #x
#define STR(x) STR1(x) #define STR(x) STR1(x)

View File

@ -12,8 +12,8 @@
#include <rpm/rpmts.h> #include <rpm/rpmts.h>
#include <rpm/rpmdb.h> #include <rpm/rpmdb.h>
#include <rpm/rpmlog.h> #include <rpm/rpmlog.h>
#include <rpm/rpmplugins.h>
#include "lib/rpmplugins.h"
#include "lib/rpmte_internal.h" #include "lib/rpmte_internal.h"
#include "debug.h" #include "debug.h"

View File

@ -19,11 +19,11 @@
#include <rpm/rpmfi.h> #include <rpm/rpmfi.h>
#include <rpm/rpmlog.h> #include <rpm/rpmlog.h>
#include <rpm/rpmte.h> #include <rpm/rpmte.h>
#include <rpm/rpmplugins.h>
#include "rpmio/digest.h" #include "rpmio/digest.h"
#include "lib/rpmal.h" #include "lib/rpmal.h"
#include "lib/rpmchroot.h" #include "lib/rpmchroot.h"
#include "lib/rpmplugins.h"
#include "lib/rpmts_internal.h" #include "lib/rpmts_internal.h"
#include "lib/rpmte_internal.h" #include "lib/rpmte_internal.h"
#include "lib/misc.h" #include "lib/misc.h"

View File

@ -114,10 +114,6 @@ include/rpm/rpmvf.h: lib/rpmvf.h include/rpm/$(dirstamp)
$(INSTALL_DATA) $(top_srcdir)/lib/rpmvf.h include/rpm/rpmvf.h $(INSTALL_DATA) $(top_srcdir)/lib/rpmvf.h include/rpm/rpmvf.h
BUILT_SOURCES += include/rpm/rpmvf.h BUILT_SOURCES += include/rpm/rpmvf.h
CLEANFILES += include/rpm/rpmvf.h CLEANFILES += include/rpm/rpmvf.h
include/rpm/rpmplugins.h: lib/rpmplugins.h include/rpm/$(dirstamp)
$(INSTALL_DATA) $(top_srcdir)/lib/rpmplugins.h include/rpm/rpmplugins.h
BUILT_SOURCES += include/rpm/rpmplugins.h
CLEANFILES += include/rpm/rpmplugins.h
include/rpm/rpmsign.h: sign/rpmsign.h include/rpm/$(dirstamp) include/rpm/rpmsign.h: sign/rpmsign.h include/rpm/$(dirstamp)
$(INSTALL_DATA) $(top_srcdir)/sign/rpmsign.h include/rpm/rpmsign.h $(INSTALL_DATA) $(top_srcdir)/sign/rpmsign.h include/rpm/rpmsign.h
BUILT_SOURCES += include/rpm/rpmsign.h BUILT_SOURCES += include/rpm/rpmsign.h