Changeset - a7a6ddfb138d
[Not reviewed]
default
0 2 0
Nathan Brink (binki) - 16 years ago 2009-12-21 23:13:47
ohnobinki@ohnopublishing.net
added --disable-server ./configure option
2 files changed with 13 insertions and 1 deletions:
0 comments (0 inline, 0 general)
configure.ac
Show inline comments
 
@@ -47,6 +47,14 @@ AC_FUNC_MALLOC
 
AC_TYPE_PID_T
 
AC_TYPE_SIZE_T
 

	
 
# selective compilation
 
AC_ARG_ENABLE([server],
 
	[AS_HELP_STRING([--disable-server],[Don't build the distren server])],
 
	[enable_server=$enableval],
 
	[enable_server=yes])
 
AM_CONDITIONAL([ENABLE_SERVER],
 
	[test "x$enable_server" = "xyes"])
 

	
 
# to grab GNU-specific function prototypes for the following functions:
 
# getline
 
AC_DEFINE([_GNU_SOURCE], [1])
src/server/Makefile.am
Show inline comments
 
bin_PROGRAMS =
 
if ENABLE_SERVER
 
bin_PROGRAMS += distrend distrenslave
 
endif
 

	
 
COMMON_SOURCES =  slavefuncs.c slavefuncs.h distrenjob.c distrenjob.h
 

	
 
bin_PROGRAMS = distrend distrenslave
 
distrend_SOURCES = distrend.c distrend.h ${COMMON_SOURCES} user_mgr.c user_mgr.h listen.h listen.c
 
distrend_LDADD = @top_builddir@/src/common/libdistrencommon.la @DISTLIBS_LDADD@ @LIST_LIBS@
 
distrend_LDFLAGS = @DISTLIBS_LDFLAGS@
0 comments (0 inline, 0 general)