Removed the newline from the messages sent
[simple_comm.git] / configure.ac
blobcf0d8958c58935cb8b1ba4c61436ec302fca577d
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_INIT([simple-comm], [0.1],[ahmed.badran@gmail.com])
5 AM_INIT_AUTOMAKE([simple-comm], [0.1], [ahmed.badran@gmail.com])
6 AC_CONFIG_SRCDIR([src/conn.h])
7 AC_CONFIG_HEADER([src/config.h])
9 # Checks for programs.
10 AC_PROG_CXX
11 AC_PROG_CC
12 AC_PROG_LIBTOOL
14 # Checks for libraries.
16 # Checks for header files.
17 AC_CHECK_HEADERS([netdb.h sys/socket.h])
19 # Checks for typedefs, structures, and compiler characteristics.
20 AC_HEADER_STDBOOL
21 AC_C_CONST
22 AC_CHECK_SIZEOF([unsigned char])
23 AC_CHECK_SIZEOF([unsigned short])
24 AC_CHECK_SIZEOF([unsigned int])
25 AC_CHECK_SIZEOF([unsigned long long])
27 # Checks for library functions.
28 AC_HEADER_STDC
29 AC_CHECK_FUNCS([memset socket strerror])
31 AC_CONFIG_FILES([Makefile
32                  src/simple_comm.pc
33                  src/Makefile])
34 AC_OUTPUT