[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / libexec / httpd

Annotation of src/libexec/httpd/Makefile, Revision 1.5

1.5     ! mrg         1: #      $NetBSD: Makefile,v 1.4 2007/10/18 17:43:02 he Exp $
1.2       tls         2: #
1.1       tls         3: #      $eterna: Makefile,v 1.26 2005/09/27 20:09:20 mrg Exp $
                      4:
                      5: # compile-time options are:
                      6: #      DEBUG                   /* include debugging support */
                      7: #      NO_USER_SUPPORT         /* don't support /~user requests */
                      8: #      NO_CGIBIN_SUPPORT       /* don't support cgi-bin requests */
                      9: #      NO_DIRINDEX_SUPPORT     /* don't support directory indexing */
                     10: #      NO_DAEMON_MODE          /* don't support daemon mode */
                     11: #      NO_DYNAMIC_CONTENT      /* don't support dynamic content updates */
                     12: #      NO_SSL_SUPPORT          /* don't support ssl (https) */
                     13: #      DO_HTPASSWD             /* support .htpasswd files */
1.3       reed       14: COPTS+=        -DDO_HTPASSWD
1.2       tls        15: PROG=  httpd
                     16: MAN=   httpd.8
1.1       tls        17: SRCS=  bozohttpd.c ssl-bozo.c auth-bozo.c cgi-bozo.c daemon-bozo.c \
                     18:        tilde-luzah-bozo.c dir-index-bozo.c content-bozo.c
                     19:
1.5     ! mrg        20: LDADD= -lcrypt
        !            21: DPADD= ${LIBCRYPT}
        !            22:
1.1       tls        23: WARNS= 3
                     24:
1.5     ! mrg        25: .include <bsd.own.mk>
        !            26:
        !            27: .if ${MKCRYPTO} != "no"
        !            28:
        !            29: LDADD+=        -lssl -lcrypto
        !            30: DPADD+=        ${LIBSSL} ${LIBCRYPTO}
        !            31:
        !            32: .else
        !            33:
        !            34: COPTS+=        -DNO_SSL_SUPPORT
1.1       tls        35:
1.5     ! mrg        36: .endif
1.1       tls        37:
                     38: .include <bsd.prog.mk>

CVSweb <webmaster@jp.NetBSD.org>