mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 06:40:33 -04:00
- Install additional cclient header files - Move SSL dependency generation for cclient to post-build - Bump PORTEPOCH - Removed -drac PKGNAMESUFFIX,more confusion than extra info - Remove futile build of imapd/ipop3d/ipop2d in cclient, and libc-client4.a in the imap-uw port. - Respect CFLAGS and CC PR: 30954 Submitted by: maintainer
58 lines
1.4 KiB
Text
58 lines
1.4 KiB
Text
--- Makefile.orig Tue Jul 3 08:00:09 2001
|
|
+++ Makefile Mon Oct 1 03:27:22 2001
|
|
@@ -43,6 +43,7 @@
|
|
# art AIX 2.2.1 for RT
|
|
# asv Altos SVR4
|
|
# aux A/UX
|
|
+# bfp FreeBSD with Pluggable Authentication Modules (PAM)
|
|
# bs3 BSD/i386 3.0 and higher
|
|
# bsd generic BSD 4.3 (as in ancient 1980s version)
|
|
# bsf FreeBSD
|
|
@@ -146,7 +147,7 @@
|
|
# std system standard (typically passwd file), determined by port
|
|
# two try alternative (defined by CHECKPWALT), then std
|
|
|
|
-PASSWDTYPE=std
|
|
+PASSWDTYPE=pam
|
|
|
|
|
|
# SSL type. Defines whether or not SSL support is on this system
|
|
@@ -211,12 +212,12 @@
|
|
# gradually-increasing intervals, starting at 2800-2900, and becoming
|
|
# permanent at 48,300.
|
|
|
|
-EXTRACFLAGS=
|
|
+EXTRACFLAGS=-I$(PREFIX)/include/c-client
|
|
|
|
|
|
# Extra linker flags (additional/alternative libraries, etc.)
|
|
|
|
-EXTRALDFLAGS=
|
|
+EXTRALDFLAGS=-L$(PREFIX)/lib -lc-client4
|
|
|
|
|
|
# Special make flags (e.g. to override make environment variables)
|
|
@@ -256,13 +257,7 @@
|
|
|
|
# Make the IMAP Toolkit
|
|
|
|
-all: c-client rebuild bundled
|
|
-
|
|
-c-client:
|
|
- @echo Not processed yet. In a first-time build, you must specify
|
|
- @echo the system type so that the sources are properly processed.
|
|
- @false
|
|
-
|
|
+all: bundled
|
|
|
|
# Note on SCO you may have to set LN to "ln".
|
|
|
|
@@ -367,7 +362,7 @@
|
|
$(TOOLS)/$@ "$(LN)" src/imapd imapd
|
|
$(LN) $(TOOLS)/$@ .
|
|
|
|
-build: OSTYPE rebuild rebuildclean bundled
|
|
+build: bundled
|
|
|
|
OSTYPE:
|
|
@echo Building c-client for $(BUILDTYPE)...
|