mirror of
https://git.freebsd.org/ports.git
synced 2025-06-14 17:20:29 -04:00
After seven release candidates, the 2.0.0 final has been released! PR: ports/57377 Submitted by: Thierry Thomas <thierry@pompo.net>
20 lines
603 B
C
20 lines
603 B
C
--- progs/demos/Fractals_random/fractals_random.c.orig Tue Sep 23 07:17:13 2003
|
|
+++ progs/demos/Fractals_random/fractals_random.c Sat Oct 4 02:43:15 2003
|
|
@@ -20,7 +20,7 @@
|
|
* Escape - quit
|
|
*/
|
|
|
|
-#include <GL/freeglut.h>
|
|
+#include <../../../include/GL/freeglut.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
@@ -253,7 +253,7 @@
|
|
if ( argc > 1 )
|
|
readConfigFile ( argv[1] ) ;
|
|
else
|
|
- readConfigFile ( "fractals.dat" ) ;
|
|
+ readConfigFile ( "/usr/local/share/examples/freeglut/fractals.dat" ) ;
|
|
|
|
glutInit(&argc, argv);
|
|
glutInitWindowSize(500, 250);
|