diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-04-25 13:34:43 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-04-25 13:34:43 +0000 |
| commit | d3afe9c10a216843c5ad01be1c373251464c85c0 (patch) | |
| tree | f1e6fe8ae2282305bf1f358c62bb7004aa3549d8 /src | |
| parent | 804317fd5e83e846507e975179db01f1ac70eca5 (diff) | |
Don't use GCC c++ or g++ compiler to build programs, use gcc instead.
Some more anti-warning stuff...
Added --disable-gl option to disable OpenGL support + check.
Added code to stop the configuration if X11 could not be found.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1441 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
| -rw-r--r-- | src/fl_call_main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fl_call_main.c b/src/fl_call_main.c index 65fc61404..061b29d3e 100644 --- a/src/fl_call_main.c +++ b/src/fl_call_main.c @@ -1,5 +1,5 @@ /* - * "$Id: fl_call_main.c,v 1.1.2.10 2001/04/13 19:07:40 easysw Exp $" + * "$Id: fl_call_main.c,v 1.1.2.11 2001/04/25 13:34:43 easysw Exp $" * * Copyright 1998-2001 by Bill Spitzak and others. * @@ -81,10 +81,10 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, #else /* This code to prevent "empty translation unit" or similar warnings... */ -static void dummy(void) {} +static void dummy(void) {dummy();} #endif /* - * End of "$Id: fl_call_main.c,v 1.1.2.10 2001/04/13 19:07:40 easysw Exp $". + * End of "$Id: fl_call_main.c,v 1.1.2.11 2001/04/25 13:34:43 easysw Exp $". */ |
