Removed visstars.cpp

ver1_5_1
Chris Laurel 2001-05-18 02:32:30 +00:00
parent 397d1d690b
commit 7ebb79a2c2
3 changed files with 21 additions and 16 deletions

18
INSTALL
View File

@ -16,15 +16,15 @@ The cp command should really be automatic, but I'm not quite there yet. It's
very important run Celestia from the base directory in which it was unpacked;
otherwise, it won't find the configuration and data files.
This README included with this release is for the Windows version. Not
every feature of the Window version of Celestia is supported yet. There are
there are no menus right now, no mouse wheel support, and the arrow keys are
currently not working. The only UNIX system I have available right now
is a P2-266 with RedHat 6.1 and no hardware 3D acceleration, which means that
Celestia is a slide show. It's not too bad when there's nothing visible except
a star field, but once you get close to a planet or enable galaxies,
performance goes down the tubes. I'm very interested in reports from users
with hardware acceleration.
There are two versions of Celestia which can be built--the default version
uses GLUT and has no GUI. The other version uses Gtk+ to provide a basic
menu bar similar to the one in Celestia for Windows. To build Celestia with
Gtk+ support, run configure with --enable-gtk:
configure --enable-gtk
The GtkGLArea widget is required in order build Celestia with Gtk+. It can
be downloaded from http://www.student.oulu.fi/~jlof/gtkglarea/
--Chris Laurel
claurel@www.shatters.net

View File

@ -57,10 +57,15 @@ POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
host_alias = @host_alias@
host_triplet = @host@
CC = @CC@
CPP = @CPP@
CXX = @CXX@
CXXCPP = @CXXCPP@
GTK_CFLAGS = @GTK_CFLAGS@
GTK_CONFIG = @GTK_CONFIG@
GTK_LIBS = @GTK_LIBS@
MAKEINFO = @MAKEINFO@
PACKAGE = @PACKAGE@
VERSION = @VERSION@
@ -71,8 +76,8 @@ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = config.h
CONFIG_CLEAN_FILES =
DIST_COMMON = README ./stamp-h.in AUTHORS COPYING ChangeLog INSTALL \
Makefile.am Makefile.in NEWS aclocal.m4 config.h.in configure \
configure.in install-sh missing mkinstalldirs
Makefile.am Makefile.in NEWS aclocal.m4 config.guess config.h.in \
config.sub configure configure.in install-sh missing mkinstalldirs
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
@ -259,7 +264,7 @@ distdir: $(DISTFILES)
@for file in $(DISTFILES); do \
d=$(srcdir); \
if test -d $$d/$$file; then \
cp -pr $$/$$file $(distdir)/$$file; \
cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \

View File

@ -74,7 +74,7 @@ bin_PROGRAMS = celestia
@ENABLE_GTK_TRUE@FRONTENDSOURCE = gtkmain.cpp
@ENABLE_GTK_FALSE@FRONTENDSOURCE = glutmain.cpp
COMMONSOURCES = 3dsmesh.cpp 3dsmodel.cpp 3dsread.cpp asterism.cpp astro.cpp bigfix.cpp body.cpp cmdparser.cpp color.cpp command.cpp config.cpp console.cpp constellation.cpp debug.cpp dispmap.cpp execution.cpp favorites.cpp filetype.cpp galaxy.cpp glext.cpp meshmanager.cpp observer.cpp octree.cpp orbit.cpp overlay.cpp parser.cpp perlin.cpp regcombine.cpp render.cpp resmanager.cpp selection.cpp simulation.cpp solarsys.cpp spheremesh.cpp star.cpp stardb.cpp starname.cpp stellarclass.cpp texfont.cpp texmanager.cpp texture.cpp texturefont.cpp tokenizer.cpp univcoord.cpp unixtimer.cpp util.cpp vertexlist.cpp visstars.cpp
COMMONSOURCES = 3dsmesh.cpp 3dsmodel.cpp 3dsread.cpp asterism.cpp astro.cpp bigfix.cpp body.cpp cmdparser.cpp color.cpp command.cpp config.cpp console.cpp constellation.cpp debug.cpp dispmap.cpp execution.cpp favorites.cpp filetype.cpp galaxy.cpp glext.cpp meshmanager.cpp observer.cpp octree.cpp orbit.cpp overlay.cpp parser.cpp perlin.cpp regcombine.cpp render.cpp resmanager.cpp selection.cpp simulation.cpp solarsys.cpp spheremesh.cpp star.cpp stardb.cpp starname.cpp stellarclass.cpp texfont.cpp texmanager.cpp texture.cpp texturefont.cpp tokenizer.cpp univcoord.cpp unixtimer.cpp util.cpp vertexlist.cpp
celestia_SOURCES = $(COMMONSOURCES) $(FRONTENDSOURCE)
@ -102,7 +102,7 @@ X_PRE_LIBS = @X_PRE_LIBS@
@ENABLE_GTK_TRUE@spheremesh.o star.o stardb.o starname.o stellarclass.o \
@ENABLE_GTK_TRUE@texfont.o texmanager.o texture.o texturefont.o \
@ENABLE_GTK_TRUE@tokenizer.o univcoord.o unixtimer.o util.o \
@ENABLE_GTK_TRUE@vertexlist.o visstars.o gtkmain.o
@ENABLE_GTK_TRUE@vertexlist.o gtkmain.o
@ENABLE_GTK_FALSE@celestia_OBJECTS = 3dsmesh.o 3dsmodel.o 3dsread.o \
@ENABLE_GTK_FALSE@asterism.o astro.o bigfix.o body.o cmdparser.o \
@ENABLE_GTK_FALSE@color.o command.o config.o console.o constellation.o \
@ -113,7 +113,7 @@ X_PRE_LIBS = @X_PRE_LIBS@
@ENABLE_GTK_FALSE@solarsys.o spheremesh.o star.o stardb.o starname.o \
@ENABLE_GTK_FALSE@stellarclass.o texfont.o texmanager.o texture.o \
@ENABLE_GTK_FALSE@texturefont.o tokenizer.o univcoord.o unixtimer.o \
@ENABLE_GTK_FALSE@util.o vertexlist.o visstars.o glutmain.o
@ENABLE_GTK_FALSE@util.o vertexlist.o glutmain.o
celestia_LDADD = $(LDADD)
celestia_DEPENDENCIES =
celestia_LDFLAGS =
@ -141,7 +141,7 @@ DEP_FILES = .deps/3dsmesh.P .deps/3dsmodel.P .deps/3dsread.P \
.deps/starname.P .deps/stellarclass.P .deps/texfont.P \
.deps/texmanager.P .deps/texture.P .deps/texturefont.P \
.deps/tokenizer.P .deps/univcoord.P .deps/unixtimer.P .deps/util.P \
.deps/vertexlist.P .deps/visstars.P
.deps/vertexlist.P
SOURCES = $(celestia_SOURCES)
OBJECTS = $(celestia_OBJECTS)