summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorjbj <devnull@localhost>1998-10-11 15:19:55 +0000
committerjbj <devnull@localhost>1998-10-11 15:19:55 +0000
commitdf9b72c229181fb88f309631bb260b55c0c6a787 (patch)
treebef53691a8b82970cce833dfb2543aa2551900f2 /misc
parent4e498b0bcb7b0669e4eeac32d1a3052718646412 (diff)
downloadlibrpm-tizen-df9b72c229181fb88f309631bb260b55c0c6a787.tar.gz
librpm-tizen-df9b72c229181fb88f309631bb260b55c0c6a787.tar.bz2
librpm-tizen-df9b72c229181fb88f309631bb260b55c0c6a787.zip
permit rpm to be built in a sub-directory (--srcdir=DIR).
CVS patchset: 2441 CVS date: 1998/10/11 15:19:55
Diffstat (limited to 'misc')
-rw-r--r--misc/Makefile.am4
-rw-r--r--misc/Makefile.in6
-rw-r--r--misc/inet_aton.h5
3 files changed, 6 insertions, 9 deletions
diff --git a/misc/Makefile.am b/misc/Makefile.am
index 04ff934b1..ee4e60333 100644
--- a/misc/Makefile.am
+++ b/misc/Makefile.am
@@ -2,6 +2,8 @@
AUTOMAKE_OPTIONS = 1.3 foreign
+INCLUDES = -I$(top_srcdir) @INCPATH@
+
EXTRA_DIST = \
alloca.c error.c fakefork.c fnmatch.c \
getcwd.c getmntent.c getwd.c glob.c \
@@ -12,7 +14,7 @@ EXTRA_DIST = \
strtol.c strtoul.c
noinst_HEADERS = \
- error.h fnmatch.h glob.h inet_aton.h \
+ error.h fnmatch.h glob.h \
libgettext.h message.h po-lex.h str-list.h \
fstrcmp.h
diff --git a/misc/Makefile.in b/misc/Makefile.in
index 042bd39e0..55fd0a7d8 100644
--- a/misc/Makefile.in
+++ b/misc/Makefile.in
@@ -109,12 +109,12 @@ USE_NLS = @USE_NLS@
VERSION = @VERSION@
l = @l@
tmpdir = @tmpdir@
-topdir = @topdir@
-topsrcdir = @topsrcdir@
varprefix = @varprefix@
AUTOMAKE_OPTIONS = 1.3 foreign
+INCLUDES = -I$(top_srcdir) @INCPATH@
+
EXTRA_DIST = \
alloca.c error.c fakefork.c fnmatch.c \
getcwd.c getmntent.c getwd.c glob.c \
@@ -125,7 +125,7 @@ EXTRA_DIST = \
strtol.c strtoul.c
noinst_HEADERS = \
- error.h fnmatch.h glob.h inet_aton.h \
+ error.h fnmatch.h glob.h \
libgettext.h message.h po-lex.h str-list.h \
fstrcmp.h
diff --git a/misc/inet_aton.h b/misc/inet_aton.h
deleted file mode 100644
index fddbd1feb..000000000
--- a/misc/inet_aton.h
+++ /dev/null
@@ -1,5 +0,0 @@
-#ifndef HAVE_INET_ATON
-
-int inet_aton(const char *cp, struct in_addr *inp);
-
-#endif