imap-2007e-shared.patch

This commit is contained in:
Chris 2019-01-03 04:24:23 -06:00
parent c95dae6cbf
commit 1954d712b0

View File

@ -170,6 +170,10 @@ BUILD=$(MAKE) build EXTRACFLAGS='$(EXTRACFLAGS)'\
EXTRADRIVERS='$(EXTRADRIVERS)' EXTRAAUTHENTICATORS='$(EXTRAAUTHENTICATORS)'\ EXTRADRIVERS='$(EXTRADRIVERS)' EXTRAAUTHENTICATORS='$(EXTRAAUTHENTICATORS)'\
PASSWDTYPE=$(PASSWDTYPE) SSLTYPE=$(SSLTYPE) IP=$(IP) PASSWDTYPE=$(PASSWDTYPE) SSLTYPE=$(SSLTYPE) IP=$(IP)
# Need this for the shared library rule to work correctly
.SUFFIXES: .o .so
SOFILES=${BINARIES:.o=.so}
# Here if no make argument established # Here if no make argument established
@ -853,18 +857,24 @@ vu2: # VAX Ultrix 2.3, etc.
# Build it! # Build it!
build: clean once $(ARCHIVE) build: clean once $(ARCHIVE) $(SHLIBNAME)
all: $(ARCHIVE) all: $(ARCHIVE) $(SHLIBNAME)
$(ARCHIVE): $(BINARIES) $(ARCHIVE): $(BINARIES)
sh -c '$(RM) $(ARCHIVE) || true' sh -c '$(RM) $(ARCHIVE) || true'
@$(CAT) ARCHIVE @$(CAT) ARCHIVE
@$(SH) ARCHIVE @$(SH) ARCHIVE
.c.o: $(SHLIBNAME): $(SOFILES)
`$(CAT) CCTYPE` -c `$(CAT) CFLAGS` $*.c gcc -shared -Wl,-soname,$(SHLIBNAME) -o $(SHLIBNAME) $(SOFILES) `cat LDFLAGS`
ln -s $(SHLIBNAME) lib$(SHLIBBASE).so
.c.so: osdep.h
$(CC) -fPIC -DPIC -D_REENTRANT -c `$(CAT) CFLAGS` ${@:.so=.c} -o $@
.c.o:
$(CC) -fPIC -DPIC -D_REENTRANT -c `$(CAT) CFLAGS` $*.c
# Cleanup # Cleanup
@ -903,8 +913,7 @@ utf8aux.o: mail.h misc.h osdep.h utf8.h
# OS-dependent # OS-dependent
OSDEPS= mail.h misc.h env.h fs.h ftl.h nl.h tcp.h \
osdep.o:mail.h misc.h env.h fs.h ftl.h nl.h tcp.h \
osdep.h env_unix.h tcp_unix.h \ osdep.h env_unix.h tcp_unix.h \
osdep.c env_unix.c fs_unix.c ftl_unix.c nl_unix.c tcp_unix.c ip_unix.c\ osdep.c env_unix.c fs_unix.c ftl_unix.c nl_unix.c tcp_unix.c ip_unix.c\
auths.c crexcl.c flockcyg.c flocklnx.c flocksim.c fsync.c \ auths.c crexcl.c flockcyg.c flocklnx.c flocksim.c fsync.c \
@ -918,12 +927,19 @@ osdep.o:mail.h misc.h env.h fs.h ftl.h nl.h tcp.h \
write.c sslstdio.c \ write.c sslstdio.c \
strerror.c strpbrk.c strstr.c strtok.c strtoul.c \ strerror.c strpbrk.c strstr.c strtok.c strtoul.c \
OSCFLAGS OSCFLAGS
osdep.o: $(OSDEPS)
$(CC) -fPIC -DPIC -D_REENTRANT `$(CAT) CFLAGS` `$(CAT) OSCFLAGS` -c osdep.c
@echo ========================================================================
@echo Building OS-dependent module @echo Building OS-dependent module
@echo If you get No such file error messages for files x509.h, ssl.h, @echo If you get No such file error messages for files x509.h, ssl.h,
@echo pem.h, buffer.h, bio.h, and crypto.h, that means that OpenSSL @echo pem.h, buffer.h, bio.h, and crypto.h, that means that OpenSSL
@echo is not installed on your system. Either install OpenSSL first @echo is not installed on your system. Either install OpenSSL first
@echo or build with command: make `$(CAT) OSTYPE` SSLTYPE=none @echo or build with command: make `$(CAT) OSTYPE` SSLTYPE=none
`$(CAT) CCTYPE` -c `$(CAT) CFLAGS` `$(CAT) OSCFLAGS` -c osdep.c @echo ========================================================================
osdep.so: $(OSDEPS)
$(CC) -fPIC -DPIC -D_REENTRANT `$(CAT) CFLAGS` `cat OSCFLAGS` -c osdep.c -o $@
osdep.c: osdepbas.c osdepckp.c osdeplog.c osdepssl.c osdep.c: osdepbas.c osdepckp.c osdeplog.c osdepssl.c
$(CAT) osdepbas.c osdepckp.c osdeplog.c osdepssl.c > osdep.c $(CAT) osdepbas.c osdepckp.c osdeplog.c osdepssl.c > osdep.c