Browse Source

Remove HAVE_INET_ATON as nothing uses it

tags/v1.4.90
Pierre Ossman 9 years ago
parent
commit
a08a8436a9
2 changed files with 0 additions and 3 deletions
  1. 0
    2
      CMakeLists.txt
  2. 0
    1
      config.h.in

+ 0
- 2
CMakeLists.txt View File

# Check for socket functions # Check for socket functions
if(WIN32) if(WIN32)
# check_function_exists() cannot handle stdcall, so just define things # check_function_exists() cannot handle stdcall, so just define things
set(HAVE_INET_ATON 1)
set(HAVE_GETADDRINFO 1) set(HAVE_GETADDRINFO 1)
else() else()
if(${CMAKE_SYSTEM_NAME} MATCHES "SunOS") if(${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
set(CMAKE_REQUIRED_LIBRARIES socket) set(CMAKE_REQUIRED_LIBRARIES socket)
endif() endif()
check_function_exists(inet_aton HAVE_INET_ATON)
check_function_exists(getaddrinfo HAVE_GETADDRINFO) check_function_exists(getaddrinfo HAVE_GETADDRINFO)
set(CMAKE_REQUIRED_LIBRARIES) set(CMAKE_REQUIRED_LIBRARIES)
endif() endif()

+ 0
- 1
config.h.in View File

#define PACKAGE_NAME "@CMAKE_PROJECT_NAME@" #define PACKAGE_NAME "@CMAKE_PROJECT_NAME@"
#define PACKAGE_VERSION "@VERSION@" #define PACKAGE_VERSION "@VERSION@"


#cmakedefine HAVE_INET_ATON
#cmakedefine HAVE_GETADDRINFO #cmakedefine HAVE_GETADDRINFO
#cmakedefine HAVE_ACTIVE_DESKTOP_H #cmakedefine HAVE_ACTIVE_DESKTOP_H
#cmakedefine HAVE_ACTIVE_DESKTOP_L #cmakedefine HAVE_ACTIVE_DESKTOP_L

Loading…
Cancel
Save