From baf0f8f0bd0e83a675f5aa0521ae0eacb9401ef6 Mon Sep 17 00:00:00 2001 From: Michael Schroeder Date: Mon, 22 Jun 2009 12:58:42 +0200 Subject: [PATCH] - move repo_helix from src to ext --- ext/CMakeLists.txt | 4 ++-- {src => ext}/repo_helix.c | 0 {src => ext}/repo_helix.h | 0 src/CMakeLists.txt | 4 ++-- 4 files changed, 4 insertions(+), 4 deletions(-) rename {src => ext}/repo_helix.c (100%) rename {src => ext}/repo_helix.h (100%) diff --git a/ext/CMakeLists.txt b/ext/CMakeLists.txt index 8acf8c6..1f53aa8 100644 --- a/ext/CMakeLists.txt +++ b/ext/CMakeLists.txt @@ -1,12 +1,12 @@ SET(libsatsolverext_SRCS - pool_fileconflicts.c repo_content.c repo_deltainfoxml.c repo_products.c + pool_fileconflicts.c repo_content.c repo_deltainfoxml.c repo_helix.c repo_products.c repo_releasefile_products.c repo_repomdxml.c repo_rpmdb.c repo_rpmmd.c repo_susetags.c repo_updateinfoxml.c repo_write.c repo_zyppdb.c) ADD_LIBRARY(satsolverext STATIC ${libsatsolverext_SRCS}) SET(libsatsolver_HEADERS - pool_fileconflicts.h repo_content.h repo_deltainfoxml.h repo_products.h + pool_fileconflicts.h repo_content.h repo_deltainfoxml.h repo_helix.h repo_products.h repo_releasefile_products.h repo_repomdxml.h repo_rpmdb.h repo_rpmmd.h repo_susetags.h repo_updateinfoxml.h repo_write.h repo_zyppdb.h tools_util.h) diff --git a/src/repo_helix.c b/ext/repo_helix.c similarity index 100% rename from src/repo_helix.c rename to ext/repo_helix.c diff --git a/src/repo_helix.h b/ext/repo_helix.h similarity index 100% rename from src/repo_helix.h rename to ext/repo_helix.h diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 925d92f..bc42602 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,7 +1,7 @@ SET(libsatsolver_SRCS bitmap.c poolarch.c poolvendor.c poolid.c strpool.c dirpool.c - solver.c solverdebug.c repo_solv.c repo_helix.c evr.c pool.c + solver.c solverdebug.c repo_solv.c evr.c pool.c queue.c repo.c repodata.c repopage.c util.c policy.c solvable.c transaction.c rules.c problems.c) @@ -10,7 +10,7 @@ ADD_LIBRARY(satsolver STATIC ${libsatsolver_SRCS}) SET(libsatsolver_HEADERS bitmap.h evr.h hash.h policy.h poolarch.h poolvendor.h pool.h poolid.h pooltypes.h queue.h solvable.h solver.h solverdebug.h - repo.h repodata.h repopage.h repo_solv.h repo_helix.h util.h + repo.h repodata.h repopage.h repo_solv.h util.h strpool.h dirpool.h knownid.h transaction.h rules.h problems.h) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC") -- 2.7.4