19e8252e65
SNMP++v3.x is a C++ API which supports SNMP v1, v2c, and v3. SNMP++v3.x is based on SNMP++v2.8 from HP* and extends it by support for SNMPv3 and a couple of bug fixes. The v3 support to SNMP++ and AGENT++ is provided by courtesy of Jochen Katz (katz07@agentpp.com). SNMP++v3.x extends the original SNMP++v2.8 by the following: # SNMPv3 including User Security Model (USM) with: # MD5 and SHA authentication # DES and IDEA privacy # Thread-safety # Bug-fixes WWW: http://www.agentpp.com/snmp_pp3_x/snmp_pp3_x.html for further details. PR: ports/112669 Submitted by: Nicolai Petri <nicolai@petri.cc>
48 lines
1.6 KiB
Text
48 lines
1.6 KiB
Text
############################################################################
|
|
##
|
|
## Makefile.FreeBSD
|
|
##
|
|
## SNMP++v3.2.22
|
|
## -----------------------------------------------
|
|
## Copyright (c) 2001-2006 Jochen Katz, Frank Fock
|
|
##
|
|
## This software is based on SNMP++2.6 from Hewlett Packard:
|
|
##
|
|
## Copyright (c) 1996
|
|
## Hewlett-Packard Company
|
|
##
|
|
## ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
|
|
## Permission to use, copy, modify, distribute andor sell this software
|
|
## andor its documentation is hereby granted without fee. User agrees
|
|
## to display the above copyright notice and this license notice in all
|
|
## copies of the software and any documentation of the software. User
|
|
## agrees to assume all liability for the use of the software;
|
|
## Hewlett-Packard and Jochen Katz make no representations about the
|
|
## suitability of this software for any purpose. It is provided
|
|
## "AS-IS" without warranty of any kind, either express or implied. User
|
|
## hereby grants a royalty-free license to any and all derivatives based
|
|
## upon this software code base.
|
|
##
|
|
## Stuttgart, Germany, Tue Nov 21 22:12:16 CET 2006
|
|
##
|
|
##########################################################################*
|
|
|
|
#
|
|
# Flags: compiler options, search paths
|
|
#
|
|
|
|
COPTIONS = -D_XPG4_EXTENDED -D__unix -Wall -D_USE_OPENSSL# -DHEADER_DES_LOCL_H # -D_DEBUG
|
|
TEMPOPTS = -I.
|
|
|
|
USEROPTS = -g
|
|
CFLAGS = $(COPTIONS) $(CINCDIRS) $(USEROPTS)
|
|
LDFLAGS = $(CFLAGS)
|
|
SHARED = -fPIC -shared
|
|
|
|
#
|
|
# Compilation rules
|
|
#
|
|
CC = g++
|
|
LD = ld
|
|
|
|
include common.mk
|