forked from ganglia/monitor-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
massie
committed
Jun 19, 2002
0 parents
commit 8dfbd78
Showing
45 changed files
with
5,736 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Matt Massie <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Copyright (c) 2001 by Matt Massie and The Regents of the University of California. | ||
All rights reserved. | ||
|
||
Permission to use, copy, modify, and distribute this software and its | ||
documentation for any purpose, without fee, and without written agreement is | ||
hereby granted, provided that the above copyright notice and the following | ||
two paragraphs appear in all copies of this software. | ||
|
||
IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR | ||
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT | ||
OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF | ||
CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, | ||
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY | ||
AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS | ||
ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO | ||
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
SUBDIRS = dotconf-1.0.9 lib gmond gmetric | ||
|
||
EXTRA_DIST = config gmond.init ganglia.spec gmond.init.SuSE docs mans lib/ganglia | ||
|
||
# This is a symbolic link that needs to be clean'd out | ||
dist-hook: | ||
rm -f ${distdir}/gmond/machine.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
===== Ganglia Monitoring Core ===== | ||
Visit http://ganglia.sourceforge.net/ for the latest news |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
dnl ################################################## | ||
dnl the AC_CHECK_TYPE macro only checks for a type in | ||
dnl <sys/types.h>, <stdlib.h> and <stddef.h>. this macro | ||
dnl in more generic and allows for arbitrary headers to | ||
dnl be included in the search | ||
dnl | ||
dnl | ||
AC_DEFUN(AC_SEARCH_TYPE, | ||
[AC_MSG_CHECKING(if $1 defined) | ||
AC_CACHE_VAL(ac_cv_type_$1, | ||
AC_TRY_COMPILE( | ||
[ | ||
#include "confdefs.h" /* the header built by configure so far */ | ||
#ifdef HAVE_SYS_TYPES_H | ||
# include <sys/types.h> | ||
#endif | ||
#ifdef HAVE_SYS_SOCKET_H | ||
# include <sys/socket.h> | ||
#endif | ||
#ifdef HAVE_SYS_TIME_H | ||
# include <sys/time.h> | ||
#endif | ||
#ifdef HAVE_NETINET_IN_H | ||
# include <netinet/in.h> | ||
#endif | ||
#ifdef HAVE_ARPA_INET_H | ||
# include <arpa/inet.h> | ||
#endif | ||
#ifdef HAVE_ERRNO_H | ||
# include <errno.h> | ||
#endif | ||
#ifdef HAVE_FCNTL_H | ||
# include <fcntl.h> | ||
#endif | ||
#ifdef HAVE_NETDB_H | ||
# include <netdb.h> | ||
#endif | ||
#ifdef HAVE_SIGNAL_H | ||
# include <signal.h> | ||
#endif | ||
#ifdef HAVE_STDIO_H | ||
# include <stdio.h> | ||
#endif | ||
#ifdef HAVE_STDLIB_H | ||
# include <stdlib.h> | ||
#endif | ||
#ifdef HAVE_STRING_H | ||
# include <string.h> | ||
#endif | ||
#ifdef HAVE_SYS_STAT_H | ||
# include <sys/stat.h> | ||
#endif | ||
#ifdef HAVE_SYS_UIO_H | ||
# include <sys/uio.h> | ||
#endif | ||
#ifdef HAVE_UNISTD_H | ||
# include <unistd.h> | ||
#endif | ||
#ifdef HAVE_SYS_WAIT_H | ||
# include <sys/wait.h> | ||
#endif | ||
#ifdef HAVE_SYS_UN_H | ||
# include <sys/un.h> | ||
#endif | ||
#ifdef HAVE_SYS_SELECT_H | ||
# include <sys/select.h> | ||
#endif | ||
#ifdef HAVE_STRINGS_H | ||
# include <strings.h> | ||
#endif | ||
#ifdef HAVE_SYS_IOCTL_H | ||
# include <sys/ioctl.h> | ||
#endif | ||
#ifdef HAVE_SYS_FILIO_H | ||
# include <sys/filio.h> | ||
#endif | ||
#ifdef HAVE_SYS_SOCKIO_H | ||
# include <sys/sockio.h> | ||
#endif | ||
#ifdef HAVE_PTHREAD_H | ||
# include <pthread.h> | ||
#endif], | ||
[ $1 foo ], | ||
ac_cv_type_$1=yes, | ||
ac_cv_type_$1=no)) | ||
AC_MSG_RESULT($ac_cv_type_$1) | ||
if test $ac_cv_type_$1 = no ; then | ||
AC_DEFINE($1, $2) | ||
fi | ||
]) | ||
|
||
dnl ############################################################# | ||
dnl Check if the system supports 64bit long longs. | ||
dnl | ||
dnl AC_DEFUN(AC_CHECK_LONG_LONG, | ||
dnl [AC_MSG_CHECKING(for long long type) | ||
dnl AC_CACHE_VAL(ac_cv_type_long_long, | ||
dnl AC_TRY_COMPILE(, | ||
dnl [long long foo], | ||
dnl ac_cv_type_long_long=yes, | ||
dnl ac_cv_type_long_long=no)) | ||
dnl AC_MSG_RESULT($ac_cv_type_long_long) | ||
dnl if test $ac_cv_type_long_long = yes; then | ||
dnl AC_DEFINE(HAVE_LONG_LONG) | ||
dnl fi | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
echo "make distclean" | ||
make distclean | ||
echo "aclocal" && | ||
aclocal && | ||
echo "autoheader" && | ||
autoheader && | ||
echo "automake" && | ||
automake --add-missing && | ||
echo "autoconf" && | ||
autoconf && | ||
echo && | ||
echo && | ||
echo "ready for a configure now" |
Oops, something went wrong.