123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- --------------------
- ./configure --prefix ../zlib
- Wed Jan 9 06:41:21 PST 2013
- Checking for gcc...
- === ztest3938.c ===
- extern int getchar();
- int hello() {return getchar();}
- ===
- gcc -c -O3 ztest3938.c
- ... using gcc
- Checking for shared library support...
- === ztest3938.c ===
- extern int getchar();
- int hello() {return getchar();}
- ===
- gcc -w -c -O3 -fPIC ztest3938.c
- gcc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map -O3 -fPIC -o ztest3938.so ztest3938.o
- Building shared library libz.so.1.2.7 with gcc.
- === ztest3938.c ===
- #include <sys/types.h>
- off64_t dummy = 0;
- ===
- gcc -c -O3 -D_LARGEFILE64_SOURCE=1 ztest3938.c
- Checking for off64_t... Yes.
- Checking for fseeko... Yes.
- === ztest3938.c ===
- #include <string.h>
- #include <errno.h>
- int main() { return strlen(strerror(errno)); }
- ===
- gcc -O3 -D_LARGEFILE64_SOURCE=1 -o ztest3938 ztest3938.c
- Checking for strerror... Yes.
- === ztest3938.c ===
- #include <unistd.h>
- int main() { return 0; }
- ===
- gcc -c -O3 -D_LARGEFILE64_SOURCE=1 ztest3938.c
- Checking for unistd.h... Yes.
- === ztest3938.c ===
- #include <stdarg.h>
- int main() { return 0; }
- ===
- gcc -c -O3 -D_LARGEFILE64_SOURCE=1 ztest3938.c
- Checking for stdarg.h... Yes.
- === ztest3938.c ===
- #include <stdio.h>
- #include <stdarg.h>
- #include "zconf.h"
- int main()
- {
- #ifndef STDC
- choke me
- #endif
- return 0;
- }
- ===
- gcc -c -O3 -D_LARGEFILE64_SOURCE=1 ztest3938.c
- Checking whether to use vs[n]printf() or s[n]printf()... using vs[n]printf().
- === ztest3938.c ===
- #include <stdio.h>
- #include <stdarg.h>
- int mytest(const char *fmt, ...)
- {
- char buf[20];
- va_list ap;
- va_start(ap, fmt);
- vsnprintf(buf, sizeof(buf), fmt, ap);
- va_end(ap);
- return 0;
- }
- int main()
- {
- return (mytest("Hello%d\n", 1));
- }
- ===
- gcc -O3 -D_LARGEFILE64_SOURCE=1 -o ztest3938 ztest3938.c
- Checking for vsnprintf() in stdio.h... Yes.
- === ztest3938.c ===
- #include <stdio.h>
- #include <stdarg.h>
- int mytest(const char *fmt, ...)
- {
- int n;
- char buf[20];
- va_list ap;
- va_start(ap, fmt);
- n = vsnprintf(buf, sizeof(buf), fmt, ap);
- va_end(ap);
- return n;
- }
- int main()
- {
- return (mytest("Hello%d\n", 1));
- }
- ===
- gcc -c -O3 -D_LARGEFILE64_SOURCE=1 ztest3938.c
- Checking for return value of vsnprintf()... Yes.
- === ztest3938.c ===
- #define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
- int ZLIB_INTERNAL foo;
- int main()
- {
- return 0;
- }
- ===
- gcc -c -O3 -D_LARGEFILE64_SOURCE=1 ztest3938.c
- Checking for attribute(visibility) support... Yes.
- === ztest3938.c ===
- #include <stdio.h>
- #define is32(n,t) for(n=1,k=0;n;n<<=1,k++);if(k==32){puts(t);return 0;}
- int main() {
- int k;
- unsigned i;
- unsigned long l;
- unsigned short s;
- is32(i, "unsigned")
- is32(l, "unsigned long")
- is32(s, "unsigned short")
- return 1;
- }
- ===
- gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN ztest3938.c -o ztest3938
- Looking for a four-byte integer type... Found.
- ALL = static shared all64
- AR = ar
- ARFLAGS = rc
- CC = gcc
- CFLAGS = -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN
- CPP = gcc -E
- EXE =
- LDCONFIG = ldconfig
- LDFLAGS =
- LDSHARED = gcc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map
- LDSHAREDLIBC = -lc
- OBJC = $(OBJZ) $(OBJG)
- PIC_OBJC = $(PIC_OBJZ) $(PIC_OBJG)
- RANLIB = ranlib
- SFLAGS = -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN
- SHAREDLIB = libz.so
- SHAREDLIBM = libz.so.1
- SHAREDLIBV = libz.so.1.2.7
- STATICLIB = libz.a
- TEST = all teststatic testshared test64
- VER = 1.2.7
- Z_U4 = unsigned
- exec_prefix = ${prefix}
- includedir = ${prefix}/include
- libdir = ${exec_prefix}/lib
- mandir = ${prefix}/share/man
- prefix = ../zlib
- sharedlibdir = ${libdir}
- uname = Linux
- --------------------
|