From: T.S. L. <try...@us...> - 2006-01-07 22:13:36
|
Update of /cvsroot/solidircd/solidircd-stable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27806 Modified Files: CHANGES configure configure.in Log Message: gcc4 warnings fixed Index: CHANGES =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/CHANGES,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** CHANGES 2 Jan 2006 20:27:25 -0000 1.14 --- CHANGES 7 Jan 2006 22:13:26 -0000 1.15 *************** *** 34,37 **** --- 34,42 ---- 03/05/2005 - Fixed halfops cannot voice or devoice a user. [ #1193540 ] + ------------------ + Changes from Trystan + --------------- + 07/01/2006 - Fixed GCC4 compiler warnings + ------------------------ Changes from Sheik Index: configure =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/configure,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** configure 28 Jun 2005 02:51:34 -0000 1.2 --- configure 7 Jan 2006 22:13:26 -0000 1.3 *************** *** 1,8 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.57. # ! # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 ! # Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. --- 1,7 ---- #! /bin/sh [...5292 lines suppressed...] ! echo " ******* solid-ircd 3.4.7 Configuration Settings *******" echo " System Build Type: $target" echo " Socket Engine Type: $engine" --- 8919,8924 ---- ) echo "" ! echo " ******* solid-ircd Configuration Settings *******" echo " System Build Type: $target" echo " Socket Engine Type: $engine" *************** *** 8257,8263 **** echo " Install Directory: $prefix" echo "" - - - echo "" Before you compile please go through include/config.h and read all the new options - echo "" and configuration theres alot of new things that can be set and unset, after your - echo "" finish editing include/config.h then compile the ircd. --- 8929,8930 ---- Index: configure.in =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/configure.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** configure.in 27 Jun 2005 03:01:53 -0000 1.1.1.1 --- configure.in 7 Jan 2006 22:13:26 -0000 1.2 *************** *** 544,547 **** --- 544,565 ---- fi + AC_DEFUN([TYPE_SOCKLEN_T], + [AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t, + [ + AC_TRY_COMPILE( + [#include <sys/types.h> + #include <sys/socket.h>], + [socklen_t len = 42; return 0;], + ac_cv_type_socklen_t=yes, + ac_cv_type_socklen_t=no) + ]) + if test $ac_cv_type_socklen_t != yes; then + AC_DEFINE(socklen_t, int, [Substitute for socklen_t]) + fi + ]) + + TYPE_SOCKLEN_T + + INSTALL_DIR="${prefix}" |