diff options
author | pesco <pesco> | 2000-12-24 22:53:54 +0000 |
---|---|---|
committer | pesco <pesco> | 2000-12-24 22:53:54 +0000 |
commit | d1ff1f6798b003a820f5de9fad835ff352f31afe (patch) | |
tree | 63087d7f74fbc3694e375d32c3067fe40675894e /progs/demos/winpos.c | |
parent | 05ecec6f49732d8804982cdb350798a9fc7b81d9 (diff) |
* demos/Makefile.am (INCLUDES): Added -I$(top_srcdir)/util.
* demos/Makefile.X11, demos/Makefile.BeOS-R4, demos/Makefile.cygnus:
Essentially the same.
Program files updated to include "readtex.c", not "../util/readtex.c".
* demos/reflect.c: Likewise for "showbuffer.c".
* Makefile.am (EXTRA_DIST): Added top-level regular files.
* include/GL/Makefile.am (INC_X11): Added glxext.h.
* src/GGI/include/ggi/mesa/Makefile.am (EXTRA_HEADERS): Include
Mesa GGI headers in dist even if HAVE_GGI is not given.
* configure.in: Look for GLUT and demo source dirs in $srcdir.
* src/swrast/Makefile.am (libMesaSwrast_la_SOURCES): Set to *.[ch].
More source list updates in various Makefile.am's.
* Makefile.am (dist-hook): Remove CVS directory from distribution.
(DIST_SUBDIRS): List all possible subdirs here.
(SUBDIRS): Only list subdirs selected for build again.
The above two applied to all subdir Makefile.am's also.
Diffstat (limited to 'progs/demos/winpos.c')
-rw-r--r-- | progs/demos/winpos.c | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/progs/demos/winpos.c b/progs/demos/winpos.c index 7001165deef..b799657b8e9 100644 --- a/progs/demos/winpos.c +++ b/progs/demos/winpos.c @@ -1,4 +1,4 @@ -/* $Id: winpos.c,v 1.2 2000/06/27 17:04:43 brianp Exp $ */ +/* $Id: winpos.c,v 1.3 2000/12/24 22:53:54 pesco Exp $ */ /* * Example of how to use the GL_MESA_window_pos extension. @@ -8,6 +8,32 @@ /* * $Log: winpos.c,v $ + * Revision 1.3 2000/12/24 22:53:54 pesco + * * demos/Makefile.am (INCLUDES): Added -I$(top_srcdir)/util. + * * demos/Makefile.X11, demos/Makefile.BeOS-R4, demos/Makefile.cygnus: + * Essentially the same. + * Program files updated to include "readtex.c", not "../util/readtex.c". + * * demos/reflect.c: Likewise for "showbuffer.c". + * + * + * * Makefile.am (EXTRA_DIST): Added top-level regular files. + * + * * include/GL/Makefile.am (INC_X11): Added glxext.h. + * + * + * * src/GGI/include/ggi/mesa/Makefile.am (EXTRA_HEADERS): Include + * Mesa GGI headers in dist even if HAVE_GGI is not given. + * + * * configure.in: Look for GLUT and demo source dirs in $srcdir. + * + * * src/swrast/Makefile.am (libMesaSwrast_la_SOURCES): Set to *.[ch]. + * More source list updates in various Makefile.am's. + * + * * Makefile.am (dist-hook): Remove CVS directory from distribution. + * (DIST_SUBDIRS): List all possible subdirs here. + * (SUBDIRS): Only list subdirs selected for build again. + * The above two applied to all subdir Makefile.am's also. + * * Revision 1.2 2000/06/27 17:04:43 brianp * fixed compiler warnings * @@ -36,7 +62,7 @@ #define GL_GLEXT_LEGACY #include "GL/glut.h" -#include "../util/readtex.c" /* a hack, I know */ +#include "readtex.c" /* a hack, I know */ #define IMAGE_FILE "../images/girl.rgb" |