Navigation


Changeset 362:5b199400a290 in freeDiameter


Ignore:
Timestamp:
Jul 2, 2010, 12:52:25 PM (14 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Children:
363:b8ad6f9a7748, 365:4b7dbc0d187f
Phase:
public
Message:

Added missing pieces for app_sip

Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • INSTALL.Ubuntu

    r335 r362  
    1717 
    1818In order to build app_acct extension, you will also need the package libpq-dev.
     19In order to build app_sip extension, you will also need the package libmysqlclient-dev.
    1920
    2021
  • LICENSE

    r334 r362  
    3535
    3636
    37 The extensions/dict_sip files have been contributed by Alexandre Westfahl
    38         -- see source file for copyright information.
     37The 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
    3941
  • extensions/CMakeLists.txt

    r331 r362  
    5959        ENDIF (BUILD_APP_ACCT)
    6060
     61OPTION(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
    6166
    6267
  • extensions/app_sip/CMakeLists.txt

    r360 r362  
    22PROJECT("Diameter SIP Application (RFC4740)" C)
    33
    4 FIND_PACKAGE(MYSQL REQUIRED)
    5 INCLUDE_DIRECTORIES(${MYSQL_INCLUDE_DIR})
     4FIND_PACKAGE(MySQL REQUIRED)
     5INCLUDE_DIRECTORIES(${MySQL_INCLUDE_DIR})
    66
    77# List of source files
     
    1717FD_ADD_EXTENSION(app_sip ${DIAM_SIP_SRC})
    1818
    19 TARGET_LINK_LIBRARIES(app_sip ${MYSQL_LIBRARY})
     19TARGET_LINK_LIBRARIES(app_sip ${MySQL_LIBRARIES})
Note: See TracChangeset for help on using the changeset viewer.