components/httping/Makefile
author osayama <osamu.sayama@oracle.com>
Fri, 16 Sep 2016 08:38:07 +0900
changeset 6914 0c9c2d460328
parent 5682 94c0ca64c022
child 7687 1093e2a9adbd
permissions -rw-r--r--
24576350 Latin font should not be used for ASCII when monospace with CJK fonts
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
355
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     1
#
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     2
# CDDL HEADER START
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     3
#
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     7
#
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    11
# and limitations under the License.
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    12
#
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    18
#
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    19
# CDDL HEADER END
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    20
#
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    21
355
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    22
#
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    23
# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    24
#
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    25
BUILD_BITS= 64
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    26
COMPILER= gcc
355
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    27
include ../../make-rules/shared-macros.mk
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    28
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    29
COMPONENT_NAME=		httping
3890
9eec2b00040d 20555268 httping should be updated to version 2.4
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    30
COMPONENT_VERSION=	2.4
355
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    31
COMPONENT_PROJECT_URL=	http://www.vanheusden.com/httping/
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    32
COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tgz
800
2ad056ed89ec 7163771 sha1 should not be used in userland-fetch and userland component/*/Makefile
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents: 411
diff changeset
    33
COMPONENT_ARCHIVE_HASH=	\
3890
9eec2b00040d 20555268 httping should be updated to version 2.4
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    34
    sha256:dab59f02b08bfbbc978c005bb16d2db6fe21e1fc841fde96af3d497ddfc82084
355
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    35
COMPONENT_ARCHIVE_URL=	http://www.vanheusden.com/$(COMPONENT_NAME)/$(COMPONENT_ARCHIVE)
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    36
3890
9eec2b00040d 20555268 httping should be updated to version 2.4
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    37
TPNO=			21552
1948
2d1537e7942d 18978320 Userland components should specify TPNOs in Makefiles instead of pkg manifests
John Beck <John.Beck@Oracle.COM>
parents: 1172
diff changeset
    38
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    39
BUILD_STYLE= justmake
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    40
TEST_TARGET= $(NO_TESTS)
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    41
include $(WS_MAKE_RULES)/common.mk
1172
812e434cd1a8 PSARC 2013/044 httping 1.5.7
Rich Burridge <rich.burridge@oracle.com>
parents: 1058
diff changeset
    42
4958
4a90498f6d6d 21955921 libsocket tweak needed for httping
John Beck <John.Beck@Oracle.COM>
parents: 4339
diff changeset
    43
ifeq ($(OS_VERSION),5.11)
4a90498f6d6d 21955921 libsocket tweak needed for httping
John Beck <John.Beck@Oracle.COM>
parents: 4339
diff changeset
    44
EXTRA_LIBRARIES =	-lsocket -lnsl
4a90498f6d6d 21955921 libsocket tweak needed for httping
John Beck <John.Beck@Oracle.COM>
parents: 4339
diff changeset
    45
endif
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    46
EXTRA_LIBRARIES +=	-lncurses -lfftw3 -lssl -lcrypto -lresolv -lm
355
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    47
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    48
# The usual Solaris curses.h vs ncurses/curses.h mess.
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    49
CFLAGS += -I$(USRINCDIR)/ncurses
355
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    50
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    51
# Make 64-bit linking work.
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    52
LDFLAGS += $(CC_BITS)
1172
812e434cd1a8 PSARC 2013/044 httping 1.5.7
Rich Burridge <rich.burridge@oracle.com>
parents: 1058
diff changeset
    53
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    54
# force enable ncurses support
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    55
COMPONENT_BUILD_ARGS += NC=yes
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    56
COMPONENT_BUILD_ARGS += CC="$(CC)"
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    57
COMPONENT_BUILD_ARGS += OFLAGS="$(CFLAGS)"
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    58
COMPONENT_BUILD_ARGS += LDFLAGS="$(LDFLAGS) $(EXTRA_LIBRARIES)"
355
ba859a966abc 7061096 migrate httping to userland
Kevin Crowe <Kevin.Crowe@oracle.com>
parents:
diff changeset
    59
3890
9eec2b00040d 20555268 httping should be updated to version 2.4
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    60
REQUIRED_PACKAGES += library/fftw-3
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 4958
diff changeset
    61
REQUIRED_PACKAGES += library/ncurses
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 1948
diff changeset
    62
REQUIRED_PACKAGES += library/security/openssl
3890
9eec2b00040d 20555268 httping should be updated to version 2.4
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    63
REQUIRED_PACKAGES += library/security/openssl/openssl-fips-140
9eec2b00040d 20555268 httping should be updated to version 2.4
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    64
REQUIRED_PACKAGES += system/library/math