Changeset 362:5b199400a290 in freeDiameter
- Timestamp:
- Jul 2, 2010, 12:52:25 PM (13 years ago)
- Branch:
- default
- Children:
- 363:b8ad6f9a7748, 365:4b7dbc0d187f
- Phase:
- public
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
INSTALL.Ubuntu
r335 r362 17 17 18 18 In order to build app_acct extension, you will also need the package libpq-dev. 19 In order to build app_sip extension, you will also need the package libmysqlclient-dev. 19 20 20 21 -
LICENSE
r334 r362 35 35 36 36 37 The extensions/dict_sip files have been contributed by Alexandre Westfahl 38 -- see source file for copyright information. 37 The following files have been contributed by Alexandre Westfahl, see source files for copyright information: 38 extensions/dict_sip/* 39 extensions/app_sip/* 40 extensions/app_radgw/rgwx_sip.c 39 41 -
extensions/CMakeLists.txt
r331 r362 59 59 ENDIF (BUILD_APP_ACCT) 60 60 61 OPTION(BUILD_APP_SIP "Build app_sip? (Authentication and authorization for Diameter SIP RFC4740)" OFF) 62 IF (BUILD_APP_SIP) 63 SUBDIRS(app_sip) 64 ENDIF (BUILD_APP_SIP) 65 61 66 62 67 -
extensions/app_sip/CMakeLists.txt
r360 r362 2 2 PROJECT("Diameter SIP Application (RFC4740)" C) 3 3 4 FIND_PACKAGE(M YSQL REQUIRED)5 INCLUDE_DIRECTORIES(${M YSQL_INCLUDE_DIR})4 FIND_PACKAGE(MySQL REQUIRED) 5 INCLUDE_DIRECTORIES(${MySQL_INCLUDE_DIR}) 6 6 7 7 # List of source files … … 17 17 FD_ADD_EXTENSION(app_sip ${DIAM_SIP_SRC}) 18 18 19 TARGET_LINK_LIBRARIES(app_sip ${M YSQL_LIBRARY})19 TARGET_LINK_LIBRARIES(app_sip ${MySQL_LIBRARIES})
Note: See TracChangeset
for help on using the changeset viewer.