X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=configure.ac;h=3118870aba953738c85d800a2c76483505d462d8;hb=335064cd46d8c7bb73b50c6bf690c595c15b7742;hp=73a2f4216cc0ae36b1a2572451efab88003dff45;hpb=e14aa2d3a2cb1aa64f8028d572741f60ca2cb0a1;p=m6w6%2Flibmemcached diff --git a/configure.ac b/configure.ac index 73a2f421..3118870a 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_CONFIG_AUX_DIR(config) AM_CONFIG_HEADER(libmemcached/libmemcached_config.h) AC_CANONICAL_SYSTEM -MEMCACHED_LIBRARY_NAME=libmemcached +MEMCACHED_LIBRARY_NAME=libmemcached #release versioning MEMCACHED_MAJOR_VERSION=0 @@ -53,7 +53,7 @@ sinclude(config/debug.m4) sinclude(config/dtrace.m4) sinclude(config/byteorder.m4) sinclude(config/64bit.m4) -#sinclude(config/protocol_binary.m4) +sinclude(config/protocol_binary.m4) # We only support GCC and Sun's forte at the moment if test "$GCC" = "yes" @@ -61,19 +61,19 @@ then if test "$ENABLE_DEBUG" = "yes" then CFLAGS="-Wall -ggdb -DMEMCACHED_INTERNAL -DHAVE_DEBUG $CFLAGS" - LDFLAGS="-lm" else CFLAGS="-Wall -O3 -DMEMCACHED_INTERNAL $CFLAGS" - LDFLAGS="-lm" fi else CFLAGS="-Xa -xstrconst -mt -D_FORTEC_ $CFLAGS" - LDFLAGS="-lm -lsocket -lnsl $LDFLAGS" DTRACEFLAGS="$DTRACEFLAGS" fi +LDFLAGS="-lm" AC_C_CONST AC_HEADER_TIME AC_TYPE_SIZE_T AC_SEARCH_LIBS(getopt_long, gnugetopt) +AC_SEARCH_LIBS(socket, socket) +AC_SEARCH_LIBS(gethostbyname, nsl) AC_OUTPUT(Makefile clients/Makefile tests/Makefile docs/Makefile libmemcached/Makefile support/Makefile support/libmemcached.pc support/libmemcached.spec)