Changeset - 29928fb1ab2b
[Not reviewed]
default
0 2 0
Nathan Brink (binki) - 16 years ago 2009-11-27 12:52:17
ohnobinki@ohnopublishing.net
moved macro declaration _GNU_SOURCE to configure.ac
2 files changed with 4 insertions and 5 deletions:
0 comments (0 inline, 0 general)
configure.ac
Show inline comments
 
@@ -43,12 +43,16 @@ AC_CHECK_LIB([list], [list_init], [
 
AC_FUNC_FORK
 
AC_FUNC_MALLOC
 

	
 
AC_TYPE_PID_T
 
AC_TYPE_SIZE_T
 

	
 
# to grab GNU-specific function prototypes for the following functions:
 
# getline
 
AC_DEFINE([_GNU_SOURCE], [1])
 

	
 
#package dependencies:
 

	
 
PKG_PROG_PKG_CONFIG(0.17.2)
 

	
 
PKG_CHECK_MODULES(DISTLIBS, libconfuse >= 2.5 libcurl libxml-2.0)
 
PKG_CHECK_MODULES([CHECK], [check >= 0.9.3])
src/server/distrend.c
Show inline comments
 
@@ -17,17 +17,12 @@
 
  along with DistRen.  If not, see <http://www.gnu.org/licenses/>.
 

	
 
*/
 

	
 
/* This file contains the code which both processes (renders) jobs as a slave, and the code which distributes frames to slaves after receiving them from the client portion of the codebase. */
 

	
 
/*
 
  To get getline():
 
 */
 
#define _GNU_SOURCE 1
 

	
 
#include "execio.h"
 
#include "options.h"
 
#include "distrenjob.h"
 
#include "listen.h"
 
#include "protocol.h"
 
#include "slavefuncs.h"
0 comments (0 inline, 0 general)