summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-11-23 10:20:19 +0200
committerPanu Matilainen <pmatilai@redhat.com>2007-11-23 10:20:19 +0200
commit2c6905dd9f10589e80eb9292992510a1e070cfe4 (patch)
treec8d671da613dcb8c34f34ad488131bd61ba44739 /build
parent178e32a0baf9759035e6f4b633b0396623eba80b (diff)
downloadlibrpm-tizen-2c6905dd9f10589e80eb9292992510a1e070cfe4.tar.gz
librpm-tizen-2c6905dd9f10589e80eb9292992510a1e070cfe4.tar.bz2
librpm-tizen-2c6905dd9f10589e80eb9292992510a1e070cfe4.zip
Move rpmGetPath and rpmGenPath to rpmfileutil.h
Diffstat (limited to 'build')
-rw-r--r--build/parseFiles.c1
-rw-r--r--build/parsePreamble.c1
-rw-r--r--build/parseSpec.c1
-rw-r--r--build/spec.c1
4 files changed, 4 insertions, 0 deletions
diff --git a/build/parseFiles.c b/build/parseFiles.c
index 8549b4443..bd12c05d0 100644
--- a/build/parseFiles.c
+++ b/build/parseFiles.c
@@ -7,6 +7,7 @@
#include <rpmbuild.h>
#include <rpmlog.h>
+#include <rpmfileutil.h>
#include "debug.h"
/* These have to be global scope to make up for *stupid* compilers */
diff --git a/build/parsePreamble.c b/build/parsePreamble.c
index 226ddd1dc..2593313db 100644
--- a/build/parsePreamble.c
+++ b/build/parsePreamble.c
@@ -7,6 +7,7 @@
#include <rpmbuild.h>
#include <rpmlog.h>
+#include <rpmfileutil.h>
#include "debug.h"
#define SKIPSPACE(s) { while (*(s) && xisspace(*(s))) (s)++; }
diff --git a/build/parseSpec.c b/build/parseSpec.c
index ddc29b89f..50230acd6 100644
--- a/build/parseSpec.c
+++ b/build/parseSpec.c
@@ -9,6 +9,7 @@
#include <rpmds.h>
#include <rpmts.h>
#include <rpmlog.h>
+#include <rpmfileutil.h>
#include "debug.h"
#define SKIPSPACE(s) { while (*(s) && xisspace(*(s))) (s)++; }
diff --git a/build/spec.c b/build/spec.c
index 558837cc6..ff7697e4a 100644
--- a/build/spec.c
+++ b/build/spec.c
@@ -10,6 +10,7 @@
#include <rpmfi.h>
#include <rpmts.h>
#include <rpmlog.h>
+#include <rpmfileutil.h>
#include "debug.h"