1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
$ ./configure && make && make install
checking for epkg... no
checking for mkencap... no
checking for gcc... gcc
checking for C compiler default output... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... .exe
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for strlcpy... no
checking for strsep... no
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ANSI C... (cached) none needed
checking for ranlib... ranlib
checking for a BSD-compatible install... /bin/install -c
checking whether ln -s works... yes
checking whether make sets $(MAKE)... yes
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for AIX... no
checking for an ANSI C-conforming const... yes
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for unistd.h... (cached) yes
checking whether sys/types.h defines makedev... no
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/sysmacros.h usability... no
checking sys/sysmacros.h presence... no
checking for sys/sysmacros.h... no
checking for major_t... no
checking for minor_t... no
checking for dev_t... yes
checking for socklen_t... no
checking for uint64_t... yes
checking for mode_t... yes
checking for off_t... yes
checking for size_t... yes
checking for uid_t in sys/types.h... no
checking for nlink_t... no
checking libgen.h usability... no
checking libgen.h presence... no
checking for libgen.h... no
checking for working basename... no
checking for libgen.h... (cached) no
checking for working dirname... no
checking fnmatch.h usability... no
checking fnmatch.h presence... no
checking for fnmatch.h... no
checking ctype.h usability... yes
checking ctype.h presence... yes
checking for ctype.h... yes
checking for lchown... no
checking whether makedev expects three arguments... no
checking for working snprintf... no
checking for strdup... yes
checking for strftime... yes
checking for strlcpy... (cached) no
checking for strmode... no
checking for strsep... (cached) no
checking for gzread in -lz... no
configure: creating ./config.status
config.status: creating listhash/libtar_listhash.h
config.status: creating listhash/libtar_list.c
config.status: creating listhash/libtar_hash.c
config.status: creating listhash/libtar_list_new.3
config.status: creating listhash/libtar_hash_new.3
config.status: creating Makefile
config.status: creating lib/Makefile
config.status: creating libtar/Makefile
config.status: creating doc/Makefile
config.status: creating config.h
for n in lib libtar doc; do \
( cd $n && make all ) || exit 1; \
done
make[1]: Entering directory `/home/test/libtar/lib'
gcc -g -O2 -I. -I.. -I. -I../compat -I../listhash -c -o append.o append.c
In file included from ./internal.h:16,
from append.c:13:
./libtar.h:18:17: tar.h: No such file or directory
append.c: In function `tar_append_file':
append.c:124: error: `LNKTYPE' undeclared (first use in this function)
append.c:124: error: (Each undeclared identifier is reported only once
append.c:124: error: for each function it appears in.)
append.c:144: error: `SYMTYPE' undeclared (first use in this function)
append.c:179: error: `REGTYPE' undeclared (first use in this function)
append.c:179: error: `AREGTYPE' undeclared (first use in this function)
append.c:179: error: `CONTTYPE' undeclared (first use in this function)
make[1]: *** [append.o] Error 1
make[1]: Leaving directory `/home/test/libtar/lib'
make: *** [all] Error 1 |
Partager