mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 16:10:33 -04:00
Since Mark Crispin left the UW, development on UW-IMAP paused. Mark however continued developing the toolkit under the name Panda-IMAP. Since Mark passed, Jonathan Abbey created a project on GitHub, by concatenating all of the public releases of UW IMAP with the last version of Panda IMAP. Add conflict lines with the original ports.
78 lines
2.5 KiB
Text
78 lines
2.5 KiB
Text
*** Makefile.orig Wed May 9 00:50:45 2007
|
|
--- Makefile Mon Jul 23 16:02:26 2007
|
|
***************
|
|
*** 294,300 ****
|
|
|
|
# Make the IMAP Toolkit
|
|
|
|
! all: c-client SPECIALS rebuild bundled
|
|
|
|
c-client:
|
|
@echo Not processed yet. In a first-time build, you must specify
|
|
--- 294,300 ----
|
|
|
|
# Make the IMAP Toolkit
|
|
|
|
! all: c-client SPECIALS rebuild
|
|
|
|
c-client:
|
|
@echo Not processed yet. In a first-time build, you must specify
|
|
***************
|
|
*** 559,567 ****
|
|
@echo + In order to rectify this problem, you MUST build with:
|
|
@echo ++ SSLTYPE=$(SSLTYPE).nopwd
|
|
@echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
- @echo
|
|
- @echo Do you want to continue this build anyway? Type y or n please:
|
|
- @$(SH) -c 'read x; case "$$x" in y) exit 0;; *) (make nounenc;exit 1);; esac'
|
|
|
|
nounenc:
|
|
@echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
--- 559,564 ----
|
|
***************
|
|
*** 582,590 ****
|
|
@echo ++ SSLTYPE=nopwd
|
|
@echo + You must also have OpenSSL or equivalent installed.
|
|
@echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
- @echo
|
|
- @echo Do you want to continue this build anyway? Type y or n please:
|
|
- @$(SH) -c 'read x; case "$$x" in y) exit 0;; *) (make nonossl;exit 1);; esac'
|
|
|
|
nonossl:
|
|
@echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
--- 579,584 ----
|
|
***************
|
|
*** 659,665 ****
|
|
$(TOOLS)/$@ "$(LN)" src/tmail tmail
|
|
$(LN) $(TOOLS)/$@ .
|
|
|
|
! build: OSTYPE rebuild rebuildclean bundled
|
|
|
|
OSTYPE:
|
|
@$(MAKE) ip$(IP)
|
|
--- 653,659 ----
|
|
$(TOOLS)/$@ "$(LN)" src/tmail tmail
|
|
$(LN) $(TOOLS)/$@ .
|
|
|
|
! build: OSTYPE rebuild rebuildclean
|
|
|
|
OSTYPE:
|
|
@$(MAKE) ip$(IP)
|
|
***************
|
|
*** 679,686 ****
|
|
@$(SH) -c '(test $(BUILDTYPE) = rebuild -o $(BUILDTYPE) = `$(CAT) OSTYPE`) || (echo Already built for `$(CAT) OSTYPE` -- you must do \"make clean\" first && exit 1)'
|
|
@echo Rebuilding c-client for `$(CAT) OSTYPE`...
|
|
@$(TOUCH) SPECIALS
|
|
! $(CD) c-client;$(MAKE) all CC=`$(CAT) CCTYPE` \
|
|
! CFLAGS="`$(CAT) CFLAGS`" `$(CAT) SPECIALS`
|
|
|
|
rebuildclean:
|
|
$(SH) -c '$(RM) rebuild || true'
|
|
--- 673,679 ----
|
|
@$(SH) -c '(test $(BUILDTYPE) = rebuild -o $(BUILDTYPE) = `$(CAT) OSTYPE`) || (echo Already built for `$(CAT) OSTYPE` -- you must do \"make clean\" first && exit 1)'
|
|
@echo Rebuilding c-client for `$(CAT) OSTYPE`...
|
|
@$(TOUCH) SPECIALS
|
|
! $(CD) c-client;$(MAKE) all CFLAGS="`$(CAT) CFLAGS`" `$(CAT) SPECIALS`
|
|
|
|
rebuildclean:
|
|
$(SH) -c '$(RM) rebuild || true'
|