r1750 - in packages: ! dirs' list truncated !

Miriam Ruiz baby-guest at costa.debian.org
Mon Oct 2 10:48:18 UTC 2006


Author: baby-guest
Date: 2006-10-02 10:48:17 +0000 (Mon, 02 Oct 2006)
New Revision: 1750

Added:
   packages/xwelltris/
   packages/xwelltris/branches/
   packages/xwelltris/branches/upstream/
   packages/xwelltris/branches/upstream/current/
   packages/xwelltris/branches/upstream/current/src/
   packages/xwelltris/branches/upstream/current/src/include/
   packages/xwelltris/branches/upstream/current/src/include/globals.h.in
   packages/xwelltris/tags/
Log:
[svn-inject] Installing original source of xwelltris

Added: packages/xwelltris/branches/upstream/current/src/include/globals.h.in
===================================================================
--- packages/xwelltris/branches/upstream/current/src/include/globals.h.in	                        (rev 0)
+++ packages/xwelltris/branches/upstream/current/src/include/globals.h.in	2006-10-02 10:48:17 UTC (rev 1750)
@@ -0,0 +1,89 @@
+#ifndef XNC_GLOBALS_H
+#define XNC_GLOBALS_H
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <globdef.h>
+#ifdef HAVE_SYS_SIGEVENT_H
+#include <sys/sigevent.h>
+#endif
+#include <stdio.h>
+#include <string.h>
+#ifdef HAVE_STRINGS_H
+#include <strings.h>
+#endif
+#include <stdlib.h>
+#include <stdarg.h>
+
+#ifdef HAVE_LIMITS_H
+#include <limits.h>
+#endif
+
+#ifdef HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
+#ifdef HAVE_SYS_STAT_H
+#include <sys/stat.h>
+#endif
+#ifdef HAVE_SYS_UTSNAME_H
+#include <sys/utsname.h>
+#endif
+
+#ifdef TIME_WITH_SYS_TIME
+#include <sys/time.h>
+#include <time.h>
+#else
+#ifdef HAVE_SYS_TIME_H
+#include <sys/time.h>
+#else
+#include <time.h>
+#endif
+#endif
+
+#ifdef HAVE_SYS_PARAM_H
+#include <sys/param.h>
+#endif
+
+#ifdef HAVE_SYS_WAIT_H
+#include <sys/wait.h>
+#endif
+
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
+
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+
+#ifdef HAVE_FCNTL_H
+#include <fcntl.h>
+#endif
+
+#include <ctype.h>
+
+#ifdef HAVE_ERRNO_H
+#include <errno.h>
+#endif
+
+#ifdef HAVE_MATH_H
+#include <math.h>
+#endif
+
+#include "types.h"
+#include "mydebug.h"
+
+#define MAX2(x1,x2)            (x1<x2 ? x2 : x1)
+
+#define W_PI  3.14159265358979323846
+
+#define LOCAL_SEARCH     ".xwelltris"
+#define GLOBAL_SEARCH    "@prefix@/share/xwelltris"
+
+
+#endif
+
+/* ------------ End of file -------------- */
+




More information about the Pkg-games-commits mailing list