/[svn]/liblscp/trunk/configure.ac
ViewVC logotype

Diff of /liblscp/trunk/configure.ac

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2095 by capela, Thu May 20 20:26:55 2010 UTC revision 2418 by capela, Sat Feb 23 20:29:45 2013 UTC
# Line 1  Line 1 
1  # Process this file with autoconf to produce a configure script.  # Process this file with autoconf to produce a configure script.
2  AC_INIT(src/client.c)  AC_INIT(src/client.c)
3  AM_CONFIG_HEADER(src/config.h)  AC_CONFIG_HEADERS(src/config.h)
4    AC_CONFIG_MACRO_DIR([m4])
5    
6  AM_INIT_AUTOMAKE(liblscp, 0.5.6.1)  AM_INIT_AUTOMAKE(liblscp, 0.5.6.4)
7    
8  #------------------------------------------------------------------------------------  #------------------------------------------------------------------------------------
9  # Rules for library version information:  # Rules for library version information:
# Line 26  AC_SUBST(SHARED_VERSION_INFO) Line 27  AC_SUBST(SHARED_VERSION_INFO)
27    
28  # Checks for programs.  # Checks for programs.
29  AC_PROG_CC  AC_PROG_CC
30    AC_LIBTOOL_WIN32_DLL
31  AC_PROG_LIBTOOL  AC_PROG_LIBTOOL
32  AM_PROG_LIBTOOL  AM_PROG_LIBTOOL
33    
# Line 40  AC_TYPE_SIZE_T Line 42  AC_TYPE_SIZE_T
42  # Checks for library functions.  # Checks for library functions.
43  AC_CHECK_FUNCS(strdup strtok_r memset memmove socket connect bind listen setsockopt getsockopt getsockname gethostbyname)  AC_CHECK_FUNCS(strdup strtok_r memset memmove socket connect bind listen setsockopt getsockopt getsockname gethostbyname)
44    
45    case $host in
46        *mingw*|*cygwin*) windows=yes ;;
47        *)                windows=no ;;
48    esac
49    AM_CONDITIONAL(WINDOWS, test "$windows" = "yes")
50    
51  # Checks for pthread library.  # Checks for pthread library.
52  AC_CHECK_LIB(pthread, pthread_create)  AC_CHECK_LIB(pthread, pthread_create)
53    

Legend:
Removed from v.2095  
changed lines
  Added in v.2418

  ViewVC Help
Powered by ViewVC