Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 1 | # Copyright (c) 2018 Cisco and/or its affiliates. |
| 2 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | # you may not use this file except in compliance with the License. |
| 4 | # You may obtain a copy of the License at: |
| 5 | # |
| 6 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | # |
| 8 | # Unless required by applicable law or agreed to in writing, software |
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
Ranjan Raj | adb2c67 | 2023-11-29 05:47:44 +0000 | [diff] [blame] | 14 | ipsec-mb_version := 1.5 |
Ranjan Raj | ba39d86 | 2023-11-20 07:04:24 +0000 | [diff] [blame] | 15 | ipsec-mb_patch_version := 0 |
| 16 | ipsec-mb_version_str := $(ipsec-mb_version).$(ipsec-mb_patch_version) |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 17 | ipsec-mb_tarball := v$(ipsec-mb_version).tar.gz |
Damjan Marion | c62252d | 2021-05-07 09:20:54 +0200 | [diff] [blame] | 18 | ipsec-mb_tarball_md5sum_1.0 := 906e701937751e761671dc83a41cff65 |
Marcel Cornu | e15245d | 2022-01-13 23:48:54 +0000 | [diff] [blame] | 19 | ipsec-mb_tarball_md5sum_1.1 := 3916471d3713d27e42473cb6af9c65e5 |
Marcel Cornu | c711bd0 | 2022-03-04 17:33:12 +0000 | [diff] [blame] | 20 | ipsec-mb_tarball_md5sum_1.2 := f551d9c208893a436c1f5c146a615bd6 |
Marcel Cornu | 2a6f35f | 2022-10-05 12:08:05 +0100 | [diff] [blame] | 21 | ipsec-mb_tarball_md5sum_1.3 := d8692db9efe32a263b61f12ac0dca950 |
Ranjan Raj | 40242b8 | 2023-07-07 06:09:50 +0000 | [diff] [blame] | 22 | ipsec-mb_tarball_md5sum_1.4 := fddba2611f822296ddd82d1c31d22b24 |
Ranjan Raj | adb2c67 | 2023-11-29 05:47:44 +0000 | [diff] [blame] | 23 | ipsec-mb_tarball_md5sum_1.5 := f18680f8dd43208a15a19a494423bdb9 |
Dariusz Kazimierski | b5df85e | 2020-11-23 09:27:55 +0100 | [diff] [blame] | 24 | |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 25 | ipsec-mb_tarball_md5sum := $(ipsec-mb_tarball_md5sum_$(ipsec-mb_version)) |
| 26 | ipsec-mb_tarball_strip_dirs := 1 |
Marcel Cornu | 2a6f35f | 2022-10-05 12:08:05 +0100 | [diff] [blame] | 27 | ipsec-mb_url := http://github.com/intel/intel-ipsec-mb/archive/$(ipsec-mb_tarball) |
Ranjan Raj | ba39d86 | 2023-11-20 07:04:24 +0000 | [diff] [blame] | 28 | ipsec-mb_system_header := $(wildcard /usr/include/intel-ipsec-mb.h) |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 29 | |
| 30 | define ipsec-mb_config_cmds |
| 31 | @true |
| 32 | endef |
| 33 | |
| 34 | define ipsec-mb_build_cmds |
Renato Botelho do Couto | 893daca | 2024-06-05 18:11:46 +0000 | [diff] [blame] | 35 | @$(MAKE) -C $(ipsec-mb_src_dir)/lib -j \ |
Damjan Marion | 59e0c8f | 2019-04-23 12:57:14 +0200 | [diff] [blame] | 36 | SHARED=n \ |
Fan Zhang | 98e682d | 2020-11-26 17:01:05 +0000 | [diff] [blame] | 37 | SAFE_PARAM=n \ |
| 38 | SAFE_LOOKUP=n \ |
| 39 | SAFE_DATA=n \ |
Damjan Marion | 59e0c8f | 2019-04-23 12:57:14 +0200 | [diff] [blame] | 40 | PREFIX=$(ipsec-mb_install_dir) \ |
Fan Zhang | d35fefe | 2019-11-04 16:32:28 +0000 | [diff] [blame] | 41 | EXTRA_CFLAGS="-g -msse4.2" > $(ipsec-mb_build_log) |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 42 | endef |
| 43 | |
Ranjan Raj | ba39d86 | 2023-11-20 07:04:24 +0000 | [diff] [blame] | 44 | ifneq ($(ipsec-mb_system_header), ) |
| 45 | ipsec-mb_system_ver_str := $(shell awk '/^#define\s+IMB_VERSION_STR/ { print $$3 }' \ |
| 46 | $(ipsec-mb_system_header)) |
| 47 | endif |
| 48 | |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 49 | define ipsec-mb_install_cmds |
Ranjan Raj | ba39d86 | 2023-11-20 07:04:24 +0000 | [diff] [blame] | 50 | if [[ -n "$(ipsec-mb_system_header)" ]]; then \ |
| 51 | if [[ "$(ipsec-mb_system_ver_str)" != "$(ipsec-mb_version_str)" ]]; then \ |
| 52 | echo "Intel-ipsec-mb build Error: System installed Intel IPsec-mb lib \ |
| 53 | version mismatch with target version, \ |
| 54 | expecting $(ipsec-mb_version_str), \ |
| 55 | but system has $(ipsec-mb_system_ver_str) \ |
| 56 | please align/remove system installed $(ipsec-mb_system_header) before building."; \ |
| 57 | exit 1; \ |
| 58 | fi \ |
| 59 | fi |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 60 | @mkdir -p $(ipsec-mb_install_dir)/include |
Damjan Marion | 59e0c8f | 2019-04-23 12:57:14 +0200 | [diff] [blame] | 61 | @mkdir -p $(ipsec-mb_install_dir)/lib |
Dariusz Kazimierski | b5df85e | 2020-11-23 09:27:55 +0100 | [diff] [blame] | 62 | @cp $(ipsec-mb_src_dir)/lib/intel-ipsec-mb.h $(ipsec-mb_install_dir)/include |
| 63 | @cp $(ipsec-mb_src_dir)/lib/libIPSec_MB.a $(ipsec-mb_install_dir)/lib |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 64 | endef |
| 65 | |
| 66 | $(eval $(call package,ipsec-mb)) |
| 67 | |
| 68 | |