From d4fc1418fb0139444e11860dce878f2751a414a7 Mon Sep 17 00:00:00 2001 From: "t.youngs" Date: Fri, 22 Feb 2008 23:27:06 +0000 Subject: [PATCH] Fixed some return value and GLint conversion 'warnings' (ifort). --- ChangeLog | 3 +++ Makefile.am | 2 +- configure.ac | 41 ++++++++++++++++++++++++++++--------- src/base/debug.cpp | 21 ++++++++----------- src/base/debug.h | 6 +++--- src/base/prefs.cpp | 3 ++- src/base/sysfunc.cpp | 7 +++++-- src/classes/dnchar.cpp | 4 ++-- src/classes/grid.cpp | 2 +- src/classes/pattern.cpp | 2 +- src/classes/spacegroup.cpp | 2 +- src/classes/variables.h | 2 +- src/command/commandlist.cpp | 2 +- src/command/flow.cpp | 2 ++ src/gui/canvas.cpp | 11 +++++++--- src/gui/canvas.h | 3 +-- src/render/render.cpp | 4 ++-- src/render/surface.cpp | 2 +- 18 files changed, 75 insertions(+), 44 deletions(-) diff --git a/ChangeLog b/ChangeLog index ced193454..42dc8d51d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,9 @@ Version 0.94 ------------ +2008-02-21 + * removed GTK gui and interface configure options + 2008-02-06 * added new gui commands and fixed trajectory loading diff --git a/Makefile.am b/Makefile.am index 5333660f0..f79e3cc54 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = src -EXTRA_DIST = scripts/*.txt doc/manual.pdf src/gui-qt/icons/*.svg src/gui-gtk/icons/*/*.xpm data/spgrp.dat data/filters/* +EXTRA_DIST = scripts/*.txt doc/manual.pdf src/gui/icons/*.svg data/spgrp.dat data/filters/* #filterdir = $(datadir)/aten/filters #filter_DATA = data/filters/* diff --git a/configure.ac b/configure.ac index e59c0b629..f0c54aa17 100644 --- a/configure.ac +++ b/configure.ac @@ -37,9 +37,27 @@ else AC_CHECK_HEADERS([GLUT/glut.h], ,[AC_MSG_ERROR([Could not find GLUT header. Is GLUT installed?])]) fi +# +# Additional Configuration Options +# + +# MEMDEBUG +AC_ARG_WITH([memdebug],[AC_HELP_STRING([--with-memdebug], + [Enable manual constructor / destructor counts.])], , + [memdebug=]) +if test "x$with_memdebug" != "x"; then + AC_DEFINE([MEMDEBUG], [], [Enable manual constructor / destructor counts.]) +fi + +# SPEEDTEST +AC_ARG_WITH([speedtest],[AC_HELP_STRING([--with-speedtest], + [Enable rendering speedtest (warning - makes compiled code otherwise unusable).])], , + [speedtest=]) +if test "x$with_speedtest" != "x"; then + AC_DEFINE([SPEEDTEST], [], [Enable rendering speedtest (warning - makes compiled code otherwise unusable).]) +fi -# Checks for GL, GLU, and GLUT headers -# Provide --with options to specify the include locations +# GL-INCLUDEDIR GL_CFLAGS="" AC_ARG_WITH([gl-includedir],[AC_HELP_STRING([--with-gl-includedir=DIR], [Set location of OpenGL and GLUT headers to DIR [default=auto]])], , @@ -48,8 +66,7 @@ if test "x$with_gl_includedir" != "xauto"; then GL_CFLAGS="-I$with_gl_includedir" fi - -# Allow Qt bin directory to be specified (to avoid version conflicts for moc, rcc, and uic) +# QTDIR QTDIR="" AC_ARG_WITH([qtdir],[AC_HELP_STRING([--with-qtdir=], [Specify location of Qt4 developer tools (moc, uic, and rcc) [default=""]])], , @@ -58,22 +75,23 @@ if test "x$with_qtdir" != "x"; then QTDIR="$with_qtdir/" fi - -# Add in Apple Qt configuration arguments +# QT-FRAMEWORK (Mac only) AC_ARG_WITH([qt],[AC_HELP_STRING([--with-qt=framework|fink|], [Determines which installation of Qt4 to use on OS X (should not be set for Linux)[default=]])], , [with_qt=]) + +# GLUT (Mac only) AC_ARG_WITH([glut],[AC_HELP_STRING([--with-glut=framework|], [Determines which installation of GLUT to use on OS X (should not be set for Linux)[default=]])], , [with_glut=]) -# Pre-initialise pkg-config since we don't know where the first PKG_CHECK_MODULES will occur +# Pre-initialise pkg-config PKG_PROG_PKG_CONFIG -# Set up compilation for qt GUI -AC_DEFINE([WITH_QTGUI], [], [Compile with the Qt4 GUI interface]) +# Set up compilation for Qt GUI +#AC_DEFINE([WITH_QTGUI], [], [Compile with the Qt4 GUI interface]) AC_DEFINE([HAS_GUI], [], [Whether a GUI has been specified]) if test "$with_qt" = "framework"; then QTGUI_LIBS="-framework QtGui -framework QtOpenGL -framework QtCore" @@ -102,6 +120,7 @@ else fi +# Perform Makefile substitutions AC_SUBST(GUI_LDLIBS) AC_SUBST(GUI_CFLAGS) AC_SUBST(QTDIR) @@ -113,12 +132,14 @@ AC_C_CONST AC_C_INLINE AC_STRUCT_TM + # Checks for library functions. AC_FUNC_SELECT_ARGTYPES AC_FUNC_VPRINTF AC_CHECK_FUNCS([floor pow select sqrt strchr strrchr strstr]) -# Define AC_OUTPUT + +# Define Makefiles in AC_OUTPUT AC_OUTPUT(Makefile src/Makefile src/base/Makefile diff --git a/src/base/debug.cpp b/src/base/debug.cpp index 38f499ffa..9f91d986b 100644 --- a/src/base/debug.cpp +++ b/src/base/debug.cpp @@ -147,8 +147,8 @@ void print_memdebuginfo() */ #ifdef SPEEDTEST -int speedtest_numrenders, speedtest_totalrenders; -clock_t speedtest_start, speedtest_finish; + int speedtest_numrenders = 0, speedtest_totalrenders = 100; + clock_t speedtest_start, speedtest_finish; #endif /* @@ -159,14 +159,11 @@ clock_t speedtest_start, speedtest_finish; void prepare_debug() { #ifdef MEMDEBUG - for (int i=0; i -extern int speedtest_numrenders, speedtest_totalrenders; -extern clock_t speedtest_start, speedtest_finish; + #include + extern int speedtest_numrenders, speedtest_totalrenders; + extern clock_t speedtest_start, speedtest_finish; #endif #endif diff --git a/src/base/prefs.cpp b/src/base/prefs.cpp index b88d99084..6672a0df0 100644 --- a/src/base/prefs.cpp +++ b/src/base/prefs.cpp @@ -281,8 +281,9 @@ void prefs_data::load(const char *filename) if (!prefcmds.cache_command()) break; } // Check the flowstack - it should contain just the BC_ROOTNODE branch - if (prefcmds.get_branchstack_size() != 0) + if (prefcmds.get_branchstack_size() != 1) { + printf("%i unterminated blocks in prefs file.\n",prefcmds.get_branchstack_size()); dbg_end(DM_CALLS,"prefs::load"); return; } diff --git a/src/base/sysfunc.cpp b/src/base/sysfunc.cpp index e20552087..5b2feff11 100644 --- a/src/base/sysfunc.cpp +++ b/src/base/sysfunc.cpp @@ -325,8 +325,11 @@ const char *evaluate(const char *s, variable_list *vars) } } // Look for non-blank argument and set it as result - for (n=0; n strlen(v)) { - printf("Too many arguments (%i) given to command '%s' (which expects %i at most).\n", (parser.get_nargs()-1), cmd, strlen(v)); + printf("Too many arguments (%i) given to command '%s' (which expects %li at most).\n", (parser.get_nargs()-1), cmd, strlen(v)); dbg_end(DM_CALLS,"command::add_variables"); return FALSE; } diff --git a/src/command/flow.cpp b/src/command/flow.cpp index a8ab27223..9d489493b 100644 --- a/src/command/flow.cpp +++ b/src/command/flow.cpp @@ -49,6 +49,8 @@ int commanddata::function_CA_ELSEIF(command *&c, bundle &obj) int commanddata::function_CA_END(command *&c, bundle &obj) { + // This should never be called.... + return CR_SUCCESS; } // Loop over atoms diff --git a/src/gui/canvas.cpp b/src/gui/canvas.cpp index cfe9d9dcd..917879644 100644 --- a/src/gui/canvas.cpp +++ b/src/gui/canvas.cpp @@ -144,9 +144,13 @@ void canvas::init_gl() dbg_begin(DM_CALLS,"canvas::init_gl"); if (begin_gl()) { - // Create lists for globs - if (list[0] == 0) list[GLOB_STICKATOM] = glGenLists(GLOB_NITEMS); - for (int n=1; nget_name()); - glDeleteLists(list[GLOB_MODEL],1); + //glDeleteLists(list[GLOB_MODEL],1); glNewList(list[GLOB_MODEL],GL_COMPILE_AND_EXECUTE); // Draw the model cell (this also translates our drawing position to the -half cell point. render_model_cell(); diff --git a/src/render/surface.cpp b/src/render/surface.cpp index f2be96834..68d24425a 100644 --- a/src/render/surface.cpp +++ b/src/render/surface.cpp @@ -447,7 +447,7 @@ void canvas::render_surfaces() if (g->should_rerender()) { - if (list != -1) glDeleteLists(list,1); + //if (list != 0) glDeleteLists(list,1); glNewList(list,GL_COMPILE); switch (g->get_style()) {