Skip to content
Snippets Groups Projects
Commit 11a1befd authored by Marcus Comstedt's avatar Marcus Comstedt
Browse files

Updated to 0.7, and Mesa support added.

Rev: src/post_modules/GL/Makefile.in:1.2
Rev: src/post_modules/GL/acconfig.h:1.1
Rev: src/post_modules/GL/auto.c.in:1.5
Rev: src/post_modules/GL/configure.in:1.2
Rev: src/post_modules/GL/top.c:1.3
parent 005fe3bc
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@
# Remove the corresponding line before committing
# changes to these files.
/src/post_modules/GL/Makefile.in foreign_ident
/src/post_modules/GL/acconfig.h foreign_ident
/src/post_modules/GL/auto.c.in foreign_ident
/src/post_modules/GL/configure.in foreign_ident
/src/post_modules/GL/top.c foreign_ident
# $Id: Makefile.in,v 1.1 1998/11/02 23:54:33 marcus Exp $
# $Id: Makefile.in,v 1.2 1999/07/16 20:01:12 marcus Exp $
SRCDIR=@srcdir@
VPATH=@srcdir@:@srcdir@/../..:../..
OBJS=top.o auto.o
MODULE_LDFLAGS=@LDFLAGS@ @X_LIBS@ @X_PRE_LIBS@ -lX11 @X_EXTRA_LIBS@ @LIBS@
MODULE_CFLAGS=@X_CFLAGS@
CONFIG_HEADERS=@CONFIG_HEADERS@
@dynamic_module_makefile@
......
/* $Id: acconfig.h,v 1.1 1999/07/16 20:01:12 marcus Exp $ */
/*
* $Id: auto.c.in,v 1.4 1998/11/03 01:08:18 marcus Exp $
* $Id: auto.c.in,v 1.5 1999/07/16 20:01:26 marcus Exp $
*
*/
#include "global.h"
RCSID("$Id: auto.c.in,v 1.4 1998/11/03 01:08:18 marcus Exp $");
#include "config.h"
RCSID("$Id: auto.c.in,v 1.5 1999/07/16 20:01:26 marcus Exp $");
#include "stralloc.h"
#include "pike_macros.h"
#include "object.h"
......
# $Id: configure.in,v 1.1 1998/11/02 23:54:36 marcus Exp $
# $Id: configure.in,v 1.2 1999/07/16 20:01:12 marcus Exp $
AC_INIT(top.c)
AC_CONFIG_HEADER(config.h)
AC_MODULE_INIT()
AC_PATH_XTRA()
AC_CHECK_LIB(GL, glOrtho,,,[$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS])
AC_CHECK_LIB(GL, glOrtho,,,[$X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS])
if test x"$ac_cv_lib_GL_glOrtho" != yes; then
AC_CHECK_LIB(MesaGL, glOrtho,,,[$X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS])
fi
AC_CHECK_FUNC(glXChooseVisual)
AC_OUTPUT(Makefile,echo FOO >stamp-h )
......
/*
* $Id: top.c,v 1.2 1998/11/03 18:08:17 marcus Exp $
* $Id: top.c,v 1.3 1999/07/16 20:02:27 marcus Exp $
*
*/
......@@ -10,7 +10,9 @@
#include "global.h"
RCSID("$Id: top.c,v 1.2 1998/11/03 18:08:17 marcus Exp $");
#include "config.h"
RCSID("$Id: top.c,v 1.3 1999/07/16 20:02:27 marcus Exp $");
#include "stralloc.h"
#include "pike_macros.h"
#include "object.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment