ftgl-2.1.3~rc5/0000777000175000017500000000000011024234670010265 500000000000000ftgl-2.1.3~rc5/demo/0000777000175000017500000000000011024234670011211 500000000000000ftgl-2.1.3~rc5/demo/c-demo.c0000644000175000017500000001553511015302600012433 00000000000000/* * c-demo.cpp - simple C demo for FTGL, the OpenGL font library * * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include /* sin(), cos() */ #include /* exit() */ #if defined HAVE_GL_GLUT_H # include #elif defined HAVE_GLUT_GLUT_H # include #else # error GLUT headers not present #endif #include static FTGLfont *font[3]; static int fontindex = 0; static int lastfps = 0; static int frames = 0; /* * HaloGlyph is a derivation of FTGLglyph that displays a polygon glyph * and a halo of outline glyphs at varying positions and with varying * outset values. */ struct HaloGlyph { FTGLglyph *subglyph[5]; }; static void RenderHalo(FTGLglyph * baseGlyph, void *data, FTGL_DOUBLE penx, FTGL_DOUBLE peny, int renderMode, FTGL_DOUBLE *advancex, FTGL_DOUBLE *advancey) { struct HaloGlyph *p = (struct HaloGlyph *)data; int i; glPushMatrix(); for(i = 0; i < 5; i++) { glTranslatef(0.0f, 0.0f, -2.0f); ftglRenderGlyph(p->subglyph[i], penx, peny, renderMode, advancex, advancey); } glPopMatrix(); ftglRenderGlyph(baseGlyph, penx, peny, renderMode, advancex, advancey); } static void DestroyHalo(FTGLglyph * baseGlyph, void *data) { struct HaloGlyph *p = (struct HaloGlyph *)data; int i; for(i = 0; i < 5; i++) { ftglDestroyGlyph(p->subglyph[i]); } ftglDestroyGlyph(baseGlyph); free(p); } static FTGLglyph *MakeHaloGlyph(FT_GlyphSlot slot, void *data) { struct HaloGlyph *p = malloc(sizeof(struct HaloGlyph)); FTGLglyph *baseGlyph = ftglCreatePolygonGlyph(slot, 0.0f, 1.0f); int i; for(i = 0; i < 5; i++) { p->subglyph[i] = ftglCreateOutlineGlyph(slot, i, 1); } return ftglCreateCustomGlyph(baseGlyph, p, RenderHalo, DestroyHalo); } /* * Main OpenGL loop: set up lights, apply a few rotation effects, and * render text using the current FTGL object. */ static void RenderScene(void) { int now = glutGet(GLUT_ELAPSED_TIME); float n = (float)now / 20.0f; float t1 = sin(n / 80.0f); float t2 = sin(n / 50.0f + 1.0f); float t3 = sin(n / 30.0f + 2.0f); float ambient[4] = { (t1 + 2.0f) / 3.0f, (t2 + 2.0f) / 3.0f, (t3 + 2.0f) / 3.0f, 0.3f }; float diffuse[4] = { 1.0f, 0.9f, 0.9f, 1.0f }; float specular[4] = { 1.0f, 0.7f, 0.7f, 1.0f }; float position[4] = { 100.0f, 100.0f, 0.0f, 1.0f }; float front_ambient[4] = { 0.7f, 0.7f, 0.7f, 0.0f }; glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glEnable(GL_LIGHTING); glEnable(GL_DEPTH_TEST); glPushMatrix(); glTranslatef(-0.9f, -0.2f, -10.0f); glLightfv(GL_LIGHT1, GL_AMBIENT, ambient); glLightfv(GL_LIGHT1, GL_DIFFUSE, diffuse); glLightfv(GL_LIGHT1, GL_SPECULAR, specular); glLightfv(GL_LIGHT1, GL_POSITION, position); glEnable(GL_LIGHT1); glPopMatrix(); glPushMatrix(); glMaterialfv(GL_FRONT, GL_AMBIENT, front_ambient); glColorMaterial(GL_FRONT, GL_DIFFUSE); glTranslatef(0.0f, 0.0f, 20.0f); glRotatef(n / 1.11f, 0.0f, 1.0f, 0.0f); glRotatef(n / 2.23f, 1.0f, 0.0f, 0.0f); glRotatef(n / 3.17f, 0.0f, 0.0f, 1.0f); glTranslatef(-260.0f, -0.2f, 0.0f); glColor3f(0.0f, 0.0f, 0.0f); ftglRenderFont(font[fontindex], "Hello FTGL!", FTGL_RENDER_ALL); glPopMatrix(); glutSwapBuffers(); frames++; if(now - lastfps > 5000) { fprintf(stderr, "%i frames in 5.0 seconds = %g FPS\n", frames, frames * 1000. / (now - lastfps)); lastfps += 5000; frames = 0; } } /* * GLUT key processing function: quits, cycles across fonts. */ static void ProcessKeys(unsigned char key, int x, int y) { switch(key) { case 27: ftglDestroyFont(font[0]); ftglDestroyFont(font[1]); ftglDestroyFont(font[2]); exit(EXIT_SUCCESS); break; case '\t': fontindex = (fontindex + 1) % 3; break; } } /* * Main program entry point: set up GLUT window, load fonts, run GLUT loop. */ int main(int argc, char **argv) { char const *file = NULL; #ifdef FONT_FILE file = FONT_FILE; #else if(argc < 2) { fprintf(stderr, "Usage: %s \n", argv[0]); return EXIT_FAILURE; } #endif if(argc > 1) { file = argv[1]; } /* Initialise GLUT stuff */ glutInit(&argc, argv); glutInitDisplayMode(GLUT_DEPTH | GLUT_DOUBLE | GLUT_RGBA); glutInitWindowPosition(100, 100); glutInitWindowSize(640, 480); glutCreateWindow("simple FTGL C demo"); glutDisplayFunc(RenderScene); glutIdleFunc(RenderScene); glutKeyboardFunc(ProcessKeys); glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluPerspective(90, 640.0f / 480.0f, 1, 1000); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); gluLookAt(0.0, 0.0, 640.0f / 2.0f, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0); /* Initialise FTGL stuff */ font[0] = ftglCreateExtrudeFont(file); font[1] = ftglCreateBufferFont(file); font[2] = ftglCreateCustomFont(file, NULL, MakeHaloGlyph); if(!font[0] || !font[1] || !font[2]) { fprintf(stderr, "%s: could not load font `%s'\n", argv[0], file); return EXIT_FAILURE; } ftglSetFontFaceSize(font[0], 80, 72); ftglSetFontDepth(font[0], 10); ftglSetFontOutset(font[0], 0, 3); ftglSetFontCharMap(font[0], ft_encoding_unicode); ftglSetFontFaceSize(font[1], 80, 72); ftglSetFontCharMap(font[1], ft_encoding_unicode); ftglSetFontFaceSize(font[2], 80, 72); ftglSetFontCharMap(font[2], ft_encoding_unicode); /* Run GLUT loop */ glutMainLoop(); return EXIT_SUCCESS; } ftgl-2.1.3~rc5/demo/tb.h0000644000175000017500000000347311005321433011703 00000000000000/* * Simple trackball-like motion adapted (ripped off) from projtex.c * (written by David Yu and David Blythe). See the SIGGRAPH '96 * Advanced OpenGL course notes. * * * Usage: * * o call tbInit() in before any other tb call * o call tbReshape() from the reshape callback * o call tbMatrix() to get the trackball matrix rotation * o call tbStartMotion() to begin trackball movememt * o call tbStopMotion() to stop trackball movememt * o call tbMotion() from the motion callback * o call tbAnimate(GL_TRUE) if you want the trackball to continue * spinning after the mouse button has been released * o call tbAnimate(GL_FALSE) if you want the trackball to stop * spinning after the mouse button has been released * * Typical setup: * * void init(void) { tbInit(GLUT_MIDDLE_BUTTON); tbAnimate(GL_TRUE); . . . } void reshape(int width, int height) { tbReshape(width, height); . . . } void display(void) { glPushMatrix(); tbMatrix(); . . . draw the scene . . . glPopMatrix(); } void mouse(int button, int state, int x, int y) { tbMouse(button, state, x, y); . . . } void motion(int x, int y) { tbMotion(x, y); . . . } int main(int argc, char** argv) { . . . init(); glutReshapeFunc(reshape); glutDisplayFunc(display); glutMouseFunc(mouse); glutMotionFunc(motion); . . . } * * */ /* functions */ #ifdef __cplusplus extern "C" { #endif void tbInit(GLuint button); void tbMatrix(void); void tbReshape(int width, int height); void tbMouse(int button, int state, int x, int y); void tbMotion(int x, int y); void tbAnimate(GLboolean animate); #ifdef __cplusplus } #endif ftgl-2.1.3~rc5/demo/simple.cpp0000644000175000017500000001460211021200710013106 00000000000000/* * simple.cpp - simple demo for FTGL, the OpenGL font library * * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include // sin(), cos() #include // exit() #if defined HAVE_GL_GLUT_H # include #elif defined HAVE_GLUT_GLUT_H # include #else # error GLUT headers not present #endif #include static FTFont *font[3]; static int fontindex = 0; static int lastfps = 0; static int frames = 0; // // FTHaloGlyph is a derivation of FTPolygonGlyph that also displays a // halo of FTOutlineGlyph objects at varying positions and with varying // outset values. // class FTHaloGlyph : public FTPolygonGlyph { public: FTHaloGlyph(FT_GlyphSlot glyph) : FTPolygonGlyph(glyph, 0, true) { for(int i = 0; i < 5; i++) { subglyph[i] = new FTOutlineGlyph(glyph, i, true); } } private: const FTPoint& Render(const FTPoint& pen, int renderMode) { glPushMatrix(); for(int i = 0; i < 5; i++) { glTranslatef(0.0, 0.0, -2.0); subglyph[i]->Render(pen, renderMode); } glPopMatrix(); return FTPolygonGlyph::Render(pen, renderMode); } FTGlyph *subglyph[5]; }; // // FTHaloFont is a simple FTFont derivation that builds FTHaloGlyph // objects. // class FTHaloFont : public FTFont { public: FTHaloFont(char const *fontFilePath) : FTFont(fontFilePath) {} private: virtual FTGlyph* MakeGlyph(FT_GlyphSlot slot) { return new FTHaloGlyph(slot); } }; // // Main OpenGL loop: set up lights, apply a few rotation effects, and // render text using the current FTGL object. // static void RenderScene(void) { int now = glutGet(GLUT_ELAPSED_TIME); float n = (float)now / 20.; float t1 = sin(n / 80); float t2 = sin(n / 50 + 1); float t3 = sin(n / 30 + 2); float ambient[4] = { (t1 + 2.0) / 3, (t2 + 2.0) / 3, (t3 + 2.0) / 3, 0.3 }; float diffuse[4] = { 1.0, 0.9, 0.9, 1.0 }; float specular[4] = { 1.0, 0.7, 0.7, 1.0 }; float position[4] = { 100.0, 100.0, 0.0, 1.0 }; float front_ambient[4] = { 0.7, 0.7, 0.7, 0.0 }; glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glEnable(GL_LIGHTING); glEnable(GL_DEPTH_TEST); glPushMatrix(); glTranslatef(-0.9, -0.2, -10.0); glLightfv(GL_LIGHT1, GL_AMBIENT, ambient); glLightfv(GL_LIGHT1, GL_DIFFUSE, diffuse); glLightfv(GL_LIGHT1, GL_SPECULAR, specular); glLightfv(GL_LIGHT1, GL_POSITION, position); glEnable(GL_LIGHT1); glPopMatrix(); glPushMatrix(); glMaterialfv(GL_FRONT, GL_AMBIENT, front_ambient); glColorMaterial(GL_FRONT, GL_DIFFUSE); glTranslatef(0.0, 0.0, 20.0); glRotatef(n / 1.11, 0.0, 1.0, 0.0); glRotatef(n / 2.23, 1.0, 0.0, 0.0); glRotatef(n / 3.17, 0.0, 0.0, 1.0); glTranslatef(-260.0, -0.2, 0.0); glColor3f(1.0, 1.0, 1.0); font[fontindex]->Render("Hello FTGL!"); glPopMatrix(); glutSwapBuffers(); frames++; if(now - lastfps > 5000) { fprintf(stderr, "%i frames in 5.0 seconds = %g FPS\n", frames, frames * 1000. / (now - lastfps)); lastfps += 5000; frames = 0; } } // // GLUT key processing function: quits, cycles across fonts. // static void ProcessKeys(unsigned char key, int x, int y) { switch(key) { case 27: delete font[0]; delete font[1]; delete font[2]; exit(EXIT_SUCCESS); break; case '\t': fontindex = (fontindex + 1) % 3; break; } } // // Main program entry point: set up GLUT window, load fonts, run GLUT loop. // int main(int argc, char **argv) { char const *file = NULL; #ifdef FONT_FILE file = FONT_FILE; #else if(argc < 2) { fprintf(stderr, "Usage: %s \n", argv[0]); return EXIT_FAILURE; } #endif if(argc > 1) { file = argv[1]; } // Initialise GLUT stuff glutInit(&argc, argv); glutInitDisplayMode(GLUT_DEPTH | GLUT_DOUBLE | GLUT_RGBA); glutInitWindowPosition(100, 100); glutInitWindowSize(640, 480); glutCreateWindow("simple FTGL C++ demo"); glutDisplayFunc(RenderScene); glutIdleFunc(RenderScene); glutKeyboardFunc(ProcessKeys); glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluPerspective(90, 640.0f / 480.0f, 1, 1000); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); gluLookAt(0.0, 0.0, 640.0f / 2.0f, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0); // Initialise FTGL stuff font[0] = new FTExtrudeFont(file); font[1] = new FTBufferFont(file); font[2] = new FTHaloFont(file); if(font[0]->Error() || font[1]->Error() || font[2]->Error()) { fprintf(stderr, "%s: could not load font `%s'\n", argv[0], file); return EXIT_FAILURE; } font[0]->FaceSize(80); font[0]->Depth(10); font[0]->Outset(0, 3); font[0]->CharMap(ft_encoding_unicode); font[1]->FaceSize(80); font[1]->CharMap(ft_encoding_unicode); font[2]->FaceSize(80); font[2]->CharMap(ft_encoding_unicode); // Run GLUT loop glutMainLoop(); return EXIT_SUCCESS; } ftgl-2.1.3~rc5/demo/FTGLMFontDemo.cpp0000644000175000017500000004510211022777425014150 00000000000000/* * FTGLDemo - advanced demo for FTGL, the OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include #include #include #if defined HAVE_GL_GLUT_H # include #elif defined HAVE_GLUT_GLUT_H # include #else # error GLUT headers not present #endif #include #include "tb.h" // YOU'LL PROBABLY WANT TO CHANGE THESE #if defined FONT_FILE char const *defaultFonts[] = { FONT_FILE }; const int NumDefaultFonts = 1; #elif defined __APPLE_CC__ char const *defaultFonts[] = { "/System/Library/Fonts/Helvetica.dfont", "/System/Library/Fonts/Geneva.dfont" }; const int NumDefaultFonts = 2; #elif defined WIN32 char const *defaultFonts[] = { "C:\\WINNT\\Fonts\\arial.ttf" }; const int NumDefaultFonts = 1; #else // Put your font files here if configure did not find any. char const *defaultFonts[] = { }; const int NumDefaultFonts = 0; #endif /* Set this to 1 to build a Mac os app (ignore the command line args). */ #ifndef IGNORE_ARGV # define IGNORE_ARGV 0 #endif /* IGNORE_ARGV */ #define EDITING 1 #define INTERACTIVE 2 #define FTGL_BITMAP 0 #define FTGL_PIXMAP 1 #define FTGL_OUTLINE 2 #define FTGL_POLYGON 3 #define FTGL_EXTRUDE 4 #define FTGL_TEXTURE 5 const int NumStyles = 6; char const * const *fontfiles; int current_font = FTGL_EXTRUDE; GLint w_win = 640, h_win = 480; int mode = INTERACTIVE; int carat = 0; FTSimpleLayout simpleLayout; FTLayout *layouts[] = { &simpleLayout, NULL }; int currentLayout = 0; const int NumLayouts = 2; const float InitialLineLength = 300.0f; const float OX = -100; const float OY = 200; //wchar_t myString[16] = { 0x6FB3, 0x9580}; char myString[4096]; int totalFonts; static FTFont** fonts; static FTPixmapFont* infoFont; void SetCamera(void); inline int GetStyle() { return current_font % NumStyles; } inline int GetFace() { return current_font / NumStyles; } void setUpLighting() { // Set up lighting. float light1_ambient[4] = { 1.0, 1.0, 1.0, 1.0 }; float light1_diffuse[4] = { 1.0, 0.9, 0.9, 1.0 }; float light1_specular[4] = { 1.0, 0.7, 0.7, 1.0 }; float light1_position[4] = { -1.0, 1.0, 1.0, 0.0 }; glLightfv(GL_LIGHT1, GL_AMBIENT, light1_ambient); glLightfv(GL_LIGHT1, GL_DIFFUSE, light1_diffuse); glLightfv(GL_LIGHT1, GL_SPECULAR, light1_specular); glLightfv(GL_LIGHT1, GL_POSITION, light1_position); glEnable(GL_LIGHT1); float light2_ambient[4] = { 0.2, 0.2, 0.2, 1.0 }; float light2_diffuse[4] = { 0.9, 0.9, 0.9, 1.0 }; float light2_specular[4] = { 0.7, 0.7, 0.7, 1.0 }; float light2_position[4] = { 1.0, -1.0, -1.0, 0.0 }; glLightfv(GL_LIGHT2, GL_AMBIENT, light2_ambient); glLightfv(GL_LIGHT2, GL_DIFFUSE, light2_diffuse); glLightfv(GL_LIGHT2, GL_SPECULAR, light2_specular); glLightfv(GL_LIGHT2, GL_POSITION, light2_position); //glEnable(GL_LIGHT2); float front_emission[4] = { 0.3, 0.2, 0.1, 0.0 }; float front_ambient[4] = { 0.2, 0.2, 0.2, 0.0 }; float front_diffuse[4] = { 0.95, 0.95, 0.8, 0.0 }; float front_specular[4] = { 0.6, 0.6, 0.6, 0.0 }; glMaterialfv(GL_FRONT, GL_EMISSION, front_emission); glMaterialfv(GL_FRONT, GL_AMBIENT, front_ambient); glMaterialfv(GL_FRONT, GL_DIFFUSE, front_diffuse); glMaterialfv(GL_FRONT, GL_SPECULAR, front_specular); glMaterialf(GL_FRONT, GL_SHININESS, 16.0); glColor4fv(front_diffuse); glLightModeli(GL_LIGHT_MODEL_TWO_SIDE, GL_FALSE); glEnable(GL_CULL_FACE); glColorMaterial(GL_FRONT, GL_DIFFUSE); glEnable(GL_COLOR_MATERIAL); glEnable(GL_LIGHTING); glShadeModel(GL_SMOOTH); } void setUpFonts(int numFontFiles) { // The total number of fonts is styles * faces totalFonts = numFontFiles*NumStyles; // Allocate an array to hold all fonts fonts = new FTFont *[totalFonts]; // Instantiate and configure named fonts for(int i = 0; i < numFontFiles; i++) { fonts[i*NumStyles + FTGL_BITMAP] = new FTBitmapFont(fontfiles[i]); fonts[i*NumStyles + FTGL_PIXMAP] = new FTPixmapFont(fontfiles[i]); fonts[i*NumStyles + FTGL_OUTLINE] = new FTOutlineFont(fontfiles[i]); fonts[i*NumStyles + FTGL_POLYGON] = new FTPolygonFont(fontfiles[i]); fonts[i*NumStyles + FTGL_EXTRUDE] = new FTExtrudeFont(fontfiles[i]); fonts[i*NumStyles + FTGL_TEXTURE] = new FTTextureFont(fontfiles[i]); for(int x = 0; x < NumStyles; ++x) { int j = i * NumStyles + x; if(fonts[j]->Error()) { fprintf(stderr, "Failed to open font %s\n", fontfiles[i]); exit(1); } if(!fonts[j]->FaceSize(24)) { fprintf(stderr, "Failed to set size\n"); exit(1); } fonts[j]->Depth(20); fonts[j]->CharMap(ft_encoding_unicode); } } infoFont = new FTPixmapFont(fontfiles[0]); if(infoFont->Error()) { fprintf(stderr, "Failed to open font %s\n", fontfiles[0]); exit(1); } infoFont->FaceSize(18); strcpy(myString, "OpenGL is a powerful software interface for graphics " "hardware that allows graphics programmers to produce high-quality " "color images of 3D objects. abcdefghijklmnopqrstuvwxyzABCDEFGHIJKL" "MNOPQRSTUVWXYZ0123456789"); } void renderFontmetrics() { FTBBox bbox; float x1, y1, z1, x2, y2, z2; // If there is a layout, use it to compute the bbox, otherwise query as // a string. if(layouts[currentLayout]) bbox = layouts[currentLayout]->BBox(myString); else bbox = fonts[current_font]->BBox(myString); x1 = bbox.Lower().Xf(); y1 = bbox.Lower().Yf(); z1 = bbox.Lower().Zf(); x2 = bbox.Upper().Xf(); y2 = bbox.Upper().Yf(); z2 = bbox.Upper().Zf(); // Draw the bounding box glDisable(GL_LIGHTING); glDisable(GL_TEXTURE_2D); glEnable(GL_LINE_SMOOTH); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE); // GL_ONE_MINUS_SRC_ALPHA glColor3f(0.0, 1.0, 0.0); // Draw the front face glBegin(GL_LINE_LOOP); glVertex3f(x1, y1, z1); glVertex3f(x1, y2, z1); glVertex3f(x2, y2, z1); glVertex3f(x2, y1, z1); glEnd(); // Draw the back face if((GetStyle() == FTGL_EXTRUDE) && (z1 != z2)) { glBegin(GL_LINE_LOOP); glVertex3f(x1, y1, z2); glVertex3f(x1, y2, z2); glVertex3f(x2, y2, z2); glVertex3f(x2, y1, z2); glEnd(); // Join the faces glBegin(GL_LINES); glVertex3f(x1, y1, z1); glVertex3f(x1, y1, z2); glVertex3f(x1, y2, z1); glVertex3f(x1, y2, z2); glVertex3f(x2, y2, z1); glVertex3f(x2, y2, z2); glVertex3f(x2, y1, z1); glVertex3f(x2, y1, z2); glEnd(); } // Render layout-specific metrics if(!layouts[currentLayout]) { // There is no layout. Draw the baseline, Ascender and Descender glBegin(GL_LINES); glColor3f(0.0, 0.0, 1.0); glVertex3f(0.0, 0.0, 0.0); glVertex3f(fonts[current_font]->Advance(myString), 0.0, 0.0); glVertex3f(0.0, fonts[current_font]->Ascender(), 0.0); glVertex3f(0.0, fonts[current_font]->Descender(), 0.0); glEnd(); } else if (layouts[currentLayout] && (dynamic_cast (layouts[currentLayout]))) { float lineWidth = ((FTSimpleLayout *)layouts[currentLayout])->GetLineLength(); // The layout is a SimpleLayout. Render guides that mark the edges // of the wrap region. glColor3f(0.5, 1.0, 1.0); glBegin(GL_LINES); glVertex3f(0, 10000, 0); glVertex3f(0, -10000, 0); glVertex3f(lineWidth, 10000, 0); glVertex3f(lineWidth, -10000, 0); glEnd(); } // Draw the origin glColor3f(1.0, 0.0, 0.0); glPointSize(5.0); glBegin(GL_POINTS); glVertex3f(0.0, 0.0, 0.0); glEnd(); } void renderFontInfo() { glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluOrtho2D(0, w_win, 0, h_win); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); // draw mode glColor3f(1.0, 1.0, 1.0); glRasterPos2f(20.0f , h_win - (20.0f + infoFont->Ascender())); switch(mode) { case EDITING: infoFont->Render("Edit Mode"); break; case INTERACTIVE: break; } // draw font type glRasterPos2i(20 , 20); switch(GetStyle()) { case FTGL_BITMAP: infoFont->Render("Bitmap Font"); break; case FTGL_PIXMAP: infoFont->Render("Pixmap Font"); break; case FTGL_OUTLINE: infoFont->Render("Outline Font"); break; case FTGL_POLYGON: infoFont->Render("Polygon Font"); break; case FTGL_EXTRUDE: infoFont->Render("Extruded Font"); break; case FTGL_TEXTURE: infoFont->Render("Texture Font"); break; } glRasterPos2f(20.0f , 20.0f + infoFont->Ascender() - infoFont->Descender()); infoFont->Render(fontfiles[GetFace()]); // If the current layout is a SimpleLayout, output the alignemnt mode if(layouts[currentLayout] && (dynamic_cast (layouts[currentLayout]))) { glRasterPos2f(20.0f , 20.0f + 2*(infoFont->Ascender() - infoFont->Descender())); // Output the alignment mode of the layout switch (((FTSimpleLayout *)layouts[currentLayout])->GetAlignment()) { case FTGL::ALIGN_LEFT: infoFont->Render("Align Left"); break; case FTGL::ALIGN_RIGHT: infoFont->Render("Align Right"); break; case FTGL::ALIGN_CENTER: infoFont->Render("Align Center"); break; case FTGL::ALIGN_JUSTIFY: infoFont->Render("Align Justified"); break; } } } void do_display (void) { switch(GetStyle()) { case FTGL_BITMAP: case FTGL_PIXMAP: case FTGL_OUTLINE: break; case FTGL_POLYGON: glDisable(GL_BLEND); setUpLighting(); break; case FTGL_EXTRUDE: glEnable(GL_DEPTH_TEST); glDisable(GL_BLEND); setUpLighting(); break; case FTGL_TEXTURE: glEnable(GL_TEXTURE_2D); glDisable(GL_DEPTH_TEST); setUpLighting(); glNormal3f(0.0, 0.0, 1.0); break; } glColor3f(1.0, 1.0, 1.0); // If you do want to switch the color of bitmaps rendered with glBitmap, // you will need to explicitly call glRasterPos (or its ilk) to lock // in a changed current color. // If there is an active layout use it to render the font if (layouts[currentLayout]) { layouts[currentLayout]->Render(myString); } else { fonts[current_font]->Render(myString); } renderFontmetrics(); renderFontInfo(); } void display(void) { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); SetCamera(); switch(GetStyle()) { case FTGL_BITMAP: case FTGL_PIXMAP: glRasterPos2i((long)(w_win / 2 + OX), (long)(h_win / 2 + OY)); glTranslatef(w_win / 2 + OX, h_win / 2 + OY, 0.0); break; case FTGL_OUTLINE: case FTGL_POLYGON: case FTGL_EXTRUDE: case FTGL_TEXTURE: glTranslatef(OX, OY, 0); tbMatrix(); break; } glPushMatrix(); do_display(); glPopMatrix(); glutSwapBuffers(); } void myinit(int numFontFiles) { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glClearColor(0.13, 0.17, 0.32, 0.0); glColor3f(1.0, 1.0, 1.0); glEnable(GL_CULL_FACE); glFrontFace(GL_CCW); glEnable(GL_DEPTH_TEST); glEnable(GL_POLYGON_OFFSET_LINE); glPolygonOffset(1.0, 1.0); // ???? SetCamera(); tbInit(GLUT_LEFT_BUTTON); tbAnimate(GL_FALSE); setUpFonts(numFontFiles); // Configure the SimpleLayout simpleLayout.SetLineLength(InitialLineLength); simpleLayout.SetFont(fonts[current_font]); } void parsekey(unsigned char key, int x, int y) { switch (key) { case 27: exit(0); break; case 13: if(mode == EDITING) { mode = INTERACTIVE; } else { mode = EDITING; carat = 0; } break; case '\t': // If current layout is a SimpleLayout, change its alignment properties if(layouts[currentLayout] && (dynamic_cast (layouts[currentLayout]))) { FTSimpleLayout *l = (FTSimpleLayout *)layouts[currentLayout]; // Decrement the layout switch (l->GetAlignment()) { case FTGL::ALIGN_LEFT: l->SetAlignment(FTGL::ALIGN_RIGHT); break; case FTGL::ALIGN_RIGHT: l->SetAlignment(FTGL::ALIGN_CENTER); break; case FTGL::ALIGN_CENTER: l->SetAlignment(FTGL::ALIGN_JUSTIFY); break; case FTGL::ALIGN_JUSTIFY: l->SetAlignment(FTGL::ALIGN_LEFT); break; } } break; default: if(mode == INTERACTIVE) { myString[0] = key; myString[1] = 0; } else { myString[carat] = key; myString[carat + 1] = 0; carat = carat > 2000 ? 2000 : carat + 1; } break; } glutPostRedisplay(); } void parseSpecialKey(int key, int x, int y) { FTSimpleLayout *l = NULL; // If the currentLayout is a SimpleLayout store a pointer in l if(layouts[currentLayout] && (dynamic_cast (layouts[currentLayout]))) { l = (FTSimpleLayout *)layouts[currentLayout]; } switch (key) { case GLUT_KEY_UP: current_font = (GetFace()*NumStyles + (current_font + 1)%NumStyles)%totalFonts; break; case GLUT_KEY_DOWN: current_font = (GetFace()*NumStyles + (current_font + NumStyles - 1)%NumStyles)%totalFonts; break; case GLUT_KEY_LEFT: fonts[current_font]->FaceSize(fonts[current_font]->FaceSize() - 1); break; case GLUT_KEY_RIGHT: fonts[current_font]->FaceSize(fonts[current_font]->FaceSize() + 1); break; case GLUT_KEY_PAGE_UP: current_font = (current_font + NumStyles)%totalFonts; break; case GLUT_KEY_PAGE_DOWN: current_font = (current_font + totalFonts - NumStyles)%totalFonts; break; case GLUT_KEY_HOME: currentLayout = (currentLayout + 1)%NumLayouts; break; case GLUT_KEY_END: currentLayout = (currentLayout + NumLayouts - 1)%NumLayouts; break; case GLUT_KEY_F1: case GLUT_KEY_F10: // If the current layout is simple decrement its line length if (l) l->SetLineLength(l->GetLineLength() - 10.0f); break; case GLUT_KEY_F2: case GLUT_KEY_F11: // If the current layout is simple increment its line length if (l) l->SetLineLength(l->GetLineLength() + 10.0f); break; } // If the current layout is a SimpleLayout, update its font. if(l) { l->SetFont(fonts[current_font]); } glutPostRedisplay(); } void motion(int x, int y) { tbMotion(x, y); } void mouse(int button, int state, int x, int y) { tbMouse(button, state, x, y); } void myReshape(int w, int h) { glMatrixMode (GL_MODELVIEW); glViewport (0, 0, w, h); glLoadIdentity(); w_win = w; h_win = h; SetCamera(); tbReshape(w_win, h_win); } void SetCamera(void) { switch(GetStyle()) { case FTGL_BITMAP: case FTGL_PIXMAP: glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluOrtho2D(0, w_win, 0, h_win); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); break; case FTGL_OUTLINE: case FTGL_POLYGON: case FTGL_EXTRUDE: case FTGL_TEXTURE: glMatrixMode (GL_PROJECTION); glLoadIdentity (); gluPerspective(90, (float)w_win / (float)h_win, 1, 1000); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); gluLookAt(0.0, 0.0, (float)h_win / 2.0f, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0); break; } } int main(int argc, char *argv[]) { int numFontFiles; if((argc >= 2) && !IGNORE_ARGV) { fontfiles = (char const * const *)argv + 1; numFontFiles = argc - 1; } else { fontfiles = defaultFonts; numFontFiles = NumDefaultFonts; } if(!fontfiles[0]) { fprintf(stderr, "At least one font file must be specified on the command line\n"); exit(1); } glutInit(&argc, argv); glutInitDisplayMode(GLUT_DEPTH | GLUT_RGB | GLUT_DOUBLE | GLUT_MULTISAMPLE); glutInitWindowPosition(50, 50); glutInitWindowSize(w_win, h_win); glutCreateWindow("FTGL TEST"); glutDisplayFunc(display); glutKeyboardFunc(parsekey); glutSpecialFunc(parseSpecialKey); glutMouseFunc(mouse); glutMotionFunc(motion); glutReshapeFunc(myReshape); glutIdleFunc(display); myinit(numFontFiles); glutMainLoop(); return 0; } ftgl-2.1.3~rc5/demo/Makefile.in0000644000175000017500000006202011024231635013170 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ @HAVE_GLUT_TRUE@noinst_PROGRAMS = simple$(EXEEXT) c-demo$(EXEEXT) \ @HAVE_GLUT_TRUE@ FTGLDemo$(EXEEXT) FTGLMFontDemo$(EXEEXT) subdir = demo DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/cxx.m4 $(top_srcdir)/m4/font.m4 \ $(top_srcdir)/m4/freetype2.m4 $(top_srcdir)/m4/gl.m4 \ $(top_srcdir)/m4/glut.m4 $(top_srcdir)/m4/pkg.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = PROGRAMS = $(noinst_PROGRAMS) am__objects_1 = am_FTGLDemo_OBJECTS = FTGLDemo-FTGLDemo.$(OBJEXT) tb.$(OBJEXT) \ trackball.$(OBJEXT) $(am__objects_1) FTGLDemo_OBJECTS = $(am_FTGLDemo_OBJECTS) FTGLDemo_DEPENDENCIES = ../src/libftgl.la FTGLDemo_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(FTGLDemo_CXXFLAGS) \ $(CXXFLAGS) $(FTGLDemo_LDFLAGS) $(LDFLAGS) -o $@ am_FTGLMFontDemo_OBJECTS = FTGLMFontDemo-FTGLMFontDemo.$(OBJEXT) \ tb.$(OBJEXT) trackball.$(OBJEXT) $(am__objects_1) FTGLMFontDemo_OBJECTS = $(am_FTGLMFontDemo_OBJECTS) FTGLMFontDemo_DEPENDENCIES = ../src/libftgl.la FTGLMFontDemo_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(FTGLMFontDemo_CXXFLAGS) \ $(CXXFLAGS) $(FTGLMFontDemo_LDFLAGS) $(LDFLAGS) -o $@ am_c_demo_OBJECTS = c_demo-c-demo.$(OBJEXT) $(am__objects_1) c_demo_OBJECTS = $(am_c_demo_OBJECTS) c_demo_DEPENDENCIES = ../src/libftgl.la c_demo_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(c_demo_CFLAGS) $(CFLAGS) \ $(c_demo_LDFLAGS) $(LDFLAGS) -o $@ am_simple_OBJECTS = simple-simple.$(OBJEXT) $(am__objects_1) simple_OBJECTS = $(am_simple_OBJECTS) simple_DEPENDENCIES = ../src/libftgl.la simple_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(simple_CXXFLAGS) $(CXXFLAGS) \ $(simple_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/.auto/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(FTGLDemo_SOURCES) $(FTGLMFontDemo_SOURCES) \ $(c_demo_SOURCES) $(simple_SOURCES) DIST_SOURCES = $(FTGLDemo_SOURCES) $(FTGLMFontDemo_SOURCES) \ $(c_demo_SOURCES) $(simple_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CONVERT = @CONVERT@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CPPUNIT_CFLAGS = @CPPUNIT_CFLAGS@ CPPUNIT_LIBS = @CPPUNIT_LIBS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DOXYGEN = @DOXYGEN@ DSYMUTIL = @DSYMUTIL@ DVIPS = @DVIPS@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EPSTOPDF = @EPSTOPDF@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FRAMEWORK_OPENGL = @FRAMEWORK_OPENGL@ FT2_CFLAGS = @FT2_CFLAGS@ FT2_CONFIG = @FT2_CONFIG@ FT2_LIBS = @FT2_LIBS@ GLUT_CFLAGS = @GLUT_CFLAGS@ GLUT_LIBS = @GLUT_LIBS@ GL_CFLAGS = @GL_CFLAGS@ GL_LIBS = @GL_LIBS@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ KPSEWHICH = @KPSEWHICH@ LATEX = @LATEX@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_MAJOR = @LT_MAJOR@ LT_MICRO = @LT_MICRO@ LT_MINOR = @LT_MINOR@ LT_VERSION = @LT_VERSION@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = -I$(top_srcdir)/src $(FT2_CPPFLAGS) simple_SOURCES = \ simple.cpp \ $(NULL) simple_CXXFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) simple_LDFLAGS = $(FT2_LIBS) $(GLUT_LIBS) simple_LDADD = ../src/libftgl.la c_demo_SOURCES = \ c-demo.c \ $(NULL) c_demo_CFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) c_demo_LDFLAGS = $(FT2_LIBS) $(GLUT_LIBS) c_demo_LDADD = ../src/libftgl.la FTGLDemo_SOURCES = \ FTGLDemo.cpp \ tb.c \ tb.h \ trackball.c \ trackball.h \ $(NULL) FTGLDemo_CXXFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) FTGLDemo_LDFLAGS = $(FT2_LIBS) $(GLUT_LIBS) FTGLDemo_LDADD = ../src/libftgl.la FTGLMFontDemo_SOURCES = \ FTGLMFontDemo.cpp \ tb.c \ tb.h \ trackball.c \ trackball.h \ $(NULL) FTGLMFontDemo_CXXFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) FTGLMFontDemo_LDFLAGS = $(FT2_LIBS) $(GLUT_LIBS) FTGLMFontDemo_LDADD = ../src/libftgl.la NULL = all: all-am .SUFFIXES: .SUFFIXES: .c .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu demo/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu demo/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstPROGRAMS: @list='$(noinst_PROGRAMS)'; for p in $$list; do \ f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ echo " rm -f $$p $$f"; \ rm -f $$p $$f ; \ done FTGLDemo$(EXEEXT): $(FTGLDemo_OBJECTS) $(FTGLDemo_DEPENDENCIES) @rm -f FTGLDemo$(EXEEXT) $(FTGLDemo_LINK) $(FTGLDemo_OBJECTS) $(FTGLDemo_LDADD) $(LIBS) FTGLMFontDemo$(EXEEXT): $(FTGLMFontDemo_OBJECTS) $(FTGLMFontDemo_DEPENDENCIES) @rm -f FTGLMFontDemo$(EXEEXT) $(FTGLMFontDemo_LINK) $(FTGLMFontDemo_OBJECTS) $(FTGLMFontDemo_LDADD) $(LIBS) c-demo$(EXEEXT): $(c_demo_OBJECTS) $(c_demo_DEPENDENCIES) @rm -f c-demo$(EXEEXT) $(c_demo_LINK) $(c_demo_OBJECTS) $(c_demo_LDADD) $(LIBS) simple$(EXEEXT): $(simple_OBJECTS) $(simple_DEPENDENCIES) @rm -f simple$(EXEEXT) $(simple_LINK) $(simple_OBJECTS) $(simple_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FTGLDemo-FTGLDemo.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FTGLMFontDemo-FTGLMFontDemo.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_demo-c-demo.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple-simple.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tb.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trackball.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< c_demo-c-demo.o: c-demo.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(c_demo_CFLAGS) $(CFLAGS) -MT c_demo-c-demo.o -MD -MP -MF $(DEPDIR)/c_demo-c-demo.Tpo -c -o c_demo-c-demo.o `test -f 'c-demo.c' || echo '$(srcdir)/'`c-demo.c @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/c_demo-c-demo.Tpo $(DEPDIR)/c_demo-c-demo.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='c-demo.c' object='c_demo-c-demo.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(c_demo_CFLAGS) $(CFLAGS) -c -o c_demo-c-demo.o `test -f 'c-demo.c' || echo '$(srcdir)/'`c-demo.c c_demo-c-demo.obj: c-demo.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(c_demo_CFLAGS) $(CFLAGS) -MT c_demo-c-demo.obj -MD -MP -MF $(DEPDIR)/c_demo-c-demo.Tpo -c -o c_demo-c-demo.obj `if test -f 'c-demo.c'; then $(CYGPATH_W) 'c-demo.c'; else $(CYGPATH_W) '$(srcdir)/c-demo.c'; fi` @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/c_demo-c-demo.Tpo $(DEPDIR)/c_demo-c-demo.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='c-demo.c' object='c_demo-c-demo.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(c_demo_CFLAGS) $(CFLAGS) -c -o c_demo-c-demo.obj `if test -f 'c-demo.c'; then $(CYGPATH_W) 'c-demo.c'; else $(CYGPATH_W) '$(srcdir)/c-demo.c'; fi` .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< FTGLDemo-FTGLDemo.o: FTGLDemo.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(FTGLDemo_CXXFLAGS) $(CXXFLAGS) -MT FTGLDemo-FTGLDemo.o -MD -MP -MF $(DEPDIR)/FTGLDemo-FTGLDemo.Tpo -c -o FTGLDemo-FTGLDemo.o `test -f 'FTGLDemo.cpp' || echo '$(srcdir)/'`FTGLDemo.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/FTGLDemo-FTGLDemo.Tpo $(DEPDIR)/FTGLDemo-FTGLDemo.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGLDemo.cpp' object='FTGLDemo-FTGLDemo.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(FTGLDemo_CXXFLAGS) $(CXXFLAGS) -c -o FTGLDemo-FTGLDemo.o `test -f 'FTGLDemo.cpp' || echo '$(srcdir)/'`FTGLDemo.cpp FTGLDemo-FTGLDemo.obj: FTGLDemo.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(FTGLDemo_CXXFLAGS) $(CXXFLAGS) -MT FTGLDemo-FTGLDemo.obj -MD -MP -MF $(DEPDIR)/FTGLDemo-FTGLDemo.Tpo -c -o FTGLDemo-FTGLDemo.obj `if test -f 'FTGLDemo.cpp'; then $(CYGPATH_W) 'FTGLDemo.cpp'; else $(CYGPATH_W) '$(srcdir)/FTGLDemo.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/FTGLDemo-FTGLDemo.Tpo $(DEPDIR)/FTGLDemo-FTGLDemo.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGLDemo.cpp' object='FTGLDemo-FTGLDemo.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(FTGLDemo_CXXFLAGS) $(CXXFLAGS) -c -o FTGLDemo-FTGLDemo.obj `if test -f 'FTGLDemo.cpp'; then $(CYGPATH_W) 'FTGLDemo.cpp'; else $(CYGPATH_W) '$(srcdir)/FTGLDemo.cpp'; fi` FTGLMFontDemo-FTGLMFontDemo.o: FTGLMFontDemo.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(FTGLMFontDemo_CXXFLAGS) $(CXXFLAGS) -MT FTGLMFontDemo-FTGLMFontDemo.o -MD -MP -MF $(DEPDIR)/FTGLMFontDemo-FTGLMFontDemo.Tpo -c -o FTGLMFontDemo-FTGLMFontDemo.o `test -f 'FTGLMFontDemo.cpp' || echo '$(srcdir)/'`FTGLMFontDemo.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/FTGLMFontDemo-FTGLMFontDemo.Tpo $(DEPDIR)/FTGLMFontDemo-FTGLMFontDemo.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGLMFontDemo.cpp' object='FTGLMFontDemo-FTGLMFontDemo.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(FTGLMFontDemo_CXXFLAGS) $(CXXFLAGS) -c -o FTGLMFontDemo-FTGLMFontDemo.o `test -f 'FTGLMFontDemo.cpp' || echo '$(srcdir)/'`FTGLMFontDemo.cpp FTGLMFontDemo-FTGLMFontDemo.obj: FTGLMFontDemo.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(FTGLMFontDemo_CXXFLAGS) $(CXXFLAGS) -MT FTGLMFontDemo-FTGLMFontDemo.obj -MD -MP -MF $(DEPDIR)/FTGLMFontDemo-FTGLMFontDemo.Tpo -c -o FTGLMFontDemo-FTGLMFontDemo.obj `if test -f 'FTGLMFontDemo.cpp'; then $(CYGPATH_W) 'FTGLMFontDemo.cpp'; else $(CYGPATH_W) '$(srcdir)/FTGLMFontDemo.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/FTGLMFontDemo-FTGLMFontDemo.Tpo $(DEPDIR)/FTGLMFontDemo-FTGLMFontDemo.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGLMFontDemo.cpp' object='FTGLMFontDemo-FTGLMFontDemo.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(FTGLMFontDemo_CXXFLAGS) $(CXXFLAGS) -c -o FTGLMFontDemo-FTGLMFontDemo.obj `if test -f 'FTGLMFontDemo.cpp'; then $(CYGPATH_W) 'FTGLMFontDemo.cpp'; else $(CYGPATH_W) '$(srcdir)/FTGLMFontDemo.cpp'; fi` simple-simple.o: simple.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(simple_CXXFLAGS) $(CXXFLAGS) -MT simple-simple.o -MD -MP -MF $(DEPDIR)/simple-simple.Tpo -c -o simple-simple.o `test -f 'simple.cpp' || echo '$(srcdir)/'`simple.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/simple-simple.Tpo $(DEPDIR)/simple-simple.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='simple.cpp' object='simple-simple.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(simple_CXXFLAGS) $(CXXFLAGS) -c -o simple-simple.o `test -f 'simple.cpp' || echo '$(srcdir)/'`simple.cpp simple-simple.obj: simple.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(simple_CXXFLAGS) $(CXXFLAGS) -MT simple-simple.obj -MD -MP -MF $(DEPDIR)/simple-simple.Tpo -c -o simple-simple.obj `if test -f 'simple.cpp'; then $(CYGPATH_W) 'simple.cpp'; else $(CYGPATH_W) '$(srcdir)/simple.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/simple-simple.Tpo $(DEPDIR)/simple-simple.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='simple.cpp' object='simple-simple.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(simple_CXXFLAGS) $(CXXFLAGS) -c -o simple-simple.obj `if test -f 'simple.cpp'; then $(CYGPATH_W) 'simple.cpp'; else $(CYGPATH_W) '$(srcdir)/simple.cpp'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-exec-am: install-html: install-html-am install-info: install-info-am install-man: install-pdf: install-pdf-am install-ps: install-ps-am installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstPROGRAMS ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ftgl-2.1.3~rc5/demo/trackball.h0000644000175000017500000000636211005321433013235 00000000000000/* * (c) Copyright 1993, 1994, Silicon Graphics, Inc. * ALL RIGHTS RESERVED * Permission to use, copy, modify, and distribute this software for * any purpose and without fee is hereby granted, provided that the above * copyright notice appear in all copies and that both the copyright notice * and this permission notice appear in supporting documentation, and that * the name of Silicon Graphics, Inc. not be used in advertising * or publicity pertaining to distribution of the software without specific, * written prior permission. * * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. * * US Government Users Restricted Rights * Use, duplication, or disclosure by the Government is subject to * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph * (c)(1)(ii) of the Rights in Technical Data and Computer Software * clause at DFARS 252.227-7013 and/or in similar or successor * clauses in the FAR or the DOD or NASA FAR Supplement. * Unpublished-- rights reserved under the copyright laws of the * United States. Contractor/manufacturer is Silicon Graphics, * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. * * OpenGL(TM) is a trademark of Silicon Graphics, Inc. */ /* * trackball.h * A virtual trackball implementation * Written by Gavin Bell for Silicon Graphics, November 1988. */ #ifdef __cpluscplus extern "C" { #endif /* * Pass the x and y coordinates of the last and current positions of * the mouse, scaled so they are from (-1.0 ... 1.0). * * The resulting rotation is returned as a quaternion rotation in the * first paramater. */ void trackball(float q[4], float p1x, float p1y, float p2x, float p2y); /* * Given two quaternions, add them together to get a third quaternion. * Adding quaternions to get a compound rotation is analagous to adding * translations to get a compound translation. When incrementally * adding rotations, the first argument here should be the new * rotation, the second and third the total rotation (which will be * over-written with the resulting new total rotation). */ void add_quats(float *q1, float *q2, float *dest); /* * A useful function, builds a rotation matrix in Matrix based on * given quaternion. */ void build_rotmatrix(float m[4][4], float q[4]); /* * This function computes a quaternion based on an axis (defined by * the given vector) and an angle about which to rotate. The angle is * expressed in radians. The result is put into the third argument. */ void axis_to_quat(float a[3], float phi, float q[4]); #ifdef __cpluscplus } #endif ftgl-2.1.3~rc5/demo/trackball.c0000644000175000017500000002060311011547675013241 00000000000000/* * (c) Copyright 1993, 1994, Silicon Graphics, Inc. * ALL RIGHTS RESERVED * Permission to use, copy, modify, and distribute this software for * any purpose and without fee is hereby granted, provided that the above * copyright notice appear in all copies and that both the copyright notice * and this permission notice appear in supporting documentation, and that * the name of Silicon Graphics, Inc. not be used in advertising * or publicity pertaining to distribution of the software without specific, * written prior permission. * * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. * * US Government Users Restricted Rights * Use, duplication, or disclosure by the Government is subject to * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph * (c)(1)(ii) of the Rights in Technical Data and Computer Software * clause at DFARS 252.227-7013 and/or in similar or successor * clauses in the FAR or the DOD or NASA FAR Supplement. * Unpublished-- rights reserved under the copyright laws of the * United States. Contractor/manufacturer is Silicon Graphics, * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. * * OpenGL(TM) is a trademark of Silicon Graphics, Inc. */ /* * Trackball code: * * Implementation of a virtual trackball. * Implemented by Gavin Bell, lots of ideas from Thant Tessman and * the August '88 issue of Siggraph's "Computer Graphics," pp. 121-129. * * Vector manip code: * * Original code from: * David M. Ciemiewicz, Mark Grossman, Henry Moreton, and Paul Haeberli * * Much mucking with by: * Gavin Bell */ #include "config.h" #include #include "trackball.h" /* * This size should really be based on the distance from the center of * rotation to the point on the object underneath the mouse. That * point would then track the mouse as closely as possible. This is a * simple example, though, so that is left as an Exercise for the * Programmer. */ #define TRACKBALLSIZE (0.4f) /* * Local function prototypes (not defined in trackball.h) */ static float tb_project_to_sphere(float, float, float); static void normalize_quat(float [4]); static void vzero(float *v) { v[0] = 0.0; v[1] = 0.0; v[2] = 0.0; } static void vset(float *v, float x, float y, float z) { v[0] = x; v[1] = y; v[2] = z; } static void vsub(const float *src1, const float *src2, float *dst) { dst[0] = src1[0] - src2[0]; dst[1] = src1[1] - src2[1]; dst[2] = src1[2] - src2[2]; } static void vcopy(const float *v1, float *v2) { register int i; for (i = 0 ; i < 3 ; i++) v2[i] = v1[i]; } static void vcross(const float *v1, const float *v2, float *cross) { float temp[3]; temp[0] = (v1[1] * v2[2]) - (v1[2] * v2[1]); temp[1] = (v1[2] * v2[0]) - (v1[0] * v2[2]); temp[2] = (v1[0] * v2[1]) - (v1[1] * v2[0]); vcopy(temp, cross); } static float vlength(const float *v) { return sqrt(v[0] * v[0] + v[1] * v[1] + v[2] * v[2]); } static void vscale(float *v, float div) { v[0] *= div; v[1] *= div; v[2] *= div; } static void vnormal(float *v) { vscale(v,1.0f/vlength(v)); } static float vdot(const float *v1, const float *v2) { return v1[0]*v2[0] + v1[1]*v2[1] + v1[2]*v2[2]; } static void vadd(const float *src1, const float *src2, float *dst) { dst[0] = src1[0] + src2[0]; dst[1] = src1[1] + src2[1]; dst[2] = src1[2] + src2[2]; } /* * Ok, simulate a track-ball. Project the points onto the virtual * trackball, then figure out the axis of rotation, which is the cross * product of P1 P2 and O P1 (O is the center of the ball, 0,0,0) * Note: This is a deformed trackball-- is a trackball in the center, * but is deformed into a hyperbolic sheet of rotation away from the * center. This particular function was chosen after trying out * several variations. * * It is assumed that the arguments to this routine are in the range * (-1.0 ... 1.0) */ void trackball(float q[4], float p1x, float p1y, float p2x, float p2y) { float a[3]; /* Axis of rotation */ float phi; /* how much to rotate about axis */ float p1[3], p2[3], d[3]; float t; if (p1x == p2x && p1y == p2y) { /* Zero rotation */ vzero(q); q[3] = 1.0; return; } /* * First, figure out z-coordinates for projection of P1 and P2 to * deformed sphere */ vset(p1,p1x,p1y,tb_project_to_sphere(TRACKBALLSIZE,p1x,p1y)); vset(p2,p2x,p2y,tb_project_to_sphere(TRACKBALLSIZE,p2x,p2y)); /* * Now, we want the cross product of P1 and P2 */ vcross(p2,p1,a); /* * Figure out how much to rotate around that axis. */ vsub(p1,p2,d); t = vlength(d) / (2.0f*TRACKBALLSIZE); /* * Avoid problems with out-of-control values... */ if (t > 1.0f) t = 1.0f; if (t < -1.0f) t = -1.0f; phi = 2.0f * asin(t); axis_to_quat(a,phi,q); } /* * Given an axis and angle, compute quaternion. */ void axis_to_quat(float a[3], float phi, float q[4]) { vnormal(a); vcopy(a,q); vscale(q,sin(phi/2.0f)); q[3] = cos(phi/2.0f); } /* * Project an x,y pair onto a sphere of radius r OR a hyperbolic sheet * if we are away from the center of the sphere. */ static float tb_project_to_sphere(float r, float x, float y) { float d, t, z; d = sqrt(x*x + y*y); if (d < r * 0.70710678118654752440f) { /* Inside sphere */ z = sqrt(r*r - d*d); } else { /* On hyperbola */ t = r / 1.41421356237309504880f; z = t*t / d; } return z; } /* * Given two rotations, e1 and e2, expressed as quaternion rotations, * figure out the equivalent single rotation and stuff it into dest. * * This routine also normalizes the result every RENORMCOUNT times it is * called, to keep error from creeping in. * * NOTE: This routine is written so that q1 or q2 may be the same * as dest (or each other). */ #define RENORMCOUNT 97 void add_quats(float q1[4], float q2[4], float dest[4]) { static int count=0; float t1[4], t2[4], t3[4]; float tf[4]; vcopy(q1,t1); vscale(t1,q2[3]); vcopy(q2,t2); vscale(t2,q1[3]); vcross(q2,q1,t3); vadd(t1,t2,tf); vadd(t3,tf,tf); tf[3] = q1[3] * q2[3] - vdot(q1,q2); dest[0] = tf[0]; dest[1] = tf[1]; dest[2] = tf[2]; dest[3] = tf[3]; if (++count > RENORMCOUNT) { count = 0; normalize_quat(dest); } } /* * Quaternions always obey: a^2 + b^2 + c^2 + d^2 = 1.0 * If they don't add up to 1.0, dividing by their magnitued will * renormalize them. * * Note: See the following for more information on quaternions: * * - Shoemake, K., Animating rotation with quaternion curves, Computer * Graphics 19, No 3 (Proc. SIGGRAPH'85), 245-254, 1985. * - Pletinckx, D., Quaternion calculus as a basic tool in computer * graphics, The Visual Computer 5, 2-13, 1989. */ static void normalize_quat(float q[4]) { int i; float mag; mag = (q[0]*q[0] + q[1]*q[1] + q[2]*q[2] + q[3]*q[3]); for (i = 0; i < 4; i++) q[i] /= mag; } /* * Build a rotation matrix, given a quaternion rotation. * */ void build_rotmatrix(float m[4][4], float q[4]) { m[0][0] = 1.0f - 2.0f * (q[1] * q[1] + q[2] * q[2]); m[0][1] = 2.0f * (q[0] * q[1] - q[2] * q[3]); m[0][2] = 2.0f * (q[2] * q[0] + q[1] * q[3]); m[0][3] = 0.0f; m[1][0] = 2.0f * (q[0] * q[1] + q[2] * q[3]); m[1][1]= 1.0f - 2.0f * (q[2] * q[2] + q[0] * q[0]); m[1][2] = 2.0f * (q[1] * q[2] - q[0] * q[3]); m[1][3] = 0.0f; m[2][0] = 2.0f * (q[2] * q[0] - q[1] * q[3]); m[2][1] = 2.0f * (q[1] * q[2] + q[0] * q[3]); m[2][2] = 1.0f - 2.0f * (q[1] * q[1] + q[0] * q[0]); m[2][3] = 0.0f; m[3][0] = 0.0f; m[3][1] = 0.0f; m[3][2] = 0.0f; m[3][3] = 1.0f; } ftgl-2.1.3~rc5/demo/tb.c0000644000175000017500000000435611005321433011677 00000000000000/* * Simple trackball-like motion adapted (ripped off) from projtex.c * (written by David Yu and David Blythe). See the SIGGRAPH '96 * Advanced OpenGL course notes. */ #include "config.h" #include #include #if defined HAVE_GL_GLUT_H # include #elif defined HAVE_GLUT_GLUT_H # include #else # error GLUT headers not present #endif #include "tb.h" #include "trackball.h" /* globals */ static GLuint tb_lasttime; float curquat[4]; float lastquat[4]; int beginx, beginy; static GLuint tb_width; static GLuint tb_height; static GLint tb_button = -1; static GLboolean tb_tracking = GL_FALSE; static GLboolean tb_animate = GL_TRUE; static void _tbAnimate(void) { add_quats(lastquat, curquat, curquat); glutPostRedisplay(); } static void _tbStartMotion(int x, int y, int time) { assert(tb_button != -1); glutIdleFunc(0); tb_tracking = GL_TRUE; tb_lasttime = time; beginx = x; beginy = y; } static void _tbStopMotion(unsigned time) { assert(tb_button != -1); tb_tracking = GL_FALSE; if (time == tb_lasttime && tb_animate) { glutIdleFunc(_tbAnimate); } else { if (tb_animate) { glutIdleFunc(0); } } } void tbAnimate(GLboolean animate) { tb_animate = animate; } void tbInit(GLuint button) { tb_button = button; trackball(curquat, 0.0, 0.0, 0.0, 0.0); } void tbMatrix(void) { GLfloat m[4][4]; assert(tb_button != -1); build_rotmatrix(m, curquat); glMultMatrixf(&m[0][0]); } void tbReshape(int width, int height) { assert(tb_button != -1); tb_width = width; tb_height = height; } void tbMouse(int button, int state, int x, int y) { assert(tb_button != -1); if (state == GLUT_DOWN && button == tb_button) _tbStartMotion(x, y, glutGet(GLUT_ELAPSED_TIME)); else if (state == GLUT_UP && button == tb_button) _tbStopMotion(glutGet(GLUT_ELAPSED_TIME)); } void tbMotion(int x, int y) { if (tb_tracking) { trackball(lastquat, (2.0 * beginx - tb_width) / tb_width, (tb_height - 2.0 * beginy) / tb_height, (2.0 * x - tb_width) / tb_width, (tb_height - 2.0 * y) / tb_height ); beginx = x; beginy = y; tb_animate = 1; tb_lasttime = glutGet(GLUT_ELAPSED_TIME); _tbAnimate(); } } ftgl-2.1.3~rc5/demo/FTGLDemo.cpp0000644000175000017500000005041411022777566013214 00000000000000/* -*- coding: utf-8 -*- * FTGLDemo - simple demo for FTGL, the OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * 2008 Sam Hocevar * 2008 Éric Beets * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include #include #include #if defined HAVE_GL_GLUT_H # include #elif defined HAVE_GLUT_GLUT_H # include #else # error GLUT headers not present #endif #include #include "tb.h" #if !defined FONT_FILE # ifdef WIN32 # define FONT_FILE "C:\\WINNT\\Fonts\\arial.ttf" # else // Put your font file here if configure did not find it. # define FONT_FILE 0 # endif #endif #define EDITING 1 #define INTERACTIVE 2 #define FTGL_BITMAP 0 #define FTGL_PIXMAP 1 #define FTGL_OUTLINE 2 #define FTGL_POLYGON 3 #define FTGL_EXTRUDE 4 #define FTGL_TEXTURE 5 #define FTGL_BUFFER 6 char const* fontfile = FONT_FILE; int current_font = FTGL_EXTRUDE; GLint w_win = 640, h_win = 480; int mode = INTERACTIVE; int carat = 0; FTSimpleLayout simpleLayout; FTLayout *layouts[] = { &simpleLayout, NULL }; int currentLayout = 0; const int NumLayouts = 2; const float InitialLineLength = 600.0f; const float OX = -300; const float OY = 170; //wchar_t myString[16] = { 0x6FB3, 0x9580}; char myString[4096]; static FTFont* fonts[7]; static FTPixmapFont* infoFont; static float textures[][48] = { { 1.0, 1.0, 1.0, 0.7, 0.7, 0.7, 1.0, 1.0, 1.0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.4, 0.4, 0.4, 0.7, 0.7, 0.7, 0.4, 0.4, 0.4, 1.0, 1.0, 1.0, 0.7, 0.7, 0.7, 1.0, 1.0, 1.0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.4, 0.4, 0.4, 0.7, 0.7, 0.7, 0.4, 0.4, 0.4, }, { 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, } }; static GLuint textureID[2]; void SetCamera(void); void setUpLighting() { // Set up lighting. float light1_ambient[4] = { 0.5, 0.5, 0.5, 1.0 }; float light1_diffuse[4] = { 1.0, 0.9, 0.9, 1.0 }; float light1_specular[4] = { 1.0, 0.7, 0.7, 1.0 }; float light1_position[4] = { 400.0, 400.0, 100.0, 1.0 }; glLightfv(GL_LIGHT1, GL_AMBIENT, light1_ambient); glLightfv(GL_LIGHT1, GL_DIFFUSE, light1_diffuse); glLightfv(GL_LIGHT1, GL_SPECULAR, light1_specular); glLightfv(GL_LIGHT1, GL_POSITION, light1_position); glEnable(GL_LIGHT1); float front_emission[4] = { 0.5, 0.4, 0.3, 0.0 }; float front_ambient[4] = { 0.4, 0.4, 0.4, 0.0 }; float front_diffuse[4] = { 0.95, 0.95, 0.8, 0.0 }; float front_specular[4] = { 0.8, 0.8, 0.8, 0.0 }; glMaterialfv(GL_FRONT, GL_EMISSION, front_emission); glMaterialfv(GL_FRONT, GL_AMBIENT, front_ambient); glMaterialfv(GL_FRONT, GL_DIFFUSE, front_diffuse); glMaterialfv(GL_FRONT, GL_SPECULAR, front_specular); glMaterialf(GL_FRONT, GL_SHININESS, 25.0); glColor4fv(front_diffuse); glLightModeli(GL_LIGHT_MODEL_TWO_SIDE, GL_FALSE); glColorMaterial(GL_FRONT, GL_DIFFUSE); glEnable(GL_COLOR_MATERIAL); glEnable(GL_LIGHTING); } void setUpFonts(const char* file) { fonts[FTGL_BITMAP] = new FTBitmapFont(file); fonts[FTGL_PIXMAP] = new FTPixmapFont(file); fonts[FTGL_OUTLINE] = new FTOutlineFont(file); fonts[FTGL_POLYGON] = new FTPolygonFont(file); fonts[FTGL_EXTRUDE] = new FTExtrudeFont(file); fonts[FTGL_TEXTURE] = new FTTextureFont(file); fonts[FTGL_BUFFER] = new FTBufferFont(file); for(int x = 0; x < 7; ++x) { if(fonts[x]->Error()) { fprintf(stderr, "Failed to open font %s", file); exit(1); } if(!fonts[x]->FaceSize(30)) { fprintf(stderr, "Failed to set size"); exit(1); } fonts[x]->Depth(3.); fonts[x]->Outset(-.5, 1.5); fonts[x]->CharMap(ft_encoding_unicode); } infoFont = new FTPixmapFont(file); if(infoFont->Error()) { fprintf(stderr, "Failed to open font %s", file); exit(1); } infoFont->FaceSize(18); #if 1 strcpy(myString, "OpenGL is a powerful software interface for graphics " "hardware that allows graphics programmers to produce high-quality " "color images of 3D objects.\nabc def ghij klm nop qrs tuv wxyz " "ABC DEF GHIJ KLM NOP QRS TUV WXYZ 01 23 45 67 89"); #elif 0 strcpy(myString, "OpenGL (Open Graphics Library — открытая графическая " "библиотека) — спецификация, определяющая независимый от языка " "программирования кросс-платформенный программный интерфейс " "для написания приложений, использующих двумерную и трехмерную " "компьютерную графику."); #else strcpy(myString, "OpenGL™ 是行业领域中最为广泛接纳的 2D/3D 图形 API, " "其自诞生至今已催生了各种计算机平台及设备上的数千优秀应用程序。" "OpenGL™ 是独立于视窗操作系统或其它操作系统的,亦是网络透明的。" "在包含CAD、内容创作、能源、娱乐、游戏开发、制造业、制药业及虚拟" "现实等行业领域中, OpenGL™ 帮助程序员实现在 PC、工作站、超级计算" "机等硬件设备上的高性能、极具冲击力的高视觉表现力图形处理软件的开" "发。"); #endif } void renderFontmetrics() { FTBBox bbox; float x1, y1, z1, x2, y2, z2; // If there is a layout, use it to compute the bbox, otherwise query as // a string. if(layouts[currentLayout]) bbox = layouts[currentLayout]->BBox(myString); else bbox = fonts[current_font]->BBox(myString); x1 = bbox.Lower().Xf(); y1 = bbox.Lower().Yf(); z1 = bbox.Lower().Zf(); x2 = bbox.Upper().Xf(); y2 = bbox.Upper().Yf(); z2 = bbox.Upper().Zf(); // Draw the bounding box glDisable(GL_LIGHTING); glEnable(GL_LINE_SMOOTH); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE); // GL_ONE_MINUS_SRC_ALPHA glColor3f(0.0, 1.0, 0.0); // Draw the front face glBegin(GL_LINE_LOOP); glVertex3f(x1, y1, z1); glVertex3f(x1, y2, z1); glVertex3f(x2, y2, z1); glVertex3f(x2, y1, z1); glEnd(); // Draw the back face if(current_font == FTGL_EXTRUDE && z1 != z2) { glBegin(GL_LINE_LOOP); glVertex3f(x1, y1, z2); glVertex3f(x1, y2, z2); glVertex3f(x2, y2, z2); glVertex3f(x2, y1, z2); glEnd(); // Join the faces glBegin(GL_LINES); glVertex3f(x1, y1, z1); glVertex3f(x1, y1, z2); glVertex3f(x1, y2, z1); glVertex3f(x1, y2, z2); glVertex3f(x2, y2, z1); glVertex3f(x2, y2, z2); glVertex3f(x2, y1, z1); glVertex3f(x2, y1, z2); glEnd(); } // Render layout-specific metrics if(!layouts[currentLayout]) { // There is no layout. Draw the baseline, Ascender and Descender glBegin(GL_LINES); glColor3f(0.0, 0.0, 1.0); glVertex3f(0.0, 0.0, 0.0); glVertex3f(fonts[current_font]->Advance(myString), 0.0, 0.0); glVertex3f(0.0, fonts[current_font]->Ascender(), 0.0); glVertex3f(0.0, fonts[current_font]->Descender(), 0.0); glEnd(); } else if(layouts[currentLayout] && (dynamic_cast (layouts[currentLayout]))) { float lineWidth = ((FTSimpleLayout *)layouts[currentLayout])->GetLineLength(); // The layout is a SimpleLayout. Render guides that mark the edges // of the wrap region. glColor3f(0.5, 1.0, 1.0); glBegin(GL_LINES); glVertex3f(0, 10000, 0); glVertex3f(0, -10000, 0); glVertex3f(lineWidth, 10000, 0); glVertex3f(lineWidth, -10000, 0); glEnd(); } // Draw the origin glTranslatef(-OX, -OY,0); glColor3f(1.0, 0.0, 0.0); glPointSize(5.0); glBegin(GL_POINTS); glVertex3f(0.0, 0.0, 0.0); glEnd(); // Draw the axis glColor3f(1, 0, 0); glBegin(GL_LINES); glVertex3f(0,0,0); glVertex3f(100,0,0); glEnd(); glColor3f(0, 1, 0); glBegin(GL_LINES); glVertex3f(0,0,0); glVertex3f(0,100,0); glEnd(); glColor3f(0, 0, 1); glBegin(GL_LINES); glVertex3f(0,0,0); glVertex3f(0,0,100); glEnd(); } void renderFontInfo() { glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluOrtho2D(0, w_win, 0, h_win); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); // draw mode glColor3f(1.0, 1.0, 1.0); glRasterPos2f(20.0f , h_win - (20.0f + infoFont->Ascender())); switch(mode) { case EDITING: infoFont->Render("Edit Mode"); break; case INTERACTIVE: break; } // draw font type glRasterPos2i(20 , 20); switch(current_font) { case FTGL_BITMAP: infoFont->Render("Bitmap Font"); break; case FTGL_PIXMAP: infoFont->Render("Pixmap Font"); break; case FTGL_OUTLINE: infoFont->Render("Outline Font"); break; case FTGL_POLYGON: infoFont->Render("Polygon Font"); break; case FTGL_EXTRUDE: infoFont->Render("Extruded Font"); break; case FTGL_TEXTURE: infoFont->Render("Texture Font"); break; case FTGL_BUFFER: infoFont->Render("Buffer Font"); break; } glRasterPos2f(20.0f , 20.0f + infoFont->LineHeight()); infoFont->Render(fontfile); // If the current layout is a SimpleLayout, output the alignemnt mode if(layouts[currentLayout] && (dynamic_cast (layouts[currentLayout]))) { glRasterPos2f(20.0f , 20.0f + 2*(infoFont->Ascender() - infoFont->Descender())); // Output the alignment mode of the layout switch (((FTSimpleLayout *)layouts[currentLayout])->GetAlignment()) { case FTGL::ALIGN_LEFT: infoFont->Render("Align Left"); break; case FTGL::ALIGN_RIGHT: infoFont->Render("Align Right"); break; case FTGL::ALIGN_CENTER: infoFont->Render("Align Center"); break; case FTGL::ALIGN_JUSTIFY: infoFont->Render("Align Justified"); break; } } } void do_display (void) { switch(current_font) { case FTGL_BITMAP: case FTGL_PIXMAP: case FTGL_OUTLINE: glDisable(GL_TEXTURE_2D); break; case FTGL_POLYGON: glDisable(GL_TEXTURE_2D); setUpLighting(); break; case FTGL_EXTRUDE: glEnable(GL_DEPTH_TEST); glDisable(GL_BLEND); glEnable(GL_TEXTURE_2D); setUpLighting(); glBindTexture(GL_TEXTURE_2D, textureID[0]); break; case FTGL_TEXTURE: case FTGL_BUFFER: glEnable(GL_TEXTURE_2D); glDisable(GL_DEPTH_TEST); setUpLighting(); glNormal3f(0.0, 0.0, 1.0); break; } glTranslatef(OX, OY,0); // If you do want to switch the color of bitmaps rendered with glBitmap, // you will need to explicitly call glRasterPos (or its ilk) to lock // in a changed current color. glPushMatrix(); glColor3f(1.0, 1.0, 1.0); int renderMode = FTGL::RENDER_FRONT | FTGL::RENDER_BACK; if(layouts[currentLayout]) layouts[currentLayout]->Render(myString, -1, FTPoint(), renderMode); else fonts[current_font]->Render(myString, -1, FTPoint(), FTPoint(), renderMode); if(current_font == FTGL_EXTRUDE) { glBindTexture(GL_TEXTURE_2D, textureID[1]); renderMode = FTGL::RENDER_SIDE; if(layouts[currentLayout]) layouts[currentLayout]->Render(myString, -1, FTPoint(), renderMode); else fonts[current_font]->Render(myString, -1, FTPoint(), FTPoint(), renderMode); } glPopMatrix(); glPushMatrix(); renderFontmetrics(); glPopMatrix(); renderFontInfo(); } void display(void) { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); SetCamera(); switch(current_font) { case FTGL_BITMAP: case FTGL_PIXMAP: glRasterPos2i((long)(w_win / 2 + OX), (long)(h_win / 2 + OY)); glTranslatef(w_win / 2, h_win / 2, 0.0); break; case FTGL_OUTLINE: case FTGL_POLYGON: case FTGL_EXTRUDE: case FTGL_TEXTURE: case FTGL_BUFFER: tbMatrix(); break; } glPushMatrix(); do_display(); glPopMatrix(); glutSwapBuffers(); } void myinit(const char* file) { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glClearColor(0.5, 0.5, 0.7, 0.0); glColor3f(1.0, 1.0, 1.0); glEnable(GL_CULL_FACE); glFrontFace(GL_CCW); glEnable(GL_DEPTH_TEST); glEnable(GL_CULL_FACE); glShadeModel(GL_SMOOTH); glEnable(GL_POLYGON_OFFSET_LINE); glPolygonOffset(1.0, 1.0); // ???? SetCamera(); tbInit(GLUT_LEFT_BUTTON); tbAnimate(GL_FALSE); setUpFonts(file); // Configure the SimpleLayout simpleLayout.SetLineLength(InitialLineLength); simpleLayout.SetFont(fonts[current_font]); glGenTextures(2, textureID); for(int i = 0; i < 2; i++) { glBindTexture(GL_TEXTURE_2D, textureID[i]); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 4, 4, 0, GL_RGB, GL_FLOAT, textures[i]); } } void parsekey(unsigned char key, int x, int y) { switch (key) { case 27: exit(0); break; case 13: if(mode == EDITING) { mode = INTERACTIVE; } else { mode = EDITING; carat = 0; } break; case '\t': // If current layout is a SimpleLayout, change its alignment properties if(layouts[currentLayout] && (dynamic_cast (layouts[currentLayout]))) { FTSimpleLayout *l = (FTSimpleLayout *)layouts[currentLayout]; // Decrement the layout switch (l->GetAlignment()) { case FTGL::ALIGN_LEFT: l->SetAlignment(FTGL::ALIGN_RIGHT); break; case FTGL::ALIGN_RIGHT: l->SetAlignment(FTGL::ALIGN_CENTER); break; case FTGL::ALIGN_CENTER: l->SetAlignment(FTGL::ALIGN_JUSTIFY); break; case FTGL::ALIGN_JUSTIFY: l->SetAlignment(FTGL::ALIGN_LEFT); break; } } break; default: if(mode == INTERACTIVE) { myString[0] = key; myString[1] = 0; } else { myString[carat] = key; myString[carat + 1] = 0; carat = carat > 2000 ? 2000 : carat + 1; } break; } glutPostRedisplay(); } void parseSpecialKey(int key, int x, int y) { FTSimpleLayout *l = NULL; float s; // If the currentLayout is a SimpleLayout store a pointer in l if(layouts[currentLayout] && (dynamic_cast (layouts[currentLayout]))) { l = (FTSimpleLayout *)layouts[currentLayout]; } switch (key) { case GLUT_KEY_UP: current_font = (current_font + 1) % 7; break; case GLUT_KEY_DOWN: current_font = (current_font + 6) % 7; break; case GLUT_KEY_PAGE_UP: currentLayout = (currentLayout + 1) % NumLayouts; break; case GLUT_KEY_PAGE_DOWN: currentLayout = (currentLayout + NumLayouts - 1) % NumLayouts; break; case GLUT_KEY_HOME: /* If the current layout is simple decrement its line length */ if (l) l->SetLineLength(l->GetLineLength() - 10.0f); break; case GLUT_KEY_END: /* If the current layout is simple increment its line length */ if (l) l->SetLineLength(l->GetLineLength() + 10.0f); break; case GLUT_KEY_LEFT: s = fonts[current_font]->FaceSize(); if(s >= 2) fonts[current_font]->FaceSize(s - 1); break; case GLUT_KEY_RIGHT: fonts[current_font]->FaceSize(fonts[current_font]->FaceSize() + 1); break; } // If the current layout is a SimpleLayout, update its font. if(l) { l->SetFont(fonts[current_font]); } glutPostRedisplay(); } void motion(int x, int y) { tbMotion(x, y); } void mouse(int button, int state, int x, int y) { tbMouse(button, state, x, y); } void myReshape(int w, int h) { glMatrixMode (GL_MODELVIEW); glViewport (0, 0, w, h); glLoadIdentity(); w_win = w; h_win = h; SetCamera(); tbReshape(w_win, h_win); } void SetCamera(void) { switch(current_font) { case FTGL_BITMAP: case FTGL_PIXMAP: glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluOrtho2D(0, w_win, 0, h_win); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); break; case FTGL_OUTLINE: case FTGL_POLYGON: case FTGL_EXTRUDE: case FTGL_TEXTURE: case FTGL_BUFFER: glMatrixMode (GL_PROJECTION); glLoadIdentity (); gluPerspective(90, (float)w_win / (float)h_win, 1, 1000); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); gluLookAt(0.0, 0.0, (float)h_win / 2.0f, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0); break; } } int main(int argc, char *argv[]) { #ifndef __APPLE_CC__ // Bloody finder args??? if (argc == 2) fontfile = argv[1]; #endif if (!fontfile) { fprintf(stderr, "A font file must be specified on the command line\n"); exit(1); } glutInit(&argc, argv); glutInitDisplayMode(GLUT_DEPTH | GLUT_RGB | GLUT_DOUBLE | GLUT_MULTISAMPLE); glutInitWindowPosition(50, 50); glutInitWindowSize(w_win, h_win); glutCreateWindow("FTGL TEST"); glutDisplayFunc(display); glutKeyboardFunc(parsekey); glutSpecialFunc(parseSpecialKey); glutMouseFunc(mouse); glutMotionFunc(motion); glutReshapeFunc(myReshape); glutIdleFunc(display); myinit(fontfile); glutMainLoop(); return 0; } ftgl-2.1.3~rc5/demo/Makefile.am0000644000175000017500000000164311020644162013162 00000000000000 if HAVE_GLUT noinst_PROGRAMS = simple c-demo FTGLDemo FTGLMFontDemo endif AM_CPPFLAGS = -I$(top_srcdir)/src $(FT2_CPPFLAGS) simple_SOURCES = \ simple.cpp \ $(NULL) simple_CXXFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) simple_LDFLAGS = $(FT2_LIBS) $(GLUT_LIBS) simple_LDADD = ../src/libftgl.la c_demo_SOURCES = \ c-demo.c \ $(NULL) c_demo_CFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) c_demo_LDFLAGS = $(FT2_LIBS) $(GLUT_LIBS) c_demo_LDADD = ../src/libftgl.la FTGLDemo_SOURCES = \ FTGLDemo.cpp \ tb.c \ tb.h \ trackball.c \ trackball.h \ $(NULL) FTGLDemo_CXXFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) FTGLDemo_LDFLAGS = $(FT2_LIBS) $(GLUT_LIBS) FTGLDemo_LDADD = ../src/libftgl.la FTGLMFontDemo_SOURCES = \ FTGLMFontDemo.cpp \ tb.c \ tb.h \ trackball.c \ trackball.h \ $(NULL) FTGLMFontDemo_CXXFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) FTGLMFontDemo_LDFLAGS = $(FT2_LIBS) $(GLUT_LIBS) FTGLMFontDemo_LDADD = ../src/libftgl.la NULL = ftgl-2.1.3~rc5/INSTALL0000644000175000017500000000405111005321433011223 00000000000000FTGL Version 2.0.5 This project will build a static library (archive) in the src directory. The Makefiles need GNU Make in order to work properly. FTGL requires the Freetype2 library (version 2.0.9 or later) and OpenGL (glu version 1.2 or later). You can pass flags to the configure script to point it to the place where these libraries are installed, like this: $ ./configure --with-gl-inc=/usr/local/include \ --with-gl-lib=/usr/local/lib Should you need anything more complicated that that, try with: $ ./configure --with-gl-inc=/usr/local/include \ --with-gl-lib="-L/weird/location -lGL -lX11 -lXi -lXm" The same thing goes for the GLUT library. This is optional and is only needed to build the demo program. Should any of this fail, please send an email to mmagallo@debian.org (please include FTGL somewhere in the subject line) and include a copy of the config.log file that was left behind. If doxygen is installed, documentation in HTML format will be generated in the docs subdirectory. To use FTGL in your own projects you will need to link against this lib and include the FTGL headers located in the src directory. Your project will also need Freetype and OpenGL. For your convinience a pkg-config metadata file has been included (ftgl.pc) and gets installed in /pkgconfig, where pkg-config should be able to find it. In order to take advantage of this, just include something like this in your makefiles: FTGL_CPPFLAGS := $(shell pkg-config --cflags ftgl) FTGL_LDFLAGS := $(shell pkg-config --libs-only-L ftgl) FTGL_LIBS := $(shell pkg-config --libs-only-l ftgl) The names of these variables should be self-explanatory. Note that FTGL_LIBS will include -lGL, you shouldn't specify that flag separately. For instructions on using Freetype go to http://www.freetype.org/ For instructions on using OpenGL go to http://www.opengl.org/ Please contact me if you have any suggestions, feature requests, or problems. Henry Maddocks henryj@paradise.net.nz http://homepages.paradise.net.nz/henryj/ ftgl-2.1.3~rc5/NEWS0000644000175000017500000004625311024227075010713 00000000000000 -*- coding: utf-8 -*- FTGL ==== Included below are release notes for all versions of FTGL that have been released to date. All versions prior to and including version 2.1.2 were exclusively developed by Henry Maddocks. Subsequent versions have changes attributed per contributor. ---------------------------------------------------------------------- --- 2008-06-12 Release 2.1.3~rc5 --- ---------------------------------------------------------------------- * Stable API. Public headers are now frozen. * Fixed several memory corruption and crash bugs - Sam Hocevar * Fixed several memory leaks - Sam Hocevar * Kerning and glyph performance enhancements - Sean Morrison * The library now also exports a pure C interface - Éric Beets * Inset/outset contour support for fonts - Éric Beets * Fix the FTLayout rendering - Éric Beets * Added new FTLayout and FTSimpleLayout support for layout managers - Sam Hocevar * Fixed the paths in the XCode project - Henry Maddocks * Changed the behaviour of some objects so that if there is an error their state isn't changed - Henry Maddocks * New, fast FTBufferFont texture fonts - Sam Hocevar * UTF-8 support - Daniel Remenak ---------------------------------------------------------------------- --- 2004-12-11 Release 2.1.2 --- ---------------------------------------------------------------------- * Changed the way the colour is specified for Pixmap fonts. It can now be done per string rather than at start up as previous. * Fixed a couple of compilation errors caused by the new FTPoint stuff, mostly... * More const correctness. It's like a virus! ---------------------------------------------------------------------- --- 2004-12-05 Release 2.1.1 --- ---------------------------------------------------------------------- * Added the xCode project properly this time. ---------------------------------------------------------------------- --- 2004-12-05 Release 2.1.0 --- ---------------------------------------------------------------------- * Added texture co-ordinates to the geometry based font types. * Added the ability to turn off (or on) glDisplayList creation inside FTGL. * Removed unnecessary translates in the glyph rendering code. * Moved the Mac project to XCode. * Added a line height function to FTFont. * Got rid of the GL_TEXTURE_2D_BINDING_EXT call and replaced it with a static member. * Fixed a bug where resizing FTGLTextureFont caused a GL error. * Refactored FTPoint quite a bit. * More unit tests. Fixed a heap of bugs. ---------------------------------------------------------------------- --- 2004-08-16 Release 2.0.11 --- ---------------------------------------------------------------------- * Updated FTFont( *pBufferBytes, bufferSizeInBytes) documentation. ---------------------------------------------------------------------- --- 2004-08-16 Release 2.0.10 --- ---------------------------------------------------------------------- * Fixed tab problem in unix Makefile. * Added CYGWIN GLUTesselatorFunction define to FTVectoriser. ---------------------------------------------------------------------- --- 2004-04-21 Release 2.0.9 --- ---------------------------------------------------------------------- * Fixed includes for pre 2.1.7 versions of freetype * Changed unix build to create FTGL subdir for includes ---------------------------------------------------------------------- --- 2004-04-09 Release 2.0.8 --- ---------------------------------------------------------------------- * Fixes for deprecated identifiers in 2.1.5 * Changed the internals to use FTGlyphSlot instead of FTGlyph * Added a unit test for FTBitmapGlyph, FTCharToGlyphIndexMap. * Fixed a memory leak in FTGlyphContainer. * Added the ability to get the list of charmaps in the font. * Changed FTGLTextureFont to use FTVector for texture id list. ---------------------------------------------------------------------- --- 2003-08-31 Release 2.07 --- ---------------------------------------------------------------------- * Minor fix for unix build scripts. * Minor fix for unit tests. ---------------------------------------------------------------------- --- 2003-08-25 Release 2.06 --- ---------------------------------------------------------------------- * Updated the unix build scripts. ---------------------------------------------------------------------- --- 2003-08-25 Release 2.05 --- ---------------------------------------------------------------------- * Refactored FTGlyphContainer & FTCharmap. They now store FTGlyphs sequentially rather than by glyph index. This should save a heap of memory and a bit of time at startup. * Changed the Mac font paths in the demos. * Changed the unit tests for new hinter in Freetype 2.1.4. * Added a test for broken contour tags. ---------------------------------------------------------------------- --- 2003-04-12 Release 2.04 --- ---------------------------------------------------------------------- * Fixed resize behavior in FTGLTextureFont. ---------------------------------------------------------------------- --- 2003-04-09 Release 2.03 --- ---------------------------------------------------------------------- * Fix in FTContour to handle broken contours. ---------------------------------------------------------------------- --- 2003-04-03 Release 2.02 --- ---------------------------------------------------------------------- * Fixed memory leaks ---------------------------------------------------------------------- --- 2003-03-14 Release 2.01 --- ---------------------------------------------------------------------- * Minor changes to autoconf to detect glu ---------------------------------------------------------------------- --- 2003-03-11 Release 2.0 --- ---------------------------------------------------------------------- * Fixed some alignment bugs caused by changes to Freetype ( > 2.0.9). * Minor fixes to float declarations. * Moved FTBBox and FTPoint to their own files and added Move() and operator += to FTBBox * Replaced FT_Vector with FTPoint for kerning. * Fixed the glPushAttrib calls. * Changed gluTess callback def. * Rewriting FTGLDemo. * Minor fixes for irix. * Removed a bunch of redundant members and made them function locals. * Removed the Open() & Close() functions from FTFont because there was no way to handle Close correctly which makes Open redundant. * Removed Open() from FTface. * Improved the robustness of some of the error handling. * Removed the FTCharmap Platform/Encoding function. * Added unit tests. * Removed the precache flag. * Unvirtualised functions in FTLibrary and FTGlyphContainer. * Fixed empty string bug in FTFont::BBox. * Refactored FTContour and moved it to it's own file. * Removed unnecessary memory allocations in vector Glyphs. They now access the vector data directly. * Made vectoriser a local variable in vector glyphs. * Fixed a long standing visual bug in FTVectoriser. * Changed size calculations to use floats instead of ints. This includes FTBBox. * Refactored FTGlyph. Now calculates advance (as a float) and bbox. * Changed contourList from FTVector to an array in FTVectoriser. * Made function and member names more consistant. * Moved header files to include directory. * Mesh now uses a list for glCombine points. * Delete the display lists. * Unix AutoConf support. * Attach 'files' from memory. ---------------------------------------------------------------------- --- 2002-10-23 Release 1.4 --- ---------------------------------------------------------------------- * FTGL now requires 2.0.9 or later. See below for reason. * Merged 1.32 branch with main tree * Glyph loading has been optimised for pixel based glyphs. * Removed mmgr * Added FTFont::Attach * Updated API docs * Removed stl map and vector. Replaced by code supplied by Sebastien Barre * Removed work around for Type1 height and width bug in freetype. It seems to be fixed in 2.0.9 * Added a test target to the Mac OSX project * Inline some private functions. ---------------------------------------------------------------------- --- 2002-04-23 Release 1.32 --- ---------------------------------------------------------------------- * Fixed enable state attribute in FTGLBitmapFont * Wrapped tb.h & trackball.h in EXTERN "C" * Renamed FTGLDemo to .cpp Ellers... * New MSVC projects updated to v1.3 * Removed a lot of unnecessary Windows stuff from ftgl.h * Added functions to load font from memory. * Fixed a couple of Windows 'for' scope problems in FTExtrdGlyph * FTGLDemo. Added #define for windows font ---------------------------------------------------------------------- --- 2002-01-30 Release 1.31 --- ---------------------------------------------------------------------- * Forgot to update readme etc for 1.3 ---------------------------------------------------------------------- --- 2002-01-27 Release 1.3b5 --- ---------------------------------------------------------------------- * FTBbox now uses float rather then int * Fixed some more warnings (size_t) * Removed the contour winding function because it didn't fix the problem!! * Fixed up some state settings in fonts. ---------------------------------------------------------------------- --- 2001-12-11 Release 1.3b4 --- ---------------------------------------------------------------------- * Added MAC OSX project (Project Builder) * Added a function for extruded glyphs that calculates the winding order of the glyph contour. * Added FTGL_DEBUG to include memory debugger. * Added a couple of typedefs to FTGL.h, mainly to aid debugging * Cleaned up the includes. ---------------------------------------------------------------------- --- 2001-11-13 Release 1.3b3 --- ---------------------------------------------------------------------- * Texture fonts now behave the same as the others and can be loaded on demand. This made FTGLTextureFont MUCH simpler!!!! It has also improved the grid fitting so less texture mem is needed. * Refactored FTVectoriser... This now builds contours and meshes internally and then passes the raw point data onto the glyphs. The gluTess data is captured in an internal non static data structure fixing a memory Leak in PolyGlyph (glCombine). This has enabled... * Extruded fonts. FTGLExtrdFont & FTExtrdGlyph. * Reversed the winding for polyglyphs, extruded glyphs and texture glyphs to make them CCW * Bounding box function * Fixed the != and == operators in ftPoint * Un-virtualised some functions in FTFont * Added a demo app to dist. ---------------------------------------------------------------------- --- 2001-11-09 Release 1.21 --- ---------------------------------------------------------------------- * Visual Studio projects updated for .cpp source file extensions. * A couple of windows 'cast' warnings have been fixed. ---------------------------------------------------------------------- --- 2001-11-06 Release 1.2 --- ---------------------------------------------------------------------- * Glyphs can now be loaded on the fly instead of being pre-cached. If FTFont::Open() is called with false, FTGlyphContainer will build a list of null pointers. Then when ever a glyph needs to be access eg by FTFont::advance or FTFont::render, it will be built and slotted into the glyphlist in the correct position. * Removed glext.h from FTGL.h and replaced it with a test for GL_EXT_texture_object. * Added padding to texture size calculations. * Fixed a NASTY bug in FTGLTextureFont. Only came to light after changes to the glyph preprocessing. ---------------------------------------------------------------------- --- 2001-10-31 Release 1.1 --- ---------------------------------------------------------------------- * Renamed the source to .cpp * Removed the static activeTextureID from FTTextureGlyph and replaced it with a call to glGetIntegerv( GL_TEXTURE_2D_BINDING_EXT, &activeTextureID); * Added an include for glext.h in FTGL.h * Tidied up the glbegin/glEnd pairs in FTTextureGlyph & FTGLTextureFont * Fixed the problem with doc filenames. * Tidied up some implicit type conversions. * Fixed FTCharMap to ensure that a valid default charmap is always created by the c_stor. ---------------------------------------------------------------------- --- 2001-10-26 Release 1.01 --- ---------------------------------------------------------------------- * Removed the glEnable( GL_TEXTURE_2D) from FTGLTextureFont * Removed the redundant tempGlyph members in the FTGLXXXXFont classes * Made a change in FTGL.h to include correct headers for MAC OSX * FTGL.h now includes glu.h * Minor fixes to get rid of Project Builder warnings (MAC OSX) * Fixed some of the docs ---------------------------------------------------------------------- --- 2001-10-24 Release 1.0 --- ---------------------------------------------------------------------- * Version 1.0 release ---------------------------------------------------------------------- --- 2001-09-29 Release 1.0b7 --- ---------------------------------------------------------------------- * Tesselation winding rules * Fixed bug in FTContour Add point function * Cleaned up disposal of FTCharmap in FTFace * renamed FTVectorGlyph to FTOutlineGlyph * New distribution structure * Minor changes for windows (VC 6) * Windows and Linux ports. ---------------------------------------------------------------------- --- 2001-09-20 Release 1.0b6 --- ---------------------------------------------------------------------- * Implemented the new FTCharmap class. The performance improvement is dramatic. * Tidied up the way the freetype FT_Face object is disposed of by FTFont and FTFace. This was a potential crash. * FTVectorGlyph and FTPolyGlyph now disposes of the freetype glyph correctly after initialsation. This was a potential crash. * Preliminary support for unicode...wchar_t Tested with non european fonts. * Added function to calc the advance width of a string. * Minor tidy ups. ---------------------------------------------------------------------- --- 2001-08-29 Release 1.0b5 --- ---------------------------------------------------------------------- * Settled on integers for FTSize stuff. NOTE the FTGlyph stuff is still up in the air. * Fixed the positional stuff. * Added Java Doc comments. NOT COMPLETE * Fixes for linux, mainly to clear warnings. * changed the return type for FTFace::Glyph() from a reference to a pointer so it can return NULL on failure. * Related to above...better error handling and reporting in FTGLXXXFont::MakeGlyphList() * Fixed a bug in FTVectoriser that was ignoring non printing characters. This meant that the pen wasn't advanced for spaces etc. It affected polygon and outline font rendering. * Minor tidy ups. ---------------------------------------------------------------------- --- 2001-08-21 Release 1.0b4 --- ---------------------------------------------------------------------- * Changed the mode for FT_Load_Glyph to FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP for outline and polygon fonts & FT_LOAD_NO_HINTING for texture fonts. Seems to produce better looking glyphs. * FTGLTextureFont can now use multiple textures to render glyphs if they don't fit within one GL_MAX_TEXTURE_SIZE texture. * Changed FTSize to use bbox for global width and height. Needs more work (eg float or int?) and need to check inconsistancies in freetype. * Being more strict with types eg integer indices and sizes are now unsigned. ---------------------------------------------------------------------- --- 2001-08-08 Release 1.0b3 --- ---------------------------------------------------------------------- * I've made fundamental change to the way the glyphlist is built. This is to get round the problems I was having with charmaps. At this stage it is a temporary solution. Previously the glyphList was indexed by char code. Now it's indexed by glyph index and the conversion is done by the freetype function FT_Get_Char_Index(). If this proves to be too slow I'll make my own charmap and use it to index into the glyphlist. This has fixed all the charmap related problems/bugs. * Enabled alpha blend in Pixmap font. * Enabled LINE_SMOOTH in Outline font * Fixed bug that prevented the display of chars >127 * Moved pixel store stuff out of BitmapGlyph into BitmapFont. * Minor changes for IRIX (compiles but isn't tested) * Pixmap fonts can now be in colour. It uses the current colour when the font is CREATED. This isn't ideal but is better than the alternatives. * Tidied up the error handling. * Minor code clean ups. ---------------------------------------------------------------------- --- 2001-08-06 BETA Release 1.0b2 --- ---------------------------------------------------------------------- * Minor tidy ups for first public release. ---------------------------------------------------------------------- --- 2001-08-03 First BETA Release 1.0b1 --- ---------------------------------------------------------------------- * All font types are now working, Bitmaps, Pixmaps, Texture, Outline and Polygons. Quality of output and performance varies wildly. :) ---------------------------------------------------------------------- --- 2001-07-22 First ALPHA Release 1.0a1 --- ---------------------------------------------------------------------- * And so it begins. ftgl-2.1.3~rc5/docs/0000777000175000017500000000000011024234670011215 500000000000000ftgl-2.1.3~rc5/docs/FTGL_1_3.gif0000644000175000017500000012307111005321433013013 00000000000000GIF89a|#  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~,|# H*\ȰÇ#JHŋ3jȱǏ CIɓ(S\ɲ˗0cʜI͛8sɳϟ@ JѣH*]ʴӧPJJիXjʵׯ`ÊKٳhӪ]˶۷pʝKݻx˷߿ LÈ+^̸ǐ#KL˘3k̹ϠCMӨS^ͺװc˞M۸sͻ Nȓ+_μУKNسkνËOӫ_Ͼ˟OϿ(h& 6F(Vhfv ($h(,0(4h8<@)DiH&L6PF)TViXf\v`)dihlp)tix|矀*蠄j衈&袌6裐F*餔V)f馜v駠*ꨤZTꪖ@Dwrp M!JlYZTQ6e;K4+-{Zkߞ:k/jZLnJP!#@O o;)Ա K|N,1*ܓ!]2- 8<7,EqПl IL>k|\w30I-stA=qXs^5J]߀vb#5Α Lڄ'.q/-7vm昫PSxगi:Wwk4Eخ6ᄌ}kgn58VӺk0ы ?7ct׊gu'ov-__}^tCios/R7mQ_.|KJ? e$ 7r}|@Cbשu)<v0L B ΊɊw(~(z"цla&:Tzx*ZX \.F` cMH2JqbC(;1Ōp$WƙԱBx;f)cX,2E "c-%LH$eȒ5r.%II-6YxRD<'%fr(a9YR(ӊ+]<%J=aDAdeZ!,YzYIiz̙I]4[Lcfr8rf-ULe2idVSc9AWOfC$<6~Z3{+()IR>(6?oU P. ЎFD*KB/L)IͧIn-JY͐Q!\Hjσi jLQ=~4ah1(QjϖU.YUα픪6})FUSt?+OSҫjN+T,P ֝{9?'W5>-kdGձգaZ5kִuuOߊS5Ef/kĂZE(mw ğ\];!wuiҕNl#^'T Li`Ky5bj{׫Εs[5f;۲-]vᕧj)\7 h"}L]/^Ɨ ofGXk̼CVoaG_&DTV51\nqV ^Z˜{A$q6_j8GnFY1(+xʽ-|nΜ.sa]8oF6dk 30lo gkʍ6b;>wYؓ֫JSqct &@|.˪Y_-q[՚eNkͳZŠ^Ȭ_T?/iJ빍v,dVmMF^mnI:ƒ̶r}ozfgm [Z3ǷYE/ Ьua{֌S uv!Nj:.r4嫉ZmZ\^ s4 o4&6p-rh*@7ˡuL9wrӳ^p`y‘$YMXqDz+7KYYvyAmuQ.|vSݮ@#ST{^Z|bçըg5/S(>h;L[pՃƽG;9Y8yq%lGib ;k}*ɐSe aKK \zkWtJD jaǜ&sfG׮Z [1oW|c5Jkĕ0Ûxd[蛒*e> |:P ^@òcס㵟E|fư¢66z {;Ɉk;)@|e +[ hMMĽ=Z?(=Ё `'-L>wyke1l% t-y+:Ur=De}#%| &bHؐ  )խH/k{yiW }ѱJ75~iR|Oy׭|.N㊌l#޸mmI' KR^n1r|;}YӚBX)xB>;G_U)Nr 'v_~WN)ʴO|#^ %L2ZvJÃz':S[3Qȁ5.,7g!n^1 BXkͿ W"N<خAr՛Xrs&8 _`٨ 9(]4ǎN&ĎޜJNڑґi _̊!: < $ -uL=;,޶<,6?$GM:,B?A=/o]#_eb޴׷o? _I}_q/d4M5f~Ԃ1 ?%R΂]^?x>T|OZp./6"t*,첸_‚ k!8{Yhw]rlI龿#O\l3,ܢޑU~=,>O ߏ#O  " A!F|ذDVLJ E$YI$^4x0cH!WQE9uztO=?ڔɰ'N-lRI@NZUYngT?% Yiծe[qΥ[]yюM&ED9n)a3 vBKd˙5osϝ&]iԩUf뒘:]͎;];0ǪCta/gޜr#K^uٵoz߱K;F3?=q;٣>}߿_C?IjA(tB 3pC;B@LPC*Q=TS۬JQkFsѺQD+6TP M!,$w#m'dqJ.K0ì*J܌L؎$07aZrͮζƲ)Ŝ<tPB 5?&{ T( #ƒh,eJl2mHLy+FUuLQ[TWuVZkձDG˒RML)HLKP}i7>/UnV*T_yv\r5\7?7]6SR vRJwۄysIWtmeXxb+2QٴZx}l[=JN}̸Ӓv>Ey-6fhf{4vYQuߚbitk|5k[weV{mV4!m9 utn(ͮmF1|p$]FWkD;\ϒиF+|s;=Q =Y>$OQwum.$8j>mt݃~xZu nvTw[櫷z.yuoF]w]].ǾWwqח~,~mzY"O׻¼H@߬V-uUk`-x©lʙ8c 6:^Ǧq)Ӛ0xoej mxCRL9'+RqZD>0:hC<=Yr"E,fQڡ$&XK4YQu/]kݲ/]`xG<{cߺbi_cPAm3 XO>r 2"l(HfRdFlj (ߢ$T2 ɑ!jO'ayK\Zkln/yLdRi2dzHe-yMlљBrMT2(ekYIpS*:DoAd{ Jug?'(<T%y:"jk=OP[.O&T>3)-z%G#Edr%fsl&HMzSV=|fS7Z1L#B4.anfP6SSh6D U[= Om3)RdDStrU;a!"1RpNUJYGD⵩e b(VW\ȸ&&샮`$&]jH"پ%miGT=0V+D~Դ]imsԦ^E1ѬgC(}l{\Z31΢,ez3@1k;AWÇ&roHʩN&"Wp.\4x׼q%M]mbHB-ՙy˱.+W?-W¶^sdg\v '@.oa/HM[KGGUWASd4˵~v]od:ks'vo}6twٝmxZeӽ ots|YM$t=sɧ=yf3ŒptGI ~m}]Yڲyozj}HX')2O+m^|w+G{9gO!IϗXS?2_ x+J3M %*ƮASK)I"?Kksۻ˹{ٹd> )y[K7 6[{4Q*AAf#A1u ; ;pi$)",Bi ?#>A j{%BAºS)|c7I*w %>t; l= d@\>l+D>kPAccD0{2,*W"D @D ND*Ń=D3?2LDDs2^+%3X,FsE#?BE`S<<JSy?8cFiT?T"B|[V[AA9JyEnAY8[Dqtt*jG$@o|DpyLiE~Qq#+ \|Hr|#e9=|Hx;OH):LIJ8v&t$K}FLǃoH$WSKDl˵ɿLa!'Ծ ʷlC>KB;odY ;.L?BLU@tǯJ|FE<9ւ:ѵ3zJj ./,5BLά'\xNL;=- ED^*@FxS|۵|~L0ܳ0Ft픒C# cA ! ;G8>]Q .aNL ɰ Q=w4;m:͐P˖< mR)Tʲ 0KҤtQ'CTZl,|QMl͛|MR655́4Nŧ3|2)I=6S4͓= TATB-2LE:JҽJWL׌U6,8L_PVVDbdS>e8%֬Q<U̲ o}ߣ`=AK$[5-LnSƚ_t%WnV1ݣy%-CRĒgN|/rmaŠ|%iJiߘͲ NUs-ŻT%RW !ʍXmV, Y+P)t.4ҖuٌX|)د+ ٤wMşO{KKuSM%ΩE̡ڢT]%ZZDWuD}PI[%[X۱[m-O$RMNmy[ѡIo}Ձ! -[D\C\\bL\]ƍF X.Z%KӍPK]ݯ\TuijXѭ]XZ +CE?t͕]U%ܵݱm^i]Y٨-]] \]=QTrϘľ5-[bs_=eWI-`ŕM`e^[Q ^J`I` kef'΍Vn -_[`HUdY]  ~>O)la4J/s׼$b4$%~7eTjLa*ї-C*Gc)"1a^Xԃc9.b _`~`\d=fgV^e^ ~fkFFV_ 2fkfU~d38FogtN[FCtgPveN"`xg}UifgT|}hd]g5aa$IS~^3brgXZ7uhnJre]Or-#?U ,eie6T32L`M&kiN)iafbsiG+DGǠa{VfΞ"<O>bjjiq-6k#誾Nj׷k$iSU;gled^RUIC#lƾl,1/8nfmn3<&m>PQXNj{؆m:f\k/0.[nl.nԦn/^oQk?(S,|Nv]%%z*o^&%7pFpҮͪGjp=p Z~F%oqjeqt#q#vo?q*;)nH>r%$Gd0=zqe[CrH)O>%&s-g`r&s1Lc6Tr45,osT!W̢I@o ^945?L*i.sa.M"'C?HKt%FcJ7PM,HFo&em%}*PG6QWq{ɥ](Lmno%3\hSk,mPu /pmJ_O`"LAO3 t\+/i4vkw(Ov vv'n5]wqwM+*v6wWvnݹDx>qxonKwk)wگy'.U7cxO;uXC ,h „ 2lĈ'Rh"ƌ7r#Ȑ"Gl$ʔ*W"<%K0g )&Μ:w'РB-j(ҤJs\cӧRuFxÑ2T`:KAhˮڶڷrҭk.޼zM/Uz^oڥdt㞐#Ǥ<˘7s3Тji-#sYx+Y {l׸]n}7ضކԽL<秥Sn:ڕ:};Ԭ;xs޾yڽϯ}}O+x8 x %؂^} ^|G!t!q6}%bg$Rg"h(],6"18#otbUbX H!ydA֔U2^iC-X[U[x&iZa&\+yaƦHB29߄*nd}PGsVf&i En3NcE6*)Hvx:*f65g7秎*{vܥ'fvVj Fu{ɚc"c {*zmaY.:I^{-i Қee.Y.F/[|qX0;+:la 'Q)1{ .GױYj2CaK%H4M;ݦJd6kR;_تJ>;Զ.JٵxNɤ2i`oou4=gY{;zܰ[rsW8c_p? a[ȱ [iMX޷(~|Q`xv=Qnc*\3Pe3^Ij|! cx w1OS"J,e%2MJ6)AN*DX$(fisCYzLjȣq.M|#㈠k2l8,}w*;Y<2N@戂 f7O2r$&3YF5=k[< Ol3dӗ-EjÃ";:Y4,U=Jb$0)Ly=䎋#G9/uˡ-qZWdYB )W>1 *t:=f|'L#"MjEIRFȊsqtճjV.,p{׮ +u֒,gՁ^EJldMcZߖ~=/zIܰΰw0ްn}F*6ju~#Zf$1| NmD[J'p^ "*K[#a <`C.l%3|U$@ETɤ)q삓[`5 }ӝ9mdWhz-j=Y%$N{l⹪sXsFVb]NdISz$o[/մ,Q3-uVAe vWdEoM-(-V9/% 'u@ 5os\|9Թ"ψLje5^~bV̈́e) 04W5ϫz[7`͙J8ϓ;qsh#L\r7#N>slj2W UVUFU*gl).-l3|@Ӽ BwVI"b{ē}\ަ>MPVU('P3L*}P_9vBK\3q})Lwac{&!9]wP)风zΧRAt=I[Uϱ1{/쇭xԹWG& Q T&@d fco'%L c] $ Rև׳kNF\1NW q'V]k#y&=")&v$MrJ!ǀzeV ֘.hhč NvB{:,\u"g}hhJ&( N>[ Y2Bқ4"\"(~'#V{)R_%v O>)Zl]Za䬙9fޕ$'~`mb'V(z^Yd)>eV{fG]w(v%k }ʧA֖aRR_YqY jy*h) _.&礦g~)!NʪObjXNk˃R!h*v`*gaJ`&I_` RrV>cg*:CiU*hnY8_:b-,S>,%@-axP+bSs.+Ǟangqޛ+S.VY\tNB@*d֙:Ƚf,ѭ#[*Ng߅>jZ*+aa#BF%;#X-XZdl:Q╩U؎͚ӄ\⥏Fi!eln%B7ٝA$&5 .O:O^h>!hjTfi ~+n݊Y!h>00f{Rt5fZ|P p1B4V :gC XYl{]BVj b*XI q/2['!bcMf:,zWcB1wqC NFNkJ+{# ?q{wd &/mr1艫ޗ! V\&"/7kk~ޠ͊K"&E-Yj#/זeE4wlվj ̎ S.){&21ߎ*/q}R12%*qp /91k377Mܖɫ"#`6pڣn0%{L,pϾw3?j-!ji-Sb(isns?Om$234ʞ%AkN!GtR4K~@^-M4Nr^/gC0CE R^&gK/uAsrv4FK'tL?ꡰ)*S5g:o5~4 4\t.0+pڵ_?s\Y) Lt6?v./r_g6GZ}H2]5W2{ɨF;fv6mvElGu:'۶o'vSfc{usߍ.*6sQ`g)Tu6ut0.cppڵ=^qV) 26yvZiϥGMcs7+CsH~D޳Mo+5Q~/8᥷`7T\7}'&RC4+rwi Sy.6c686#hq=Unx'dw gz7$U H6z޵n¸IF TvZߧ*6c91TjKh^{_*Ьs"F8+ٚm|WO:n wuґus2JNt g84B3TV_Ӑ+82cw1*F.RO; xӬ"fyS#c(Sy^8UH0k3irXvy5׻>J7k8Z'w!ba۱#_k[3_|C8`21練'H/O"R6>';y|=㟕yQbY={/6t7;}l!y3wwۛ8c2:#\ڣƺ۽ry~{~Ŏk46@Fx5; 5[{>mI~=:|_s ':/z/Y,餕^iQ~j`%L䝷Oʓ\3Ez JlU_5[>ǫ ";$ޛtЅ ;dE.eO|Y8t5ъm#6"ʼr_l(IH aTV҄S< 7YEIx51$*yKOL0seiHpIib\WPͰZ+\(Lo~w"Mհi2eiO<69B3_$yBWZi`a: ZnGX\9w4d )QkPs0me?QH+;7'}"DiM"Țͦ 㛲Ԛ.t&њxv3gjƨQW4]j 8Gx=VxTO|N8 h\γFcU'aoT[ 5Us)(IKO0tbC(ur\CMz'L\}:ntP,FFl*\%.ɰPCUAIJ:t(={VyQ$-U6Kfi7`qǩ2Ǎoni*1VOcOf7jWM P@GHN0Nep(ai7e '҄5b \)D q&)la;ogi SY`]O-EIc#]:r4QdQS26T0mn^FSq%kN*f4Ro_OQ<9'Tԉ GF)KvXuwCU}M *]Y*Hi=R,7de%fn{E=NwAe7Aڲ&6l^|q Gj 3O/hw0oP KXTjkLOnHn~qZFvl%:k!,EY"ao?6Zcsp " 4EH cP"O@:}Q.(c>d2 'Hױ)ikToHg舤 Eq-X"R7݌#RB<ŦҌT61c<-ݲ=PrcH % 1M#q F^Tܤ'~q(Jk}Dx /*A7qS=%T=+4>?s@iCO+{d ?I ٮAt?=Z!s2c2cڳ1<%EuBTl4Q .? );eSW][j;̈&_1Y6hL WZ1$nM74s13,Ö][icqQ5'{U!74OGQ\ڶHѱN)4Vquei7rbko/a79g)i pxYpn4Y7esS?c*nUTq:}hwwrFc\0. pE~U7WSU`c0OTNjhpEQE}Ogt6;p\>5Kc;p!8(5kTk.uPFSsSP]*a}!v2rv^g7jqzoyU[,VPHG `%l/}5xSl5,W{pYj߶]mgdp۸cٷhsY/ZP3XYYщMv1iob~!W]7iV$g8y+dmg_58tk0uS&`鐗Pܗq[XQ{xxaaW͖*RLZwS>VDKvqḘҪsS͔Us[ōOݸ/_xovQQ*!}.5Ci˟YxU7zxQٜP封'ekǷCJylq|75yT:8VK-͵C9VSh7עizXjd/Q[ssYMY(䤲YŬM/\C0T YY7]G)vtK]NӭAg:)ŦtЧ# iْ?ڇܵ3)Z[q{F'rG gqZNnX[78am}mHx9_Pڣ(X39|Ow|E-Ku;mos3L[]Tg#9zkUzLx1gQzśx݊RڑH: ۽ Ѱx&;< h7MȞY7单6&˰HAO_ZK{[۹SgM&;)=K|<[RSPC܀-|~1lQɫgn+$\Vi||[[[lϘ(pUJs-w?Xu av]Ɋѽ +?M<"rWQ՞Ʊ=ӟ䣼6jv*`ݿ <0… 0|1ĉ:1ƍ;zxȑ$K<2ʕ,)l%̙43ʬ͜<{ 9Ct8OE*e'HTZ5V@F'ذdk6ڵl2D۶r綬k,P|.MWߧF%x:~ 9䊍/[yb&7O3ѤK-tM}>d쵩Um)Qw0ڶ?\3j+͜TgS[=%^ *kgm~#܊:0݅n9':{%6a X߁!X`[A(a\ovۅ3G`qvkhIEQ0Hc#w盎X"AMɞH2(J.Ig TuH ζSk)ꦢ|%בY#Yejj&QB%?6WgaƸdm h7X|g2w )p/ VU%z!.iiSqFRy?B| ky[t*xbBt壃Bi)*S{.쫟8lUZ^6j{rlumXR*'in[v+ݾ L6(ov cX\zj;{^q"sƩ9j]~+7\#Ϭ̔!i93M;J[ ]U;%§0 u9FXRTZsgY4QCrX_oEӸqM7T{ezw~ x( jh5wݒCy9IlOO0G.+2vV]{պS8ʞUj9O.yN8bE=ã56{ILz="L坅^~'M?h;,I] oV@F=pMSCil 4_/8&KR>J1 $\VYhDUDf^cigJ5FϋerH;?б("$ )C]vQŐ.L gv$ I+=:Z# P2t ; 2 LwC8]]/Q2KwmF3`3Hq̬G9"&<Т'7fL3 X9ߩ@!n3Bl o8F~*-(zI;^>s)1/LJh qEhV)@agF `M!HGJ9y TO=ME`ڙ: ?-m(͛^K]S]UA=Z[5{/,!Y5E5UUT!T-1+'U>:TSYRrzls ]}Ӵ+ ȨeS*2g[tϋwynD_97_9u? ^ V ɽZ-h!_GTF`0mִ)[vhB+;{6\ne KURpio#v77gubS 2[q`y{ WK(vv:^ot朥%iGxucLϤ} dZ֥ڱx6ns%E7t5떔icD\4Nr0pv]СHC݇uۊ]77>w<`CSyZ[/-[ye>Mq-3ZϬ+ !G5o7JgE]gRfts)4\Kj/}^'fw&}x"iF?23&SV;Bl, UJ:Qu'q6(0@FAj+ #g4X5h8|~QFWGl&x4鶀}%ԅRYGL+WxF>6{y|WfgJ"+R9y6hhadPVPkŤ(FGSG|[&d fi!^ԉyjCf扳wixNF}u!yUFwm+{ρtXxzE7,TZ,W:.r4Bp\hsKN7?=Ov̨FdxsfFlwT@PHqfn%36$CEjq1+5H/8gnփV|Fd(Thikȇ InasC5S9AV6P:4ԓĨ SGD(WP|ܦ0D[bx,9;Qّ;hmhDuVHx= xTh$:e҃CFXyuj99?L~OUob9m8ynֆ`$Ǘ3K؀)]y i˸S8 .RibIɎ4a^Ԛskh: IB Zh'fY\)Ic_٘YiUXp `8\uĝ❆f3QIF^Q(ivZ3ʸ靶@yjgQN K ? \h7CBcj99$똎#j" IzrTE6gj4'jG77E'}OyU>ѹPY੤wzMJO]ّ`%-_QCgTL'ynIx3gV"**GzavsĦE:uPAWzmJ[:N=w,v*I Zé(8D<CSʜڪʃYTgXGʪڦZe9.(j̪ڈǥѲpؚ hwV}zjudT*Y:YWZi7::W*E ˧Ί 2ߙz k[:Y~Z)WX 4YTa+j'k0 MZi&+ר282ٴ#㲠G ğʴOk\ a{^Rʀaő=^$Q{Θa8BUl|z"4Y6$뷑wR[;aTnkN;۰#{K 5h˹;>kۺq[fc;w2вELċaoɫh5gӛXk{Kt[fQm̦D"Wr[#,J|/ +˽j[5mxvxFb8/wւs)z_wkpobv뫩[o~DB-% y*2B\cGdƸ+Bg3) ,|[䫛2rYL.#k*`cFXVVodF(]~^z~xRa fl.߷̅߄"^QM;Y 8$mnj*}~ӷ8ɂEWlwPE..%d61o7IݨvWS~-ٴ9ӃG5~~M  /oh.KNZ^lcug 8߯O懗sVVʲmn@-/'&/T_=/ Sج;emm~P?@ΣʾL'u]EY-Z9 s"[7=,?\@]^OÎ\],*_/AK+Obw~?aAx wխ֌/鳟Nc#$?i w1{q!@ $PB >QD(^ĘQF=~RH%'Z4RJ QS×3mĩfN1wgP+EԥRGT @HbVXe͞EV-VQ^}ZT"k)S{X` {X1ċnhdɈ+?|Y̋Jn RiWM 쭡 ڶ׼}>spÉ6~\G6wzөCV\ڥG[vRԭcܫlըq.o*UaOwtw\< b4 -ub0)Fc `=b: .RjOBQ?/Ú\op[lѤ1f2gH񉃯b[0,lyX]6@fxO?> <rtGA,z\1(Ps3-P)tQ4D rh{CӿAZDD1.uFCOe>4U|cxbO_T ǤZ 1i:FP4!ij-a|j\RVKe F~J, ir6GԿ.<6/t*)O N撢kTlC0T\h%jQru,0@}=n4Rnu]*~ZWΉK)IWjJ yvkՈtDCJTƱ dBظfb%d^dM*p֌eF]-̀i}`9yS 61*6JnvIkYYپ+3B"P몈.F \WU>cڒlowŹ`ua kW:0va3KPwεĀ--ܢN}Y**Byԇ7b{Pd`Jw-6iɓ!E5Ս%c".z*]1V>&˘.쓕2-odI^6l¯URa&W̰EYկx{X&Mܴii0>ԕb=9Xڴ !qQϰ=1}:с~t=Jʎ>Nע^eԷnޚYBQ'&!iLkihe!b $ r4X>cb>05.yЇUO^ }+U..Ӈޢ6A.\n={7á{^")^'-/[pSKcn@zny )!7ntO/ytڽUW~ 9ۃ.>ʦnpڑ RgǻQ-Ymw']ֽG|t[N7e8 [N&=8`}meDehaRr+d>z7eˎ-l祟 kق}U{/ÏvǞij~ )Rӿ}c.ھ&F |۷: ?7 ?Bk¿S/AsAC"<)AY;&MlE R,qKB4t@Đ8I;|C30,."0IKFmk˺\!X@/4ώ$@؄sIyOMCnFAL[FO]J>8P<93)NXS@A/0@PmѸgJ$Q4*DџEKO =]Qk<)]CCCO-K,J, )V8ѱp|R$=7e:Rp;Ͱk&?-N8M2r{LK4QdS+\A'A=RFD*QOTQMSUJ'TѾXmͷJ PU7^QlU.EbjUPw-UTLtN]V=,M]pM&AT8F .z,WJRbVDm}WeKnT^6X[X9ó,YIVҬז4-/]ɿAɑ<B0콨 9זּB5M31eSOeؠ1mèZӐEZ|uZ>N.{)Rk+- g4֗Pcd[e9PDعTY"W5*O=\,ۧ ybO+})u^-'[Y\r\/t۷EͥC,uA$AT(4b3I75A -гaŅDױ-k֛tާD[|5 $:cscV2_mV_\%G"I^!/m] \u]Y132^r]6',:J22ե}MХ`2P=Z L`@]& a[.-FL2ӹ0 ⱙ3'~a܉ ` ْKYVƤ$fN1,W<]:B'Zb Q{%ֲ 㻬cVӤ:a5)mb]3\_U<&a?3?~ ,>~@^*.+F8>*~ד͢ npPm`OFFͭM_nK/U_ *T}*1]g^5]զ^C f(e=OY>XUUo&E]:sF/ٕbG*BlOZd9u^ HfV^ q927by3Fxᆶ:A^? "ea@^q&=AN_vE gyy'h6s-)]J3Zݵ]af㨶ufWaƚکjfWj>faV^@bՒ]8]0_\Fz߫^hbvL[[zk9[FN6kNYUl&QXyl Z[_ CMU%.^_p)]k&Pi뺥Ӎm~nlZk~vvlFfݢhh6Wm>)>=gͶml_[ WuSVUť4iUf;n.74JhNK%]ZZJ/bcO^%!ڶjα3&̹?\b6onJ&\1UcnN`֎61(:a&'qp.='e)%F_f^[)_洵0RT-p޼nu6m-3~e0gam*\o>#':vP^cbvV=%u2_k_X={F6TrKV[t[suEȆq;Coi.ft>f8v!dOuϙ8auf-^L2F{~aNưh ݍ=fVu1gm wYߤI9a*hSUb4kƙWRxEe(׶=+w.ݺ`jK+mµ+ुxFJk]eJƓ۱2f%.乥A>mڰh_Tjn-vh g .|r>~M[ΟC{yԭ:vAt_yR%q./>ϯeձ^Sx׀OVPn|yŞLUYmؗg>H`#Xx9h"*6k噧aL~wV_x1㏡"-wr)$M树6ᅡw͘Yzu!rZegeiN$Y^d]^}9b~ݝok*XQ-n*h'J*aHrx[!ZldmX%~'i6rf{nya2,:L\FJyO^lgtIz)n%)ҷ`N/T oǩkNx. V`RQZJc:Jqֲv)n\ȼq k&"Lr;<z$K繝NK`/h`Yz |N<4YGS흻:^[y81Z;ʫY=uٺuޚ\U)3-rvxJKM&З,X><,S+Nz.]kÙ:4* /F]kG{!/Qwi gtO[m椳 Bw\{n?^^[|n(Yp*NĪ\g7 0a.> r6/ of ?M%nLdT#NZ-ۍaoeޣ0:!C:)a·3~]VN ZI%OZ"ܝW?/A[$p;PKa| dWTȼfyQ%тtLXؒ3$BKUJ4" (ep"OHEOt>cZ6 RyԣK : *WzCcVhJ)G])-]EІ:iM#SFE\%#帹-CS5*GlfEWK8>(U;5,@w%~3i] X!r󴥾\*nř*\BdD`? 4g=s6*qq Czh![IqPs$5Ij~4GYŅM2OK褡Qr6S c(/k!N$$h7SNLXˌTz1wwYhVSeЭV@Vަh-\$V/׺&-hUK)MBv#,EU2-}Oꮏ9 6>Lu*/iVA*cXnsg/M4NʑO a8FV-_YϹ6e lZ[2]zTv $GF+d97Ipկt-o@Y~޴Dlt;GH&)=_S,kY8f`+ܪF1ɥ'qTCk]$pZwkh pie(Jiؼni[Q#)6.!+L0]6VweZ[%dn6qcʼq·C387^&SEmaН<^#n $2m0rgZ58o6L[=UZ'f\ ueT[zk eyO4-c=u0N,n4!³7ՃCm1v BҒp Xjc|0Co<p{jg:}<oezBa+έL]`K <t1!Eo^=989>llZ(p7ޖIwT4-т$MOoS#=Y:%^z'e7flY^Ǡ|9=wը2\{k;~^EZ}\yUHS5i -X>w\Y̑Xm_͈J=U^ < f6U]ڜx$ \ôsIm ^zƼ5O26} n H&ҍDSIMع˥ [ɡ `,a"^W&q,%݂L _b `W!!Z%钅ɕJ"-Rq~!`ᘕZ->c,^!Ѣ4 cUWUMEUib8cU5Fb ٛ2]4#")Y#ɓdb!1#RL~~ ߠG5z)kai:_RY!U2UnfV^fr$$K\*bFYP_Rc sIsR!za{f]eAc6&c0rns8^ާa׽sҟh~&b&HA$LJ2^xF(g|% *qnyd|a[moT^?nhbZvX"/R`/ƧqzJBL"(Y*jVD i(^iS>M)]$s6fWi_;fG'RjBy4>$>e*b1MhQ'Q~ܱu9X~.(Y8꫎#K.rQ׌+8Y & c*TijUL$Ө8e$-r"~G`\ǴRk|vcVwΜBwT׉p Rnޅ"+ k6ynS^Z p+6fF&Қ&I@$šk΢>dYgΧ AtkNzZ߯A_`v2Bs{3ņ: 48B;>c{k}syW`|wcM{\4y{{v!3"ݪ%Ps;9.Izw3+5R|KM )U0k齷F^[^g#ʋgq{|Өdd)gm_)&޲z-%jURKC=x)cŹc}.Vx9|^sT ׻=ד21ۦ "s{Z޼:~xt[~泷iy!Gv-T;:6k!Ca`~2;x696N>5~?5)-G{s+?;'T ocXh韯9cqwC`ڳ=G]gv&~oxkK~ 5%'0@@ $p@F8bE1fPcGA9dI'QTeK/aƔcĂ>L80'N:ŚE&UiSOF:5QW7bj*B: :,ٟcz:tkJmG=;v؆b: \xq'Lڞ$xuױg:;9bYI]g_wױ.N_xWύ2 P/ϼ~ @l3&bnB(@ /XS=JD6>H 1! #M9!Qyjg4,#EFjl.AeloDgkHΎIܪK o1,s/yD5lV-=,w3{IMݔjϩ,0PCUMG!U&*%2Hj)Q$SQMUYmWaUYi5TqUWl5.|, ӭOwTLTMMgl@i2$7+[n[ZlMWumw[Rk魗\ϵW}0 أa-1X]ė!^3a&a-E,-8Iw̐K ]6iqY3Yg]W.Mhͯ:NdqTbKB=߬Q kU7.mنCrnٚ͠eEᅪ=z"B8C(majW9HUxe[˜I W啡zڻg[:.6fd,(*%랅%4R< 6Yg:³4a }4qۚӜM٩i>: uV^fҴ64%`Jڅc{;)c '˒hhT[u-=mq2S=@zIohϬ\4F5'NlѷWmK5 Oǻ5)n%Q!g8? #_F{PU'dMf܇)nΊ pX>H\Ʌx{c4х hJkrQNM|vN)&8PĮׁ'#-t:k訙/ ˉA}r^[0|Uk)m_9Je5nRMϿ;=H_+= Rb[p捚+'~TUflrk/8Q|?*RnU>٢~⯯hGӏA4?aoC)_O.ȴnls u"MҪ(Oi-v+v-Hh={P.LкNs/70G1oIbЈ8olMJK) 1oh"άﵴp pVpqt0|**N i pp@KZt0 N08NZ*9Gr^k[6N*0WK-pka-{21K:GgYoXIQq{hn0y@N>T zmv1|.NHkq^^ q'({.w˰un.l1iR*01 K r!H!Ƌ s)pj r#o 92b o#QScnOIJ[~& OZ2'1#u2'Mғ̬'hR@'Y 8ǥLZVr*RN +Fղ-]ݰ붲vDP(ܒ_r/1N}RD//1QPN2cQت!3R3A+B>4KqB3к5aSVZs6ESʦ/d"m5Æ6s8RM6+s9 :9:Q9:s;Q;;3<;S<<()ҕ3>s);N?3 s&..?AW8sҪ-LM;FhnN4OݩENvC( OTO5QX1NzGM)f>MR1u$8,vC,D1P /SMT9/XzQNoJƢPVmUBRQ",GKoXi f5CYuEY3Z0qXu[[5\sKŵ\͕f1nAq\]/5SO^^S"mRg> _v`M~'p4av &GK56c5P(CoiucI[p_&3_Keav4fif'[m6guug}gwffvhzh6iPVCq6j>=8vjvkpv0#cbUAk6m;5ztZp!7rrlvie{Mr=sQtIw8tQnO7uYmWuaWjcsvibv' ;ftgl-2.1.3~rc5/docs/Makefile.in0000644000175000017500000003353111024231635013201 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = docs DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/doxygen.cfg.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/cxx.m4 $(top_srcdir)/m4/font.m4 \ $(top_srcdir)/m4/freetype2.m4 $(top_srcdir)/m4/gl.m4 \ $(top_srcdir)/m4/glut.m4 $(top_srcdir)/m4/pkg.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = doxygen.cfg SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(documentationdir)" \ "$(DESTDIR)$(htmldocdir)" "$(DESTDIR)$(pdfdocdir)" documentationDATA_INSTALL = $(INSTALL_DATA) htmldocDATA_INSTALL = $(INSTALL_DATA) pdfdocDATA_INSTALL = $(INSTALL_DATA) DATA = $(documentation_DATA) $(htmldoc_DATA) $(pdfdoc_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CONVERT = @CONVERT@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CPPUNIT_CFLAGS = @CPPUNIT_CFLAGS@ CPPUNIT_LIBS = @CPPUNIT_LIBS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DOXYGEN = @DOXYGEN@ DSYMUTIL = @DSYMUTIL@ DVIPS = @DVIPS@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EPSTOPDF = @EPSTOPDF@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FRAMEWORK_OPENGL = @FRAMEWORK_OPENGL@ FT2_CFLAGS = @FT2_CFLAGS@ FT2_CONFIG = @FT2_CONFIG@ FT2_LIBS = @FT2_LIBS@ GLUT_CFLAGS = @GLUT_CFLAGS@ GLUT_LIBS = @GLUT_LIBS@ GL_CFLAGS = @GL_CFLAGS@ GL_LIBS = @GL_LIBS@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ KPSEWHICH = @KPSEWHICH@ LATEX = @LATEX@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_MAJOR = @LT_MAJOR@ LT_MICRO = @LT_MICRO@ LT_MINOR = @LT_MINOR@ LT_VERSION = @LT_VERSION@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ documentationdir = $(datadir)/doc/ftgl documentation_DATA = projects_using_ftgl.txt @HAVE_DOXYGEN_TRUE@htmldocdir = $(documentationdir)/html @HAVE_DOXYGEN_TRUE@htmldoc_DATA = html/doxygen.css @HAVE_DOXYGEN_TRUE@@HAVE_LATEX_TRUE@pdfdocdir = $(documentationdir) @HAVE_DOXYGEN_TRUE@@HAVE_LATEX_TRUE@pdfdoc_DATA = latex/ftgl.pdf PNGS = \ images/logo.png \ images/metrics.png \ images/rasterfont.png \ images/vectorfont.png \ images/texturefont.png \ $(NULL) EXTRA_DIST = \ $(PNGS) \ $(documentation_DATA) \ FTGL_1_3.gif \ doxygen.cfg.in \ ftgl.dox \ tutorial.dox \ projects_using_ftgl.txt \ faq.dox \ images/metrics.svg \ $(NULL) NULL = all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu docs/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh doxygen.cfg: $(top_builddir)/config.status $(srcdir)/doxygen.cfg.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-documentationDATA: $(documentation_DATA) @$(NORMAL_INSTALL) test -z "$(documentationdir)" || $(MKDIR_P) "$(DESTDIR)$(documentationdir)" @list='$(documentation_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(documentationDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(documentationdir)/$$f'"; \ $(documentationDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(documentationdir)/$$f"; \ done uninstall-documentationDATA: @$(NORMAL_UNINSTALL) @list='$(documentation_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(documentationdir)/$$f'"; \ rm -f "$(DESTDIR)$(documentationdir)/$$f"; \ done install-htmldocDATA: $(htmldoc_DATA) @$(NORMAL_INSTALL) test -z "$(htmldocdir)" || $(MKDIR_P) "$(DESTDIR)$(htmldocdir)" @list='$(htmldoc_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(htmldocDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(htmldocdir)/$$f'"; \ $(htmldocDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(htmldocdir)/$$f"; \ done uninstall-htmldocDATA: @$(NORMAL_UNINSTALL) @list='$(htmldoc_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(htmldocdir)/$$f'"; \ rm -f "$(DESTDIR)$(htmldocdir)/$$f"; \ done install-pdfdocDATA: $(pdfdoc_DATA) @$(NORMAL_INSTALL) test -z "$(pdfdocdir)" || $(MKDIR_P) "$(DESTDIR)$(pdfdocdir)" @list='$(pdfdoc_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(pdfdocDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pdfdocdir)/$$f'"; \ $(pdfdocDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pdfdocdir)/$$f"; \ done uninstall-pdfdocDATA: @$(NORMAL_UNINSTALL) @list='$(pdfdoc_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(pdfdocdir)/$$f'"; \ rm -f "$(DESTDIR)$(pdfdocdir)/$$f"; \ done tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(documentationdir)" "$(DESTDIR)$(htmldocdir)" "$(DESTDIR)$(pdfdocdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." @HAVE_DOXYGEN_FALSE@install-data-local: clean-am: clean-generic clean-libtool clean-local mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-data-local install-documentationDATA \ install-htmldocDATA install-pdfdocDATA install-dvi: install-dvi-am install-exec-am: install-html: install-html-am install-info: install-info-am install-man: install-pdf: install-pdf-am install-ps: install-ps-am installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-documentationDATA uninstall-htmldocDATA \ uninstall-pdfdocDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ clean-local distclean distclean-generic distclean-libtool \ distdir dvi dvi-am html html-am info info-am install \ install-am install-data install-data-am install-data-local \ install-documentationDATA install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-htmldocDATA install-info install-info-am install-man \ install-pdf install-pdf-am install-pdfdocDATA install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am uninstall uninstall-am uninstall-documentationDATA \ uninstall-htmldocDATA uninstall-pdfdocDATA stamp-eps: $(PNGS) @HAVE_LATEX_TRUE@ for i in $^; do convert $$i $$i.eps; done touch $@ html/doxygen.css: stamp-doxygen stamp-doxygen: doxygen.cfg stamp-eps $(DOXYGEN) $^ sed -i 's/%FTGL/FTGL/' html/*html touch $@ latex/ftgl.pdf: stamp-latex stamp-latex: stamp-doxygen rm -f latex/ftgl.tex latex/ftgl.pdf mv latex/refman.tex latex/ftgl.tex sed 's/setlength{/renewcommand{/' latex/ftgl.tex > latex/refman.tex cd latex && $(MAKE) $(AM_CFLAGS) refman.pdf || (cat refman.log; exit 1) mv latex/refman.pdf latex/ftgl.pdf touch stamp-latex clean: clean-local clean-local: $(RM) -rf html latex $(RM) -f images/*.eps $(RM) -f stamp-doxygen stamp-latex stamp-eps @HAVE_DOXYGEN_TRUE@install-data-local: html/doxygen.css @HAVE_DOXYGEN_TRUE@ $(mkinstalldirs) $(DESTDIR)$(htmldocdir)/ @HAVE_DOXYGEN_TRUE@ $(INSTALL) -m 0644 \ @HAVE_DOXYGEN_TRUE@ `find html -name '*.html' -o -name '*.gif' -o -name '*.png' -o -name '*.jpg'` \ @HAVE_DOXYGEN_TRUE@ $(DESTDIR)$(htmldocdir)/ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ftgl-2.1.3~rc5/docs/images/0000777000175000017500000000000011024234670012462 500000000000000ftgl-2.1.3~rc5/docs/images/vectorfont.png0000644000175000017500000010053011011547675015304 00000000000000PNG  IHDRPDXsRGB pHYs  ~tIME  , IDATx{xy>ZJ%BU||jUJH iU_*q 5  Ӹ6&qCܔ((IzP*V*']Xj3~<0ZvW$x+wf9Ǭc16VrppppLR~O98888n{qoǝ mؐ2c6.f^qGSݝ0NxҦAbrŜ1B3YSrhR֜5O|88888A"`;71ݛD*Y!&%Aٓgg V[~ kMI^Z$,"9Nx$)RnK >cX*B&2{SQəwrz$]TجNkC\luM?Pdc&q=uLS6M|$vg3|#-xH#7@@f{%Ia"W1ոșn·2{λ%΢wx='<؂g& 4M^yfi'<YCc2{j>jNxwp$sg45iuN>Μ8qp̲b*fF.Cpq t[l!ڷ7/888rؔs۽:b:88f<9;Up4y{9ln'6Nx䌯}m*WNlBBޓ,zV 嘙N+wu8Ylq{rJ c檴ޡ2gҲ`~kC~Mz ȇ)Dϲ1D:f5rppm.Kˏ{秮yL6SCy88qpFS'_q-f\ QNx!FLQULc5B;E~?Y^q[]~Ax}7 .]]]]`p4557mzn뒉`L֜oٜ8n3l޼oiiQS+Vutt8*Xyh4:44p8oԮV|'&aOMNq޴{qpkkk/]_LF⡡)幚ѡ@  TWW766:;i;ʟrue8n2f"e<8qL^o0ܳg{ΝCx(x]]]˗/ouhd߾}O›ZUL>5yfN y|wDmmmg߾}*y={tVVVWTT:tt~#rmHl'NІ1[[[/^D\288xI1)6l!YY-gp^~k888rj B:eG(zʕ###W\pǃ۳gO577'Nh.tttb貺Z7\R=]UUNuuu}.]mmm7];K+d6ڻd(mS4*//fE*5r{GM uuuu.\Pv):׋=i8T|R{R|d"2dxxxg=͛ϟ}̱cǴBveO|^9s=xwF{1) zϞ=###%%%˵xbS[[ G6dr:;;հ ѨӧO#|>/ƍϜ9x2ZmId]]]gg?l٢p8|ni j+B6x7:tH}V›~2 y88fu5{lϟP_QQ٩{AMM.zϜ9 YHطoJJCﲲ#Gh̉o}s{U.sT0PN~3cv~zUUU'OliiF=OccMxW:Nk}Q-sw@1o<݃iv pdO[[n#G譥sppxEnzѨ}>Fo} G%LJ9[›6ppXVc/Z8yO>ݣnw}}=|>߶m2"a``@Z\zP---۷oW鹬ʕ+ѣG5,.....FRGԬYF'=بLn̷-^Xu޼Ao_ ʻdD88f8<|u޽{ !{檲M[ܼuVujA}}=GZevMђG?Q+}]Sa0R˗/&_|RPP`{ʕNZ|:XV|Nqݭ>~hh( a@ p 1 hӟ>zl?;tPe23km''Wrq_ |{m*++qҥK{zzt>ze˖uwwe߯ݾnw_____z\.6nܨ.\xcw׫=D U`9΅ ju:}}}dx<p8^^{G}Oݭ}Uemii>g.|u$OJ?eoq%[))ZcXpӠZsD_dAnwccN _^w{HCvT gyQ(t, :0Xz58qbZxS>»U©c ΣQ.')?bn>/d0^{-˹<.˨et7_Jj$R-ʰ򖖖mX Xb㩫_re8RL${رvөa'5ɉ˫tR˥jM-Μ9+Wl쨯宜NgN: C@gs.߿j* a}GGrnVJ8qpd7j+V7oޜ9s8+Wkmm/'/WqYr!qjSVVg㒫ug@ϫReoo1tu(//r4jb'xԩ4sYi)3org񽃃c`ѢE:!*jٱ1z꺺G"V󷶶*)vT_===XקTE+8lHݠP([بSpiA@XV\`N`H8Lv)t\pHkB-ƛi$ BaﯬD:Z^eeeoooooZtȎq^ڵ {ԴdGGG6*鈼,8ӉE{ch",|Ǒ캗_~y~ݖp{{{ʻ{&{?[NxD}16FX`}]qToTCDHe['VX]YpVۋxaLښyxC`Æ |XIIn7DZsF04^6 PȘ^l~] xؒ~{f!&h&s=xt-߯˾ @ *Pe;ۍP݂Q&6m裏ZV4?%mфPѹX<ƃ{񴶶fHMKA7uz~:.\8w˗/7O6qOZz*\ +++u͛7뺬csl ,pݘD XgCvyeqYr'zc5Y^/>G F"획3ko1 8vXcct*W!F[Kl6F ̙3}3::ϥM E!V: ym5vO\R2=@yTk{{{WXN7^kooJ"dzcǎ,^lؘp>ocz0lhh0_ڮ2}Lk2S>O͛7;wc…z}7P)G0&s/1#TXtiOOO-9$Uez kwV?^[bl|4z 4!ַh"Af)%K2 S](ĉNSg)78V}V}>߳>RZ? 'Ԅ.:ƅԔmk o2&R· \VXx㍛ҥK`;t8}t@ϧwn<>,`0;Kڔ[SS]>OyS`?Z-Zh߾}i0` ojiwD5CCC{9~Eϟ?<<_"{erBת )au<&{ ֬Y3<<2*2whe覦144+Ѭ]ruO%Mܾ}2#Cl]-g>SPP: j888ٳGkڪKL WtRwwwUUUwww Ю.^x֭.+Mtf͚ݻwv%K;w.x?#Ѩ|hh:+++uO}Slؖ@pVW[0AH`lZk988f.pRS3gd),Z[[s^]"3\)@w̙3٬ٸZ-.u5>x<c)>;v,]Z[[;SaE"]:Wppp7+Az,n .+ c,}!ӷcVk@{{nL\oa";::֭[wʕgyF;t8:3Z=P%(I[ZZ\.͛.HΛ7OEKKKsssWWl0DgϢ2$c鳫± eޒbۅۼ2?qD3g-&rҥK+++oߎ :y188grv;rOpް Dרs͚5H gΜٿ/ظqf8>rd9c2g1b:Dif>6m]r"a׮]fZI]RRrСlf0cdYh6[A`ס0^E,Ax7onkkÎޚ\شޔg#/8+@n}QTWWWߏ rUUUlZ~GGǪU._<44?F,e$HL[r+W|Vua8 h{zz֬YosclHDE3aU+&R$HuJڵYQR*(;wlhhbt[B\v8o%mڵ+}֭Nsҥa-:tH \^7 c?u>lXn7:`elGGG 988ؽ YAB(Bȍ[ 9xB!˲,KLtxĆ hG˗/O?c---555y!ѹy/Z@Dx0n&˕+W,(%1ǦȵT]e;]}MMMyyySS?_UU%WcHf466s=: ,sTw rfSՍ 4o7:py   @!2(ƦBQY! RJ)!d3OI `Hd^';Y$YQdEa0'se6LGlc1wUYYrl~sm=#Ɠه,X0VMMMŕ .xb___N=۽k׮_|Q;pTUU8qbhhĉNĉuϜ9ڪ7e6k88DrpdD"˜o…gϞU;;fFօ <6[ŋGiߋt7*A<>/466n߾҂vUUUկ=jTҹz+sppqdY"( G“ArH1AP@)%iJ%_nfl2rE$?Բv< E" d6[w`SeR(z3N~:}421cW\\Z[[6F:^gllLێۋ3^ŋtRoM}1*UpU]ȅ T8Ux<۶m쬨pѣGWZ={vttp1²2Hr {)AEq"9WQ kFP#aӯWvRd2?i+cIeIlG! يEN fbMeB { U= 7+9sʕ+WX"mMj%}F7QS+*++QG^uC uaC+VTWW_`pppPG---~?Kvy覭Ogޟ Ï˗kjjfNYOxc1IdId @X>Yx:R~Wt/޽ ټO֌Hh$J=bŒ伃/y,R* ,7YU.hlcXGEJG6M̊\.ׯksut&%%%'O_s8m>.s|j=:,ܵWXoޜf]|9sPU^ ***DGMen.;)EM1bQIZՋX(9iX hNέTDy*ExBADQ_̘"cY,` `ĆЀ?{@8|- KR,b[ C׮Ecx<b cq;*$IRyp /iр&3Ӟ~qDl| O((P >@6ׂе@<Ǣhߘ)7/K4hޟitgD׸VYYp8tK+4iދVG<+//^cfmv'IxZ:&[SѰc1)Yܸ';nEEeE$I$,+EB(4Fo|[wNv%PJEQYdIRdIQd)(XkAh|SMALl"dAH`"Rd IM&d2(`c"I[?2[#CF`h$I7Y" ѱؘ,r,Y wkM36eB_s: 4㿴TAꌥ"eeeY^''{cǎ;N188ٻK.555{34 `X,6heJi/?YeYdINP0@``PM6[A RZh_WO69ϽKƌ zv"Ȓ(PB/o*2!b (P$P{^D@LK)X@ P/e)6=UؘJxѸ#9$c@I @DPtQ_yӜ_glJ 26hidn'}j}mtɒ%8 WWM2ꭵO]UU5o<_UUzĉnNu3`\`6(R/idVD ]@DH{L(cN;kRj1XLEF5CdZ"r= )(dYXv22I)6 hFH<+_s;H')\x@9%%ecwJKK:œ t! .Há#<1kjj7`p֭WY|yww ph4rВL}iwc&`j \M#+|m$ "K {v:QSg'ބ9gg})L@48j) lW`!#f$D"HqJJJ@.cWZZzҥ qTmm n:v_~׮]~x<vÁKx$DXB# LbvJB]+)qOfx-i,8yll,vHSqh,BWB Eq÷B`0RЌ^'~o7 _> B@ Ŋvs}U"Q]oP}^ߏ®N-M JιvқZ 8?Ko]an1:5#Zt)(Zx/yc ccLS' AkBdS)V)gܺ/nA$*PF)r"*`+S<1|"5&Xl"w IDAT,.x{RcRr̍ob$)q TЈ3%9C/MJ/S+bXl,#1EAcx<Gd)PHv10AH^gWM()P(EQ,**BZ/l6sTьT1&Iz P7pZ RRo*${~+ p eEȀ}Gm;v0&j)N]0{RlVs'e b\O4uˢ+GѨ'$I4PS뿠 EFX,^KH )cB@e)FVlZXȏڛ|/A"XRK7n7F#_6͢( IYcd,t֩;w~k_CXbS%Vlnc^pg\+W Nn}ᴈHV$Q s)ړGwvn9D5[e?_AdQ8FcLJEv`U$>+@bBݓʖ X6?E@h1[\oK$I$X r`]^C{~j8F#/@(|2` OSZ؁!%LO#Gz3gNiYƔdeS{ܹS[3lDԹ??3($TVkH$tʕR`p1+͛RP^Ǯ^]PVb6[-ST.[-QHUM]q&^qqlٲNәj888ġb ȵ˔ mgNg Evj>ng)OE#eY5AJ^h2Xs , `Z$1J&(IG I6B[oE"x#RFpu &R۱$3J<  ,RcX )hf k׮p8*QH8#966,ovג 0EXQ #3,⢢,+.s;kOaX0(B۱"R"! [XX`6?+Ld2Y-َcWS5L,L/+I/~YJ$dur&"78+٭B{a6jÅH$x"$%E%:q|'?!,K@sonDB)!ȫ{@J I"!)/2S[R׉!B1M\omBVso/dY9ցo5Vd)pVwmz81EDtZ"^^R"wD5pp~(.-v-%@Q3ӱ]+IRBٿY#@ңDRj+_w,I,aS$ %DkI_,AX5߷ Q֑"'$l1MbX,FJPJO @$ dFD4II4"!P(4yD "AEkh=v 5嗿i67MpCeI$qm(rNٜR];gǚɍ7^ɂWhEE)f(Nw c#z튂PP`M&F8}ALEQLD0 @Zb8HXD3rukVڎH J/.yՔh]=^̳>  Ei,?{z^,zTڌ}i) ۼl76,j=G6lؐD L ( "0?y(x;GHzcvj`wMٽ[6|>U0v,× tHYVdLI$"Բ%% 񓂂BE9fp_~HI@Q۰+ }Ld %vŪ0RRvX QNjQ@@10X=)\4MZKZa=ፎd ,IHH4 B)C` ip5L1EPwȲ6/R3ߘN9zB&[?J._ A$@1?! -!Hҝw CM]E% MYဢH VNz*>Of J NE,iLP x3J`  X r~#uDJI)l FADR0)XP ,&&IPFP DaDqBAUxH$uGB^a /;Dtu'>P_p,zjZ87cd @`ttR99R`J$vcEal(6z006SAAN2+iyjbʍ;|r>ѸXL"&a}/>T$(VADSy V2s8-VE(ePXT V⎎6u`,˲$߰A@2eHQ(TRJ@ O}ZT|TIEEx\Dcr:J(! 2SL (IyCP Ql&ͷn~W՗87a &˒KjPdt@ΞcsibW^/V_7P6M/0#b;;J)!?mNxr|7,_!څ9)` S9Ng6G,w{|AY*XHeSAOn,* v^?bɲL`+(6%K9|'䏯pI҉SQH$bPP ? @J!Zx뭷05kQKᰂTyd47['HbGB%.lz BHN`N[{'=رF(޻ =TP+EE%sUc7L͝;tA;w޽[32A5Jr;zK@yYks f~vY'vQDtq.O^$m6W޺~du #/GQmz](T\#ֈG \ZZb񌺙鵦:&BpvXvgWj wmj6NOi{H{uoJqB\M7䉣yXN 2-Ԭ=m{hhsfϪ*g $ A8{]ǭӕ> V}fffD*穲N^ŢsCgJ9;쭶1]'ʀ3\(91tϗo|Mu+*JvͨOb|iʚ vTaȡh+qͬG.}UҤQ#=Q~|z|E -(gX:;ql\OJ&pCΚ$Iǽ 6"ҁZ9G#f72<8X sG]/ \eS7I)(iv|g~e^14khS^ŖhޏX-f5^!LD:+WֈкQ5]E"!"u(/520ZTO8(R{"3555>>^"sU ?vgfN⇵{{wsnR"ڭncj}|Z]殮biSOYQ*Z .`xx/k{׭\2|mOorEp*_.ZDL/D,r@j?1VV+[ɲAٻwp{]k<(=~[o}__1F3o}9L45/e!ֽ56Q*MIxYH;2A9VW/_{杳4mw:Eq hQ_G^햛z~ְȪ'*_?s?{F\|J)aZ/FGG<ծ#Oxvf5CJ 6?j> ^5 |W&jbXk=-<\._t/O~YLZO‘9V [m8iTkˮ՟t:Қ51 IDATYbx'YG?))EL\&cD?|g;8V d=SNE$%P*Ṛ}࣭^p iQkf;@VHon{=3viQD0]6~vƢ"k{>sſ9%<}toG='-?{?e#T`hh$|dAٮIETa R г!rm(ĤuٯFj<Rl^]Mkn. .f^Kb"mg#u:D ZD)]6 J˻nVo6r'IXuO107MMM<_vSqY~nD}o'ڿrBlݺuFz|i# Ȁ@xo@0H+rф0cD85Z9OD(*JYe.X!EDzT)ʕj~& oYkŹ(."fͬtmwxkω1V}p'8@l)ԝu/o@nv+bvmwW(8G k͹Dٝ{1Zu/׬Rpd$ڍ LϮ1sE},_;zkNq,`JehصkL/eVvވV8IDiZy)t"g!" DszZW.WGXr9Yb@:SZ?#EDJ^Lz.yԳbYʏ8|`Qvउz`19Q`NW|xA<FQb}wMtɛECޡ:00ڶmݻwbE}evQ q֯0GvƁ,]4|&"wŐs֊|q8[o;'lBm-.@+թ60Hlݯ #☵Vkfh{8q"@zن(K5/[}=xڭsa7VY[CvJu<[5+"CCCw)p^3{Ȋm}t <"$a͚WfY}_)鴼|QWzJ) EJT` 7DR L6teu|RNs^u`yڍU)?%K~ګ>zgZ.U"'NPI`ɒ 9ѿRRx)kٳ-Gx ZfGOn>n~%rj0 {v`h$#]Ĺg KGm߰|ͦy=·9z}u]g{:iތ.KnCȐFyBWglnerēIAA^= 7Oq}7ܵ8}g|ksݻwoڴ~1D˥`ppm9zZLISc-!p2 ٓ'~=)si`kصby㬵b(9Z?T*D/1yV:\.s@~]H)j6yT>ͮ٘7nFBxO<ZgE9g/ytk*Ym}~f hDkf>tkcf]%%>2}թRb*Y?Q @xgWXX+Vkބ/1mALfI~\َپ 튅t;5xu\.wk1Im*vsNH 9r rhɛ,mmM8+P)8I;\q Ͼпߑnͭ2ׯ_sW?[ݻk > ,دpQѿnkŠXkGV9/Ȋ@ZYU*&Pift+6HZ80©q/!ٿ' #J\Uڭ>vѹnj()ܳW\GfDİ]-fg7E76bD)&}O/? >KR40::{!3mNH~L \$Vۻ֭\[WyGC0QOsc92 Zr2C*٩\<⫍6с/۵eX+eQX1S.WS"IRQiN+&B€uNy 3GIɺr^5%vޝ ED @}=I;YĬ#4WT|/[+٧E_\gRSsCV3m5H laH-Ηb?;/*tmMp?sr^13@˖쀀&~ػ+"7%jSpF:(v,г .yӢt EI~sF)&AcІslΫT /ΉhʛK11e] ʩV* њ/Ke8Yxpdx>j:Vu?Wf=HeZ?!.Jw`r#MI%@)_X1ʵJӣy%_Zyab_ኵ|uO-+ܜj$I9I{ow"E4hƱ)`Æyv_~ժU^wTd=mr޾, W+rR9[@@ϒ$m@KqDLĹ̯`5oYT+Yp[>ܿ`B CkzW-9fιHu`@o6^)P=lRu`XYbfkL5~Z)uZCz$$}lXzW8ɧ\ֵ&(LPN9گe7 YWx/SY%>qU Yf s}t%C (ť|,FpWo`Vdm1NnWoՁ*r;cǑ1N9U!" ""lZ'IQyLSXXʩn/7LD)9fesal%{]zZlh[dY8 /\<1Qj6{իW{{x8Z#'Hi&DڊXMIR }Ȁ7&95}&aC/  1sގ;6nh7h%XG1,"vb E ︫`y0~:*vC#qSfƧihlp/nd:wt3kXV]l_~ZIfm)֘^8N0{t2k1lキW~ϵ?F R͢h[}*ZKV@@/.9{དE9[Ո8ۍX xجgu#:FZSO?uJGZE~Z[Xn5Z)d&'h֗^v=y;^)Q"Df~/O S9@f>k,&'j28o{}UW8p@/s+bTkijvҎIJ>n/Z~{ۏjǜ39 DTC70zEގj]w5kLWSӎ_74}GGtiG fŤ.,gKiO~R(LD|ڻܳ;pK9$% D]3Dbś(ʏXq9vJb6okE~k^JbΨ,Pp^@@@@Vx;v̨ƎȺ3(2D?C#줉GŰ"u8kVڝZПbSN<4M}e#KRYdr~ TjiاޙcGNY6 =a7߻.NMe56l0666c-c.U*VY֒6ytmxg7.;LtdY:k8a":S9ܡXRY:bm)eC|[.NLG,d@Dlap6ubk-^r%Ǐ='rݕ"V'DkNt|N!:1hNM;iwFR >q@ӈ9Af@ @GNlݻ[q!9.U5w{;8 "k?QCFQe]V3+97񵉟t2lBqehb}[Zv$BfFn@Sl&SZDJ\OsrGx7]wsZC7pMZj5 ҎL΃pPБ# psoZ`欛:q))Mx9Z)j(fb.Lo^Ҵ,΄#KHMLԓ$-RB[_}у>dVy[*ՒHŘ4rOy^4eWPmܳ1%_\c:"͝vEVxk`ө+b8hbIb1s! yF=$f.+J:UoIDҋy3DZ>dMwI"09/&"{ʕ{Zkzڠ(^> xRB(уqR$~Pl.  (jL$ffqQ$QQA)Mi%IK\9B~z,cv5j}>8!'rI r<ֺR\b~ssd(,(%kxhu9aVk-d;(pvUo5ELOxZiq̬&/z+GG=UF ,cd)GgQJ)5hԤ-ĊM^mc\9MHErDs@a /lL&qLr9\Դ&b HoѓJI^q @F1zZɉd\Ljḻn/XhSf35O$74U8FjҶD5)V$Y(P38y}'ᑡ88iϹ'·:.#Qif8Bu_Ȫòe? 'ʶQ~(3Z\:]Y`_ E9G(v:)Bd֔0XkIDAФkaDmnCzz^*pka+] 8!qkWnc=@<|yYqP ipSخ: [僕l=Y|F3؛!/_).YFؽwu61 8yc1ȿr:nDԫ->A*l1ٌ|A}kO='MF"q□u֞*)A-A*jsM /8D/9S"9Jm[:Z-T$z:8K!OT:IJ*;}sD={*#]=|3yr),ruu%ճzz-E\)b;t/,pigl6 }ث"*:qpVa!!:yd5 #?` g;(z`S\v+ָSHWCJ[skǫpPQuZTWVz; GWۡ1ckRqVLƉ<()䎨`ܺԩyvJ(0*_J"z_{j3{\4 m?&/xGOFq\'d id'I$T?ԪV˕ukVmuh]tSqy( V[o`?Z'ʶҞ꿎O"N:Sd(jԨQ.\`k/!W_}dyzM)<<<((l6>yw1vc <&gb6={܌nѰRSSc6sZȩn۶m=X2tP7n022R|ġl2}Yfvܙ5h|ӧ߿O&8~{/˗/yց|͛Dр[ccj[ҡCn߽{W*S흟eyY۷k"tIˉFY`Aqq1Y|dV 5!砺7l粓 A1ׯ_Wss<<{j#;h49Yz3;;{CCNQ\Iˆ߅ D>Y|||xքq v(;!ݻwEG/U9|ۍ j |WNNNSS?eHD>7: .NNN..._Xv:d^ߥKgggP]]]\\|݇2eKtW߾}iOHoo;vСɓ'999---3СáCy ,r).....>wVXUSS#///33djG5`]>~8==qjQU??޽{ ۷o_xњ{-)ofz=}rS^^w n[tUTT/:uJE͍9,I8FN4v8;;GFFh4J]4Mppphhh^\]]ܹ/0)OիȮ]#QQQ:tXhQaa!ױcǼXپ};HD Xڽ{{yy xfɢG)S>}ũظq899Ǔ$25=*sXGN9vь9dm+++?3z֭[`8y򤧧HrJ(_~ߘ3g~b"8dƍ y~5j`Y]]]QQ%HPVVF*$UUU1rQ3O)S/5Hh߿sNeÇO8199y̘1{SNeEXL4O>tSˍ[nZ%66ҪmR???P+VpˋC[-[FZRSS)iFF]p`!ߴiӌ3_L}h4VVVbd&^xB(IȑSX%7-- ]v~-\yA(44tѢE-OQQQ2&)++5**>㰔Ηm۶q[HΝj;w.}R\RRfϞq+>>SNMK}Æ peKذaÀXyP=zذaɔV 7Gy_7nLХK%K+sGvU̍]xxӧO?޺u2pa6ɓ^{KKK G777n1O@J0ݽ{G֊b.HV\!3(lڴ ),,rvv&\6-^BjRN# /;w^!j9rę/[osNQ?P-CرcA GfFv4LV;d>6%n3ڵkSϞ=iݻǝlfZ^zǏ={իׯ_|8KgN6z[n:uFd(²2ْ7L @}-܏wޝuŋ .'L︢cDzJJl Amm-X;.[`XLhdy&p g ¥NA  lO;dp5Smw6M,@-h4Sm׿37m&%˖-KOOgz-Η reb뙻ZLΩofwԩJɔ2}tpeKwqq( ۾}G`'wHv]Vmb0HCM}]kuuu`[?}t?Oɹs@`D @UKJJXՒtƣ1 YIJJO0@5!=ND#nx .\(Ui"$ŚScbbHib1۠AHRAnvd:r믿мgς0yyyĉ`4nܸqeeeM2EW2߿?GȨ%6Pβ,W__V3;e2>Ӂwބnii0adgϞZds?r#ǩ$j@V555} (s#r%j2SXSrTZϋ^zM #Ilڸq Y}@CC] CQɓ'8Չ:yРA_rssAg,iҤIG!3L1BPTKNOO' ^rsssPc7CjZz5ӳ< ɱdK.=}T}wkCZ600ZEaO4RfZYR9 x%F?E }S aaaftE /mnnnjhIx5f|5Ցxdr !&7lؐ(TUc̙)Z~cX#)XQQQyy9K*5 Ka8x`psUˉ(X9YXJe :6/P)4WݻD,H_A_6%Wq+M>(k---;v;v 8$$DTT Lg&L`\/_ng݃D|\lĉv{رO@(5\B5 Ka]"U4B4pVcpoe6{ 48c@s\ӄJO>d5r\vXH`fbfz:رd bfknט)Suo>EJ'/Đ^|E]pCBBXE7%OGw?Wx]]8n1Kq @4'O7"H%6mhv)k!u$T2˾}@cǂ[555V6@&dHh4OP^fΜi27"TR4 cǎR^|E2 .!n/־F>B;… =^^{5,9rL@wPzMd&(--ݲe iy7\,}ѢEETfp2^ܐJO c0UqÈe^jEEE}%_~f!|ڵ6c^XVLIԠO>vӧOhٳgr\(&EvFǏ'UVq WBV 66_~|6MIn'}]F S9gΜ@˖-#z1}7o?a;_H?l0Q, Ig#$'O ^bkw9tPBBB\\;a~4''GP,\ԸE}7/D7((\wsXjMן~m-)l~ԨQ ȁ\rAH'_~dvZO?iR5>5N>M~Ȧpy/={K/)4b5'A?CA3gC}ϒQuxnݺEIx]WNLuϬY@K,i?Ҁ|ߨ 99|,88XxE444߿ܭԩˋ)_,_~eQ( lEUV4ӦM\ N8֭[rp}J(,{k466[JM^(Zt)Tiz^hWZqh-s*G:-FXǿ#""l.W^d%HKTW\\L/F0ٳΝ;}~iqʕ"xE/!MgR_p]3ogSv|6(5  _nHCFO&?c8|0?c*}FգG)(xxx >\׻766ggg N$oI{fV@OOOouСzC=z(''u! "1dl 6`aHHAZ+Vsi{ |öCm@"j`޼y'OӧNQ7>% R߿/JHk!55+$33Sg ˋy%v𥍁Li/8㉋={2fdd|@iWXIDATUv-h@i;8;;![ZZ[-                 oq9A2IENDB`ftgl-2.1.3~rc5/docs/images/texturefont.png0000644000175000017500000012740711015307577015515 00000000000000PNG  IHDRP:S<sRGB pHYs  ~tIME6ec IDATxgו& 2җw( ; $E/"([=}vzg9;szftuͨ)HD$H{Sp ]z폨  )2}qw4/^H>{K>E@n/< >͛0˲ruGxNӴ(>8|G٬Gx8g--~ώ0 ]YYa|34\.W,>x_8ȲMn 'KDW/{jj pRiM>mYl:;۫+ 4MSE4E\>|\5kVIixHlY\~z:=/= 7?vc&Irhxtν8\4T*+W~JPSS-I2 R>/\X,Yu ^|nۺuSKKq.],, Eyno$9lf:.|!MMΝxX.WH2l.O,2"P:oh$(j2|܅5Ж-'֭[ TM*K4%aa t]{$I6668iW^{OÂAUKC,A,K˿+G2 co۶LBQTUU4 64Բ,s :Yt?jRONQԋ{x㝃MryEQBuB''8uV$b8>>'b<|`&Aa0,J|B0L4e\Jed"RUCE._? < ޽e&s~N0֎VY9::NQ?MS _ _O>|ر3#44=7B!Yf{}`268aX~~ݩT!aa:04$I8*MEQJEσ B9x-g/]|OahO4 B`kKzcC kgg=C$j˗u-^_z|M*5Օc;1dکܱcwX,[?+׮]/,izUUi0Eu#|AU577R-OFF'/;"F$'Ir:xQ,C*+6~r~ٳ‰i-a ௯>/t`P.7 `Gc,eaa$u)d[9Kt5K0 0zz\.<:I]mMIRUMQ4w4ME#֖%;kk+(BUղ'Nv:rjppd֑f(CpD+ t,X J EQ$ }>i[~}88'R-T*B``坝mNTRb>qjQ$IDQk)rΓYlQoUU|v;1An3MP(ޢ oCE_zxqg9PKʭ[o,,ZCڴR!,kтV._^?}IM $3,TUE R'Ou aʻ6 e;ڃfͲ!P(@l{|P(Z! l۶cfHhGӔ$(J0 <4x+J+H,]cYZL0$IY(D:,AnꚚ@8oty3#;i!T]u10 #<+ ?eMLӲL8]ݳdٷvD"A lվxb7P҈- \dY}QirD"L&'cEtEQ]1EjE"ᆆ~;EWz@I7oܨi$ <T*cB瓜"@I]=çʈ$K aZGOvhۇI5֮\jP)ZPW)(UUu])ч;O,hi>{}pШa[^_fs=O`G!<9$KRI9vU0G'&5P$e?h4lЍʰM'68$H$d86]O$^I$RD2OR|X*)J(_EdbKJܵ]?mON^y_<ڵŢbYV0XE137:6qd*mHbIQ:O<84²t9BR8zLs dc B^dƍMzw|pę7$a'AP`-w߽^ !ϳQ*)r7ɽ@}[DgY%I!d25>>Y>[>sODZinjxfض[$!e߃̫]9; lkͦu+*aX_I !'{خ61IԇMQC{%D"Ot97C[kӲ B*;b#\Ss|bz&j, N&Юᕝ1ciZP3*$I|0B6+`u[Q>驸Yww}'nj׌֦sҥ^00ErMMUWWVXpE4ff'O+*55UҎfB:q4ͱ_?~vժ{:u=˗;1P(߉KGx<~p %"дs>'4rCQL.%fǤHe^}e4IJiZ%E-ׇƎ>?26Hk͵5DkW.޼qF,rscE oٴz߁y+oR5mɢ#{_bdTM4ü.$j;vx`j*~dwP7@/eZL┦)Y,*ްi$K<Py!/]e C0H%NJŲxi˲ D^-? $9sclMOO9d1i%Ç:u ]?A#M4moƚMŒ._{{>8Lg2(Y8{,Kwӭ*q5˲J6[]{?}^g v_}XU5;} G0~9bCc勡PLi}|r-0cy\P׭Y^[Si[q?Т!Ww}d\K2\>/flP*)ib L4͏^ {7ݾrP@&H9Y}RCmڪ~{b*6˾DAxg)XHrb*ֻsEGO-YAӶ# "p&t\IQdbi<veijڜEV14]^O() )Y=ATWUD=uӦU:~ų.9 IhrWUUlYnMU8ǿ d[ dh,!P׍d2Љ;w_wcJZN&әLޟW\Yӧ뺁16M0L0>)?h}TlϾ#X"whlu2tn#/;/q 3Wpv Vmd2_x=Kjkm <7_%⩱k/zor2V@7.؞fn##B㮪Gx<|咐_`04%Ԝ0tTRkTSCy}xޒVFC̏>OԼƺׯ:y҅˽D A8.0w;꛻ a\~:()#M SښJH!W@-AƧ}SC햻ֆsQ,Nrc"~}5++#~Q#ΤvE39w.iOt712:r_=?9r5˻eGQPӴt:39dsv~K$2}VEel]r^cmE8Ȳt6WO_0!I/9YDJ%5_(Zk-F$#a}Gn0$ P33 /ӿç}iyvAGsy6a $QDײX<-AXUA0d*3entX,_ml]}8H}bŲ@UN{a!2 4]4kok. @>_<|䳿MUU]I-{ڙ##㣣㯾6A"#<~'%vvβ,#vhle4[xy$ !L˜J9#;29phu+& >IXrҮH8X WDBH,m'|ExBacoa?@Q{m-6 Q T4!_Yvx.B'T# DR0KُؿM OUD#a3y{d*3O>ﯪOjWxz',Z'R/ ׵/<8x8tt.?V_SM a5MdYZ?|; sYbσ;R$IԲms?B"!"gKZ*),˴4޳qղH(J  [7l\L]~VGٱy Ue"DQ$e|u+V.Y HIhD GO[_$7o߲*(smϾ4MG'GǧZmb MQ% (CNL)wX$)WòhsjHC!c4~iΝ9wqF pAnb19<2/Ͽ&ccᠦi4Mc-ӊǓ>84|ȩ:P(yFBAg ,Gj\_>IH~ӏlk^D*̜mᛦ/DYr)hmVFp}}dGO>?P DpR4 Ⱦo[ia@1 A MM O==H/;[qϝEDI Mx3P5>Swj>6YoW,sV4|iӅm膢u=WN+;+߇'S}}CCcs Ae.'NtO{<^?~Nq+&RL'PhY $'Os%*~C2]Nɇ߽GM3h$?G9}=V-jkm> 'xoOpoP뾆˽~݊^UU_TU۳}9<|%ޣ24"@4M7>_v dOtpp ]Sae(%hL47ZzU5H_ ;D5ΖhQ(*A8eIV* P:MEE%`l\+;e~>dBAtwūu5U"?r8*:ϱǺΧɓg/^:0>.{Nna꺞܎SP@Vgs|cyOtjoNLŒea$}XnafFI‘P pU7sFYe 0J% WzZ*a$OQdIQX,ޜµk~G*#oYVPsE´gYQڛaXgnزnE$|?}|:0o mASsJ)4 (L˂ʒLgAY&#p횡)UӮ]}&uXzt25mꝉۓı3JRU! ' \ e,a@ "P9>:r;_(aQGsE9$3CA3N9)8g$0D0ɺ+Xvx-DI$Y9VyQxyYvQathAH)(TXJfomY0~w3~ね[-wX1Ĵ]! F$˃@%gt/EDav`)щWށsP_SX6۷%EQ0VTM)זh};4]U4]7n{ҮvHM]roд_^|ѷmNul|j'\pt˸e|X,)nʱ,*,n0Mo`@7Q[u/?loKj@,ܻȸnl>\4y+±ϑ$Atd?cKs<ϸ ୟ c-1{ZD$M+)3c߳}zZQ$q׺<>~@X_Sdz{0iĞxgsOWdTRB,ΏMF0biߡ\L?k?Lbpܥ.yGx>>:lkjiK]۹df)\"[eYn躡naꆡZG͞)RIAYxE|HgǧG''BQiܲn+ EԛLg UWDܺ rQI\}N]Y#/NLYDf> @P<{X"M2Th0IW˔Ec`}uCI%|Utz?ENiT<59()T:d*He⩙nB>!e%wX0L._(*w-7^ty֮P5$I'5Msr:ΞC? =}"Ot̓GxnB2dIxp,4EHgt*%ӗzu "Q[]8^=y|hWnAx’^ C׍|sB4ܰr_*jIjv(OZ5{7޻qUCM}H}mz#1#A*jOF=̥Pۏ7^61y7?/#SAE8(ƕgh:21=>}W B(DQ" LkN5(p?4bqvB&9VDW%,hƜVk kŒ2e)*몗/ꨭ>;L2f ^PX\ZSUAnT7 SU\8K^G;?^:{`dz%'ڪ[ֵ" K,K^NaD:ѳW݄ga' 4[R2[v E(YueV/o!a\;u yۦ?z򡕋:2_(*P'mXI.h0R |i֦}#3ߐEaRνG^rﳪ骦3 Дs `LJerGˁ05CfTU+)[[HdmUEY TUK"7dI GB2KJ EGƧRIyyk]I4EI +w޽nŪ .\ť12P]}T5P,.K{t҅w>$t Sӱ.Y_xlmtuAE9_D}b4tHer_ڹW E)ne LpC}Y)q:w•Xge]W/Y`iҸuC'g]Cc/bŶR'vlf(")@Pw̿ЍfNB$e'˲4MG5Z34EYd:e`/u[S, NɭjDp~KxRd( J1hn?|cT& !IBU4XT]%w41Dzmi8H4oތ_QщW[ށ!#<p"uO=ma<-=@7 U641,Cs,jz2CBPgaSl6nh܇}uYR5w@9,C\[ٱ]&}+|pw [V/]`8lij9M떅+" `Fۗک W~ڻIbeIg`lYl(7ʒ8KdktB0oYM3AP73:w5ʊm,I5Kׯ\4>/) E$e!8;J(<˚͕RPW &U=xvTF=֖ZGUjT|h|jd|j*,T!I>Qj*"L'ڍʠ_}iQ37lf:WNP;-eG 5mZ||e W~ڮ'9ٰbI7վR`( GAX6ڊp6ffc=s|1dhY f&d:_i..tH=V,ZbliŜ$IpKiPRz'_OܺaUUE^ ۼHӴoYFԳ/铄t&칋=_ {zg_ۺvt|OçNt_>2J86re$X OoT(Ȓ l$1B1_(޾Ǯ;;P[鎞TGخK =}CB֎JY9"tp>aa<2>}DƕK` 4Ki~d&K,  M%R HN}bGK3K5>['뺢7 Gm隮":uxb:vyWۼH(4]uUӋ%%/$Rщ+}]:064^40^z3O=x}`zw\_]@*}{WD*yX+sMQ4EB@b-7{dIx}p#7gnߒΖƺJ7-GciJؒ4] ADKfrs(BtU4CK/^?v\3~9Y,KaU 睿|9 .ӲUkڰrm70e u>5ۄBŒrgl2vDwGkcue8(4z2T<961=O{<#<_6v4:=bqS?{9NX % ?7 +U;ma9tk+k+`@KT()d#wQg1T|nCHCm>D[}oCx$dI]L/>( 59DwZū/su`8/ %U,0, !ܶ#w<|Fi^޸p?zQ;xnsĕeI A̜XX*T{d&i [Ţ:Kܻ飧/`g \+(zE?|[96Qu6< 87v#>@~o[\SdIy{IR$>Hu6˫9}AyB,DMsbwݿy2dkS}$RT-ɍO%YzW1@eYU1M3xJ^ql{Ki B t\b_cq3>dYf"Th">e躪sDȘkf-`4`h D=}C[Vz(Xb2EٔfIQǘ_ލMsctkST M/hkڸjdlb:n}}bE8ܰm¶֦;PR5[ԦUK؎ƺJ ͿvOgr- 5L$j޶Jg '#I,C! XRxy%E20,p 9uyQ]]=X]LB0LE$IafP#<$ϫgP@nDa|*^ 4׮sKjPdXT2 IDATĜ݊'6TWW~e(nCco=:z{d( ODJ*M|A *p/ M{~YZTWM«D.EM+ܜ/&b $fRJ/cM72ٜq9MH`1.jܢ}l2v{pAڪӏܷmxXx2lc˲{0$It7;[lV5ms/edXsBHg/lplb6дp* üKVUMO<&H$IXhY9MAH5MĎ$TTD**,}/14zah$HDt0>P7S\n%EuWt[5^}$( G$"AHB+OxŠp ^|mw`xt2Oe IMunYwߦDa'9#i~+DghzlUE~r:3T;[dIQd{e|1YIUbɾWk\,bBty|*~DE ۚl CSWKB Ms,C@ObIj*zhݫ fz~ڻ4)ֵ?gဦ%EJF\K4rl}!|T/2g_O] cȖ2# iiEQ\lQ4v8BXQ?_6LG䗌[7ec=s)JߎB{Y8?4=#|{sCsCM }]v"X=mZ\_# 1sc5W^ASI]0H/{L._R5]MˢHrr:Y ]ȗsZ$(B1 }x4i&W|luHe󣓳rPIVzǠ5f_Pi: UVVDr@uC4Gkk ð(\Qщ-[6|g϶P(XCc``YL|AЃwy^AQOVۖ(Z ;2|[iMuUo% 0IQ$*ÕG{Q CM,b d&C`& 4%Y,Ƙ՘nAVȫFb`GK=%z>dXQ)"~/vB EI5$+CHA`ly,aɊ _$PNʣ!?P΁@ /j>}ݓBΎ8CaH*r|zhljpt|M+r/~-8 cP.k#{t:{yHCQ~XU,r q'~=*yo߼s疖把eHF Wz=LMЊ|iكA w)1EXdiH"iu#eY 0|+iQP`xZlް,EiZ⧚qŋWB&'gKMP*[ښjkA$ dO@WW*8'ͧ~4 : ea&YbEQ5M7 òT*MSAZß_+iɲ\(6n|{wgGKCQ>S zX$A lOA( ljipHg(j&_3q J (Oe:A;`kc CS4 GWW_Jaיp)Eh, 0+)bQzUU+rIbmyhM1u"ǗxAH$E7"Qw`Xl$<CgENu@ MW#mڼ32Q*8NX5~yn|_'M )|P*w!XYUde)< D[5[|ixS>݄eg^J2~C;6d7uf+>e9_UU ,MiaL~le(no=^](03ޞ.so=~Gnu+{o- p2W 8.n %'`RБm6GIO O%ә|qs'޽j0-+/{|*[H_8mgqxvzX4 pyh?tpϖ' Pe4{vAMc8y= I`+[oK&IJ*>>n|-zݏ9qN 5=00k%I0vqևa,̧:6Mˎn8^Q"$I0 { ?~hh]O<;**b"_SS}uu?~}a _瞃PEQ&&O8s~ia!U,$Iu'2eAr}u"jGAd$) (NǦ=C$ٗ8V[Y\ ^:ӴlQ^l%^5p2UArZgTv>GMuClxӠ }_󱘋oB$* p{~/ f|(Шw{B׃h"%tDB_ڃ/0tAK%^%#M-H8ᄏO 9zh4h/믿;22^&;uٳ e]EHy6L&;)wˊ^q6 LΞ;HPbr.+0a( CkQz0ӎwֿWBflP"L\v$@u~8vj*EQx{`d˂ ˪9躞-de1@̗L ,FnDCx&( ]`h9uqcG2uv>G̲,NH^U]{=[5"Dc(kǧ_?yZ{ K#+T>T7 ]7Jڗ!AW0CQUQUݞ" C%AnjZ[SٹaFϣFXpWɌ{YQh2LNT7|A Ȓeuhh== UVqwn&w}w/^* um]Y?o XSuCחSeNFQdӴ~iϋR[D)>4E.(]ɫM-e7hBiFA3}75{Auky#_,0 rZ" h"ttD*ca:WI 0lIVjhi.{<0BʅCM]ǟ ,E-wOe>TWZeY{'}>EU{'f>4 躡vfH xH˲dQq|][SO=cUi"w__|%ʸ>a( H?çښ K+Wz %˲P=wrmmv(o>44"ˊٰa]GG Ў3GFWSA|P4=+=P""lOiJ(a(ܵ.\1+޴& &)aP4Myތjj*|͛;lwjYV>_8N pׯ559=" C^vݺ*L>0p}dǽ^;DQ$a;}>_xɳY2+ٷ׽7 xsOǂ{zKs]iZCljWgCw (a{V IVfR5MKq]Us_5M ]=CcG P_]rӴI8}e܇gX "gm EڮA`E ONJ+k T?N$I90-^)KayPjz2Og Wp |l^aa %>1J[C5[nޣ۱XlY[abpSSƪ aX4IVb_ #Iߡx<fMx, knj (XGQwuuu  0qM!oq>5+X0 @H<Exyޕ,>' { d2$u7dTVFݬ$1 )d0\YY3=Ƚ$i_(bgcފX8䜫eYq$MGQ/ȓ{p{/yj[78}c;Z&= a|%֌ SOQ5m!Kf4"8n MUDB[6 |`Ǧ_*.aR3t "e9/8eRGb> 6-$|qHnnoٺgeű|[Z /y2T AR/iMw\}޻f鹅|r.NX˻?,X_Hn 32A"\˲Eq(0%w:(RSȁG>uˆH$d-2 ,D$EUD"MQ?ɯټݤjZuu-G Ioӟ5BMu~g4_ss] K&vDz NhYf7㣝UW[]YVP[0MCQBh&ah4n=><` "tAaM':s LN^Tvj i~kŮ|[ͭ7-뽓ҟHe?:m`d_e7k<4E/oR"aVUYG!,ͲˎMUuyG:gݴ'4 zXAa TΪ55ԬhxX0;ٳ7ll }8LʣlgJgWY"Ibu>rl5}||ŗ^oOLIԆW#C{lhjMP0/'YW[kUM+Ka8iVe& 4Mx^Pd,seŎT*+yBPR,/r,Ȫ aQ٪P(LS?@EE?0k::Z7lXkR ð.N&Wl^UwʩZTU pJ kzg>BoyX0QV2ylT ӣf%Md)/ j+u=W(ɪRN-p0Ia`T5 CQ|I2K3)sϳ*:5㘝PUubfkp$3KRY{ dla% +8#^ Û6=XeI a$A, 0=ˆ \@Dee,CBh$tރw6a4O_zl4MǪ++"͕]%/'UȔ¡;vBӔ]87Ƨl$ZW+=[F^NFCHZ(0&&S+BU0 ä)9sA%Y.%|$t]wL6i/Je0$_Tw㲍1pvM-- ǎfs|xJϞ=񘳇 I> >4M~EQ 螺q;| 9!INoQ*Tfpp]MO?"IX, \PL&SSS րKS6`8a!8r8U|DS]-=+Gc(\_xP ٯN[c~)QR]>1cE,C[7TW0lYVO]잚]XQ$Y(IPs}2+˲(ӼLNK}_Zrnlx螻(cUso. b>}0HH@TU\`nF0sss>V]U,K[te߽U/D[Y|Eí- 5N'u:}~D&$Y 0DQ\͆AڭEdAnieB"0H}o= AaI' |m:k6MMͪf4dIya$ 4sg_??sR&7-2H}}usS}UeE0 |xxL i|ꭷӏko! q)`n8?e-O,_+n x$B7_tpPeg膑u(j5Y0GBkL$+ %@$B塂򨈆o(s 3Wz_z [z_tXĂlY|xA$EeQJP,rW,񳉅k=7LX}};][vnT=,]=>Mu³x<'\eN,]_[_TU]Ooǂ@`P\"gʌj+ uͱh~{tl6U0r~|R2{=,j#^bdyz&a+U8R'5&ES VV4Ms((ɲrcev(|11Pr84WWgg'BDMkI&+qN$R nÁ\C$u㺣w煮,J0x{0 5 |c>o6XbZUd:zhtK.H|gׯi6=~dPP eE"IܠeZ0tF8Д@k`- (^mmii7<4VUҝ FQO+719aؖ{`>iCc:H$$4΃uC$EY6fY_OG>ھؑ=@Rfss G&GF&old"DQ$ ELu]U[2CuUK'jXCiDˣgR X8H"%)lET&G&gOgp{p@@/ZCk훼^Ha.>xe^i{ߎ?Svo<A$f .pF`ȦiR[SOgR$tٚ%KJPJ.Ĥ=۞{}{ƜL\x> ھʆ=@ScG_{5;airpт HQ+~⫗ځK:K$EArHXe daaYA%WͲLmQrP6 bzƶ͛)`4sS/e. Jmo=ysGX"I*R LN^pU,xXr\6cY(x覍-fh;T-l6&DP,Ib]y^.՛ ǭjz 5ŒNA|_U4wxP`t=_r??mSze3?+DjGܺ}{J$p CQ0=018s mv ʲ".d+ήP oMO>v=wﭫ<~*AU1s%x$|^kYLYCGve33 FnE/ɲݼkkFF'ԮelYCGZQliq±>v; .10KE@uUE"\b_a +3$jz] c(39YVnl8k`|le&)4]tYQdY$I]҄hDZe=ݺ+Lޡ1]78/u]RȈQfVU3|j+,GEQQ[HM&TUczͻorb"ǿ;O'/rMi (04Ų CS0 Q rNk+ nД*?2=xڪ8 TU"0jw4y?g~˲42 ,C$1X;9y`{C{mGEmmÖe&0>w[MU `Ȃ,˚]x{i>5ݵ}3TG׍ϗ8^P?69 HC}($I:'H&AJYn Mm;ZI]Y1MLt"8 itVݷWZΞxA"HEYݒ6EݹAP4l Id Ȳ24<5nh`geA;Op~DZT*ҙ\29S/~ڪJEQM\I𼸢A:bk   _#t[5xjYe,UUKgAeYwҦ$F_{ihcmUuI[X` p{ٿދv?GnPYnYP4{xWò ʊ("w+=T( )PE܀pT]eqZ) B)ylksCh;AW4M"4H8UU1IZ$)L_΄xSFMAP>_rАe9L8wDyl| 1ϛ>j{a⏟{1 Jby<~{F$TM-|a8- ޷=%R A$ѥ ]_}tR6WPU EblLy(q|6_ |!/es3K h,a؁|(y3Al}|(Tc;?/J&Y)x2J Xb5snj[EKWz>aDޙ_H:{׎֖%YE\03?xվޡ|ىə'!C7 tvokkj_.>>}iNf y5[/yYfߎPy<^0$# 0#e}]7yg/KU2S Ct >O}mUu>UC|ztrfƺ&0q+GE "3syȁZ[K=eqsW'&g-jom|fܢЮmN<1E=,bQ Ly c4M,u-ʕ3N$ ENQEI$ٖ\97meiZ:hߴ7sσ8SsDvBdV4M+J+syX$pGi^*n$yfvT*bH"Lӌ Ƽdc{h0D6ߕT:;;0X勲ܪNgأݿw4o?}Rȭ/|箫g7m:G X>/0# oȒ4EӉUY i*z(*Aue>HS}elHaݰ!+=8{AAEPIrj.Y# gi b5vokvL:kt|> Xvs8^p/Q1c놮EIҏkPpx:0t4<~_U+"aC feW 0̦uǧy$A8"(éӹy<7z/:A`6Gqtr}丹A u5&:ʩLDA *ˢ$ɁlPX- IDAT(p_ ~[l,ktbo90l6(O&c: :K:& JgsS܍ ݷ Mә*, (zEٙxvoVgPVt:msޭf㏝8އm,S \\%FbYV._雚N6|^YQ|6_TM7 ]ArCON߼cSɲ"+sGgxIjq rahe4ܹuWgXF M!Ȳ;|=y>NwA7 C;ZF75Y" ͭ/ul&#پ!(n }xE䩇޷1!]]Qq2Yʘ Rb! A#XH` chd/?,Ɋ$)B$@Kcm[K+ͧl*w|H(([6?$ f4ДetJY'J0y=]5MSvnu|IfŴ,푐\?JgE5g޴/{VU]ZS#IŽDI9yT*a 6j˲$IY6-߫j6O$3'NO7&UMĶeZi|AU9`Go lE:+vd0C8rf4Umno(FDCț-z=,PnwB*YM-#0EyqypchCMIxQ,80 6Q,@_uܕ?~kwmq6S3 BS 4Dznėxމ]`@sC-M۵yL篥jYVـgYV0chrڲ| I MӪ*eURߍ'\wZ_C]׻Xdhj掍a؃ mY H|to'K{T@@M}.Hai7Wa﫱m]ը\"f_-|С=[Q[t^(gO记 P$X]D*x+Ƌi$)(^w9ZԬҹa8Ti^pB40BqcSs[Ud LP(q7na".$)iaF( ;CDdy>_H/3 .eXq0l|ax61Nh?տaLNO_Gݵ˞dH[Uĉ/_ܫȴB7NΉ\"9=JUZݥ5[5[|޻v}[Oa2j.)8RiO &$XT]ZbV3`YAppi%NpT-/ɾ껳7 E$qmBQ$ EINg(0^/k}Q8erbiP[+.Fxnn9)[PəB*3$R l*xa.cxٳi([M 8f_ ;<E|osh$h80mf&S3[|D*[C,+Ay.k so>{G|֙zoZ& Ӊ3 o>=f؈ ),QdX-*v$T!)RR.;#;Z(&))B$H b,f~zͼy3 ,ɒ}bao{RR<G{S +vD_!GT|4,V7֬q*5 {쾫'2:|ϞCB`X{v4cա`h7 ,Zo$HԖ|/QE[~[BhZ_u$ L|e٭v'#\ϋM+is?\|<=ߋh!L:9W0LkaK  Q٥-Mf۲oUGgeyJxAp=o~=_o!DZ,vjy}jv9ӲnU*r]`C pou~05«GẇCBeݳݴbet7 TJΤx% };wl(JxIRsBΫGJ5kƑutʚTr1- xNNuy"1 X_Bq0$L'%״Lz֍ڟpT^*yc?0lu=V9B>v;;X*EiYG?% RUvaa~ZAM㗾iPTzޱS~ęxc|Tk|ȱ9ێ34з `vbdI\7P|?-Ld.eR77!wώjZcM`o|se鉩U,dR<7M+n/"B2O 5Zn@,Cm27f7l/*wܺ4uS?8_,Oݘ}HQd:)oߺ:o n~Xd2peRoަ(cIp\'HTUmaBuTI#1,x. L<t?1ғM `n/\!C[{Bb1N>xL~Јs,xy|wgsæàV7L\DZLR JڊwC@ep/73ISSa3r~=`5_zёuӳ a<7۳ithd?!am8mG-ϥU6+ƭ˲tb:XZ(Vf-O捣HX&`X54 3o@A n޶C۫N_vá` ${ F93_8e F˲kͶٛ泩PhھyXE \$Ⅲ`zsl|R7E?AjYFT2! ۆiuTMI8 *"BHQW/}۷$I}=Çlv]ea¿ >W&4G}tzZob:`ûLR]r KQuo@sdbg঑B>%c&)$!q~|o8zXf `O޻GKP:yRَ/}=ѡ"ˤz2\:I糩ߌOFUU<>=M!CSTbe&b.]MWf^L$P$qſ 4݈2}W~"L )%vKQ$D% v2mqn~M.+Y؎;'k_{vu}<ϱ!]8ؕk''ox7[~}`CSTRD+4 (U;т@x~aٔG{GmɭKCصo򛍖wE8XΗV,8 = ,0R#$S ILL14mZ9My0g?wx(dfuB9!uvGD}rbe^Ͷb'~e{{n_?4? jWkRX)}1,x '\UoQ(e|jZv[.MLߘ/7R44CSEBq5:Ңd;34 ZK3,[Pu}=_{|y]nϤMoUjWä, 2I5G$ô/0 qd0N #Fb]0 eݱW~o.g._[Ze(p@\:u ZJ0vY@BAumu]\ܪZ'P|1$%Qhs}ӲldOcp{Scopqp]o|r|eaZڝJ=ȁr,M'G6 )Y۶#NLE@oMSh՛mE3 |ft?N^VAlYeĤg| uЪ!dَZ,!Q 6h@dI%UxWo)ە pd".x AQ$Dz6?|v KZ#^@RTӴ@`Y W~/=,4Ch) Q0hikxc,)yvT}TS:Wc7_}ZkJR:d2 %H̃ CbX<mBiRXcǵ  r[8{ѡB:% slT)']<sE^vc~l||Ruwx׶Q-LnAD4Z w0BPՌ~81eA4&ٛK3#Ci<"WfHfB'_g. l;9o綡B\3jg_;C|XYcV}!t住~pJ7L< wK2)eh"iZDžwn\Ѧ)/KAݟ.PI'Ӳ%c8m~6-;$9_w3}Sx'R|LRm$H[Q}HoO_gQO6M'3$ l+0kp,3b*ZW #f?WՍZuw Vԯŋg/^($$v܅R0\8>yq|/  HD^NH,CIST$o QNq+p01=[kAwk4EC_|l* gf|ɅRQ9ڳgS;uے≳wl0PGR^B L!כ. u펢ꑣ[Bky aZi醩a.fץHT/iFKiUMW$a0,xO ,cvm8ڎQN Hbx0f[l0vm]Wy0b++U !}wm 'gB]>! (㓳seE=96L rTXkFC2Ijv{yeۥZC3(×ߵ`َ *op׏N.t7- ܁=?=_~շ^{By)JaKOEP9vj?`J] C7c @hqf[> eS P]IDATsZꆦafi)RiufKi)jkP}'g&g(3_[ܢaE3vudS)*h@ V[0<jv;r$ EY IfS;HPB.b,GAp"ߵO@o*vN{u%ݴ{l:! [IJò:Qk˗8siʵFYu+o1 3,x7^yNێc;㸶 <+^cX˵OF } )Y:|po_ON9?ziW Iׯ/3W&g]\&/GZ9 '$`PؓI?wnU:fX]/VA6ڝ4 vG7-;P5J/l0ܗ 1Y_kg |6=ЛTCe ax?_;34{t}h;;1ufbv2s$,nwZ]6ngJF˴OL"`~PkX7mbAOPu¹ިBEe˧/N4ZJ!y=}=9I?E&)gͲǴmM7}mTTa \ܕkO+]$DҮjRTSܗJ"ϱL2!==r. oJ8 OM7Z6ȇ1`_+O= Rrq]M7D>Zmv=oTԛg.^eh64,0mӲCG-x7UF?Z ǹe82ì}?:5 wXGӷy]@A?Z:HK:ɲM7[0  YD j;Qs3锜LL~q\ݏ֚+4EȠ BVu9q2,DnZΨ扳B>J C ՓK/e LH EuL6.iò5+'tRgR}ye~@)) k7ScL:5_2IITԖڎ>t7`dɄ$ dptnU3K'qcEO@/Ft=ʴ5F+4 $Isb24A14mp:gSB@tdBeRY\먺n.Uʤe)!J(YZB gx^R;3r\Ro֚mA9`0?aKɒM V+2E$Ļ۪V5'$D.TkF0ZSY-܆A@i;e;I ٛ,Ͷaٞ!پyˆaB'\R~-Rsˆ[G r\u=IIİu^oe$`n^;uM6L\o#KqzR%P}w=a0϶,L,R?BdZ &o&`_pAKA])D@7FS %P(m|fD>\:% ϲ<džkbw?֫o]}~|pz_ $xˤd 8[5[g oiHZHBD!u4CR:)SUMQ(EQdȦdahm;e뺩hzR6=wҵ&拕;7g OW$FXj+m$SI)thz\:Xt8,$+ߚn(D?\:Iihv=OӍzK)V jf5 w@Hr|\7m',ėl+\B-EUu#I2Pʨ'v\E-۹}^/ymqWhz< ) 4n̕R1Xy乎%*nJ`0O?2 yX0 `0 `0 `0 `0 `0 `0 `0 `0 `0) 絫qIENDB`ftgl-2.1.3~rc5/docs/images/metrics.svg0000644000175000017500000004121011006346176014570 00000000000000 image/svg+xml g Glyph Metrics xMax xMin bearingX bearingY origin advance height width yMax yMin baseline ftgl-2.1.3~rc5/docs/images/logo.png0000644000175000017500000012316611011547675014065 00000000000000PNG  IHDRMyh CiCCPICC profilexڝSwX>eVBl"#Ya@Ņ VHUĂ H(gAZU\8ܧ}zy&j9R<:OHɽH gyx~t?op.$P&W " R.TSd ly|B" I>ةآ(G$@`UR,@".Y2GvX@`B, 8C L0ҿ_pH˕͗K3w!lBa)f "#HL 8?flŢko">!N_puk[Vh]3 Z zy8@P< %b0>3o~@zq@qanvRB1n#Dž)4\,XP"MyRD!ɕ2 w ONl~Xv@~- g42y@+͗\LD*A aD@ $<B AT:18 \p` Aa!:b""aH4 Q"rBj]H#-r9\@ 2G1Qu@Ơst4]k=Kut}c1fa\E`X&cX5V5cX7va$^lGXLXC%#W 1'"O%zxb:XF&!!%^'_H$ɒN !%2I IkHH-S>iL&m O:ňL $RJ5e?2BQͩ:ZImvP/S4u%͛Cˤ-Кigih/t ݃EЗkw Hb(k{/LӗT02goUX**|:V~TUsU?y TU^V}FUP թU6RwRPQ__c FHTc!2eXBrV,kMb[Lvv/{LSCsfffqƱ9ٜJ! {--?-jf~7zھbrup@,:m:u 6Qu>cy Gm7046l18c̐ckihhI'&g5x>fob4ekVyVV׬I\,mWlPW :˶vm))Sn1 9a%m;t;|rtuvlp4éĩWggs5KvSmnz˕ҵܭm=}M.]=AXq㝧/^v^Y^O&0m[{`:>=e>>z"=#~~~;yN`k5/ >B Yroc3g,Z0&L~oL̶Gli})*2.QStqt,֬Yg񏩌;jrvgjlRlc웸xEt$ =sl3Ttcܢ˞w|/9% pHYs  tIME e IDATxyU7sf=YeK2$[x0 P 4 tHCBBA: T*i0fr`dze[lɲ'N?ӳpRe x֭so~}k6^eG}Bc>hD ( ">.:B+L00㢴le#"ъtTP ` 0>}bPh(B@#a0tĬ9o!>4lS$yd2 qQsQ(k$s (zB?"VA W5(JjðR/3,#0aIhrIKs>}\dFA[d}\6ePar$4SAL ha\9 q_q*>!k G)`maEJOG3K2q. kaB""XeUc@&0Z=q5',憲|ЀZðVI XePaIh,V+Fl8i)K 8vrg qq:%Gj 9,aZYC33ܯEj9@-ozM3$0&ð( U*g`13\""G9q#y9G|01EKh@a8E>&:*A +[N-BŌ.>4 #E36|apgE"0F;jpCN9f{ʂ`U 8좉3&Pld042U&$+E%+?f6f@L/eXJT+ze ?Vs hDB%H錈x=PpBm= -'j;ua'5m ,cZCesYI\1Cq'e|  }|)VV=scE]J-~;/o;?vXxm %:cZ7 2\|Yrd{c;fIY4:>ΌזHijWv'l1GTITS9#`D~$JVa`9c(t'^">tvf ޤ9 Ul W-w֢n{6W!v't'pa\ XW(-4>V+ }IC' PY N_Fh3SUQ˸#rcJnY| :ީjX|j`ƫLQkaS K/X~S@itC'SŖ%+hu,녵s췫89CEh !PEʢ ffdX%N6ج~K3|᡺ӿo8Cv˜DlLms̨ *vm'r된tܲ}wIx4yډujt+UhC'o=^٥FC*E >At$+$$вJ1oU旰x63S|Vsw~˗q CX=tx X1B{nuؿ?|Q"_g>9aqhשҸQPyWś/y\}BT %PmdP)aN>{/]B+mff?~מ=0Ta0VgN€svʘTj @qL|-W#|ssUc.t ڣQwuwo9{_No'}lh?go[P{{0|?\;}zl@jq&͆?^聐H)(Wz+Rɒ i`ٲ@9PlE>+Q}z\|QQRץV=s聳N5qochK/}9>֖c167ZL*y m.Bv Үn xID|E!#pV.{kED#:!A.DFKhL5bĶ\X̔9υM}Bu MK6V WԁNa}0[tG_ZR+6jr9e'u@!A] )R|x ^m8S8*/ymQR00$ť#F(hJj&}wQwǕcY`R3nf uG_kܔ s፫|YR$Y/gvO̻jT-B$8=`HatVR1eUUcv3hD#5gX;;vm8[ꝚxYz" echZq#&"3_uU*pVc蠸PЎ)( ӹE5ݧk~h]9՜]~O+{ꂤT,`P [^WOU\s"BDH޴{f_bd\1)ϷΜ>qodˑSg-ٓ~0r}d?ア>8\qc6ݧw8 bH*rlJZ3HAeZHB<1GsM)(Pd'oʁZX174|&(17gw|>wIX484QDŽ)uw3ZOW0I])̺ݼ쬕(r2p+4*y쓅'0ۛcn.OKud{R.A WΟޙ?b3@1 0")F7{W5!Af#p7M_% j0D唚2}fH#aO|ԧN5:ݱ$!+9ۙW}Gg/aVwzoΩyS- 89Qw{Ô4:wz.ػz_0;,Bi6PfS΃B@11bƂuհR!RN=5ۏ_6syu1-gN8C]M COVM07t@ćCyBS|rxʜ*c\ߕ$6 \,n9 絸>16j*^);%ʮ &7r[IU$a# )7|WW!:o1n]g$"U5bȢtIU`6.4hdz+?5XEen_M/S}/RB'"t {w+OVй+߸|ƅG_28?Wn[FCDxgj H9QT)B EQ{ccLNXU#ixy#7<# &?w98kr5N d;{]ҡ2{ =iw) UCU*Ln'5I]B3K )0l"hg=)H`8;4bX~7諞 hFdEn\?못Pf&zdQ*:7JXDa0sLSxjC3˴#$bbր0Pk .!SCCZ(N@8nkRu\lK8v[@ Աˡ ՅD`H.$;Vr=(28֏(@%os:#O{?Wg\g# 'fK!TR,l&D^ jhnqiUD1hbefHA(!HU+&WFU/I!:taR(ɋ f\uԜ'tSP-]ߠ+&r!I_oYwwWkDc hJUR-hҔ[n|uzJNwp3xGg3SG==9|:x'ЏBWODB:}+ڤfM}L-)b?ur_ؙR'Aaj@p+rQc'bD= 0sn_~w>Y51V"3oē/mN)ya1 ll/x0`P#Bh"%ǰ>)N'lLɭff`1a:OF4jİd\E"s%B0ȡ@` U#Gp~+~ςiP 7m=+9]Ws5Ƨ{"C<<ll3nϺ+/GA{y C۸?5%ff˃^!9@V2'2:vhHʐK2C* 0`BDSPE"F`TU\ gRfn2 V3}׉O}.č!8J)93+033"YAs *L`Z/۩d /(8n=@-wPxdjBgm[Tp9Z嶟Q\ lzbw<8mhfNpoN75 LCXim"Hm&!2'o{?B& 9sWԙ_BOTqt~ N<@VEfF~5D@h``FԐ1IvIGUskP7~Z1VUs^ cT"09JAL.qf ߴ (y+1Upq8ϡm *jQfq>yȒw6x4K ajN Y Y:1^q2 ~vs/ %Kul='JTVAVr0FD49'ZJbD4kѣgF:MMӈT 3;%@@0C"Rh1]r.D+y󞉈 P  IDATTPYݦG9ZFqrIdLJ6Z<O-ҧPuF-" "a)%f#&9pނ%[ }~T?;dln;<^A1phj{@qLie4 @[ @ϵC`v;b9g x".AVK aWN{tNGB+H`JḊڐ xՁC9KJ Uznd`Kc%_hbHhT܂MxA^\kъȻTӒTF+g\r”j=?Zk h#]Q;=Y*eG?y8l/B'+٢PPDI \==rtm&s("";$8Mu)3 Y *+c %ކ(.SmLrk-0uѩ "tH @7llqĦJkWlJQm;ЫrW,23:,d4djaHӥ˃ j=(2( [qLJj]tݴz}n!"`lKfa2NL Є WYUcHD?s?oU)LhP6uW>盐$13AJ̆jcsǝŏPak1GJlꁂ+ ErZdCi7p؉E?6.jfmƍiT rQ@D%`bU:&j0L[.vMII`UvY#gBPF{g GjdM"j!IeT#A\!EOAX18[vT_iAK ]y=#B^BKE4a[$58 LJXƴ- !07 扑q޴ebP5Y=Ic릔R4‚5,h`DGLT@!^6Qu΁jPϦi.`JE9䗝~GWCO/p3ѼiEt^b ?$hJ23A42P@U O1%C*E) :)[*Q]mC)R,#D|Ɣas{ٳg_|k_\7۔2afB2Q+`s~޸͡7Cqn2iCo|c;[,i')MṮ*jZ)012п!yX}F>ʊ cF`\Z$*k?GV^4ޣ8 FbESs3_ٸw'>w_Ybw^+zYUW@ED >v\h\(jaLJ2,m"Ƹ, .'''#vN _̛}͵O;W| [1uO#~'#$q7r~?x@?~g}6~-W7e>7q\]-ޱKs=a %r(`fj~n*y6morJU>f'~*N1DGf|7xoWAќwc@rQG d5z%sH(?hMbFY]\DSF43S f΢>vTGEF5#{5e4rLL ʅ]R[:#@dh)<dHEcdXa/u?y/+.9~ x{ݷrI@IbH+4$Uj!"3 *VH^.}ڳ~M=#Evwa뫍8V`HH `h"Ս+zN$.{^ɭ??m ^WՒ@9@Ϊk'GGwpԗX h&TCd$ͅH4zTDTt5z]['/!!!ҹ:Z=jM`K)U lr3[;b䪒! q4Mk]Vhxw5rݸIeȆ.9)5CX,U բ&AJ=L뮾y_Z@jd@?w[vU9Zkqݷ_jiH$#XرCJة8L%1LlD,D끞{sVC]uUש{={sL\C3~Zc"zstnAZ5Tj~/N/}dlBMGx{Y 1aSU5K^q Eax%38Hg\ju3MKwMs<,W;w캟8~jA;(93,ݼ L]MXkQ,"nBDVJ ~G<0!K!pX VG"ZsghBjUz1;C+߇p* M\/iڻ+IGe4u c]GѪwʴ]K,Z4;;ddd,L榪fs7i8uCplYx [—(F@0t #r/rQAHTxI~??g?ϥÖ.rگ}H 5 B [v r`w׺L#GGa6Iu])/+!@ཟ΍PrB\s,:lO/"B5 (M{n 3bRkjWzgW;aWU=}M/} RBr y`NILB#=tt+D̦BR(Mܫ~~gI7Wmhy6~8sdz =|ez.]pМ)A@Fufk5'x`k ZZ_?>-jxt1EEв|_~,hs&FڻkqDr͉HӚU4D!%=yOB>woGΌR N1FK!s[fo;w#` wl(`V=?nc LuK&0Ye:8q~|Srp}/ }_NUj/O<AQ 16MSk(a>cH0^1M5&fuRip'&ү$⦋fQ*,#M/u3p;i4Q:?go9DUȁJUqb1:԰2iʚݏ0t(WZy^{w($A^  ž8+4h/ybZ#'6%7iDwJ D!(7wGĴԚhY5iF,JDZ"}Wla kYjklϞ?wd O`}tXrQpnΟ͏xSbNUUB4lcMoDJk06}BpV2\FMIP~zy7W[MK)vfWoc"XΞ}v{{ BsH\kffK)#PKW̋i&l~`-8e);;ND.Cnww`LDTLLE e4&둸UT92TrW?5[y \.~~{l$w{$0ssAQ 8 AܳN .GMء "BR3bR@?Koڢ>sB 0 V'mZ'Oqk'>7VHtvu50D$H QDHVE!Rs)Tb Uj-/Gool;\+BE#cM7#BkRʐmgQcP&'Tkb/9y_yM\cuPCܴ F! \f3 @$3f^ӧN/L7 M|U85͹cf59i$#AR(Ņ{M~ٷ ŢĪIDx;˲HYCy[^IUPX`r\([Uܺ~> զ薣__xx"K[qF16!H`(N!t]7$p;@w\pn|L"+ .FlZz7M${RM+Bs~k~)LGSciR8SO/}(7u#G66666֧t<9ٶJlz2SK'(V "{k ZnI>UgQWhJ9I_&*(s깘]g0rKœd+v7M(d#x-|pȮDIV0:!`溢a2Z0VfIpČ>iGϵMWߗ't'-Q'B"MP[{\=p2+~{9' fvSRuF#-QXIݘ8m۟?=_}KO?v>5@(Db"1:!xTb!cz=r0؅j3]#N}W \+4d1P"B A-}N*g&3جVqsmM&9H@fS,9䥳mZx|o;>Lx ']`9;VA#ħ;d08M]sZynKq&GU_nekwoyn<8giϷ, KGv&hVgȲSfbPa| &, ︵{S _yxB ;!P4I =7-Ծ "ÜfQTjڭO|tv7nV EΛS>ӆ'aס[O$[$S "Aex#`-Z`vZi?zXj7)mt V3ݠԆ42" ̜xMܣv.@99 }uK8  U^K_wo~d7ztxg%߹[f䝊%ϛq+r3b.X`%C* "rd,N9fM,}bVJ!>_b쫾o=jpf9 Po}_>&v!=/؛W~vf3sL,h4ngvxkKi6!QV J&?u Qeܽ%.U; +QܢKK)(\[N4^-&֞xJ0#fm_&WP*Z 0Az`i1rEUjI8E"3/h;A!>of}6z&$BaFA aҡ<'qQoFyOHHjfcb ȉMڅ/0ݠQxScvmԠTFY]wc:P{ՕrĬz@sjb#4ːw(蚶q=PL̋{(l{CV6f@Y>7![~MFaݭ.v6cYBͣGIB8D1c^UBҬ1FfNaip2ͣ Tm%=AUc#jzj$饔5wU zGsLYm4^+eo⨪y8W%wϽ.fGG4ZGh&@ad} f,BLjD"xi"f 2럜Ofh P [dMҷKװoGW4Qb^XU>sadp0BPƆT1)̕C`!+z99V+/ﭫ#]R\a&1|ۿe6n16ZJa]9V岤QOU%v3+gxҴ~_&qqڀѫ8.o =bWϻ6x7r̫ %ˏ"q(,T ں}_zy1BL6{>  SۚstU} LL0cox׺B/8d7M΍z^^ _~*c "җ""MJuFZ a?pt;nH8\:+3i fӵvL9H:H$7ڌ ܃K~B~ݏ6V *?/8B%\+K]'/mRC5O% 9RBlH}nl@7#fUuW9$Voyٹxpm9&q׮_F+$=xX58!!H3 r)ō$~v^•8؈ߚAϪY[$,aȆQ۶.RI~Ig8!A"q02N2>(NN"DwΞrtBwsj sfgrhJ HWAKE*=/Q$1\[5c%֍Yd13G;h1F ؉\A~yi"b%kh3NRx3h:nFUgо&B$Z}N7<% *])[?$_<#J]ia֌0[ؔK)Yž 24Ts;ͬ:p?ORyU~bW֖ݷ7$:%1JUC]#gY\_vޫ8E5.i[gFPed . 5aCɣVlg1aI -c<+,dc%J B0BKgySEMsvD{UCL R jոĤT~c\F}f93[E8RB`l{@%!hh{!$ F^y͗* "փA ^q,A'z+0#\:_|'B7]4YP]I&kj8j1cbM.5 ;HP UuWZ%$@&0B}Z^@af5TsLTtӅo~UWV ZjP1Tm^,^՛gK|Q}z: 䈡yQ ռHcL6nR$Ak% ^{IJTvww~W.~mlY>!ԙ9BY됒U/uafDC'>dVz,N0aռ>z[^dA\=jAV"eҐ13*_M!K)[.7?۲/P#5"&?wph=6%-f.i!SdtrL dcS`Pj^鐆RJ۶n [1'ɚ,D0r3+A(3;2=u:SH/0YfuAΠRJbgЁg2JfTB̀W_`L!/(0$o?ykkʠBƥSpC~&U˸tG< R-w UGQUF0ZUC(agfN).xrtle9T[6Բ 5_re.·9$['OJ) XDY\bKϊАz؇̵Z0P/]sADI s)誊c\LD,(uܽ{z56Up(WIqLS誧w0؋6meP^ؓG2)|Kca%n}lGŔ8b 6+a /hR @R) Kp EE^87׮TcP^B!aX|%s_eDu1=4ӸpשUJ6orH7]{Y*&dﻣ\Z81_hшc9|Ir*rU(UФ snL4 ~nv$XUK8Ԏ(1=sw̸!,8f]#xy@fd}"73K@ ZU+BUsrQ΋W2 j!r^85ZEb:yo5ΡüZ+ pڶ'b_1 qq*$ZT}:o4S⒰ Ok D*A Dnvo!D5òR1c3mp(!ȭ\~@bf$IEy5Ƙv;}L/7mBN+ +Hh56Q{HDX̙κzV;؆DBpPN$N$;uM;&e10* ֬ lI((_|;|=4Zϑc%Ko-.b(nkX@qe,f3Wxc߮PRBjUWR^y|2(Hʋ\.nbV[I &˲Vj8z3[;߸w1[oR wPΙCMNM֘`X8Kd%kiy| xGZTKu"j%g" )\Qw3{['}쌃2G]P7# H~yۍUy?eBSX5aևw1Ϝ>t>08kQUu!f"w3@@FD$!AoOfX,Vr+z֔%s` ]{lWϋƍ'N,nbZϒtv+_׷D9 42UF5Iл 8U vMҤXffA!Ķ^F{z VqP\$s]k8/̬ X55ec}5~])6rk;싪jUKBn 耎+ ҽN+@C __4&\8wvO"=p|f4]gU+/';_;?i`.bYڒsH"<լ bڻ?zχc:QZK)vFiAe؝[^Wk۾bCY9= dLy{ Lf wq񾛅&A[4' TodhۣUP A!jо۾S:_ܟwe@D~??ه[c =>& m Dhf9L;[Lfb:j04A㸆GcGdž 7HYD)kmj5RZ SQᐚ{XFdUhJ X7#t;a8 ^Y0L"7z#%Ze jVk&ˬ뺦r.cOWpWxKj9qb+HܜcTNO/^{z{m5iM7\k(8UE&`/ dLAV!Qw!Z-bnf3HLf]էErGWOaʼ.XFͩ2kdVkZ k&lQ;16mBaU&p9D!+E8!ns;pJ~KxrֱO ͆w%S R`SiJsCtqĂ;"˱,Σ&63¥nҖ ^hfc`ؗN 4g^#X5d~7Bar*dfym#.ޓmlnƃ=aC\Ы!59U5W^dA䆕)!Ljf{߻n3`0Wnj#,^%ZJ(ye4"F֍U:;q[ !3%#1증 _J z_hS%ljѸ7ߢ/M7__`^XS wZ$F@$7tSLҷ^'#!ޏCٳgwvvW]jQ-Dm;)2`_>zu76KGz^mhbVs"e\5wZrR%hvr w?v؏_|=Zjf,ygx+J @`{v7B^\ؘ~s ' VBNXIݨ"m_S/+]j <")LHn Ԙ3MB8Le v*533YfڴAhO{͑_6r P#a10XVCV;V[Az7-tG) _2W4SL%d2UuX_vwv2#'oG1h5?|GU/EP+9{ߣ֏:rr%L3 G'}Al |Á[G{cã#^,F6AU hcy3SϷtedБ'UuuC#1Y]Dr '" ݡf$qϋ i]OAJΣR˯݇!w=}oCUB5>ַO]{>bF )_" IDATXkmO哟~c8BF_P/gT~w}=LT2P+Ûjr_*V;9;o}-ʖHl~|C~ OCHC9vu~<&&ZI+CN R;.>>ß];yV.Exh:v5S8i-6m秽d%4Tz_b;ώQaۏlՌ);T1Ĵs)D" AVt(4NS_:?R=}x/ ??׈ wb!Vf!+;O}) seqF/?DNdX+8Ƈ:O|z$yԴ,gKsI)Rh4tMg'&|'|;gޞ4KtqiyXO>/g.>!(мϓ7|}ESYuglU%~ u7_]]!ɒ-r6Ljh<3<0MMz&w4iAI,ٲdZJ7~9 {Q ,~ /p~կη={Z~0\;rW (A$[]l5 T3i?ͻ,<'Ez֛jѨJo.7LS:Ɏ`-WlO [.Ԑ r2=r> 1:+ƸF![ q."JiY8ьGي18ƣca10m "P0m??C~黏mzi}53F []]eTҎ+؀ &+2ŝܯb TY$Ƙ9SG0kqfw~>l;~kB2PPBˍ-$/~g}ZP$K"rnjpX$0hXSΦ_<㺫:ݙ[ヲ @~sk<TMh% 5 "9eǝ\b M훾}Ƒ֠%BM٩o ?6g¨FJhA^۳XkRZ$DXvuE|K1sLf9G$n4+o<ZDܕLd` #=O*،?|#y:R&'ͯL~W<⸛x}7И9r Ȋ <[EI @P`%pQ1F;R+ KbNMbͯ.F1EEXBʬ|qSU%r@ "p]sՑGy1(s" ת%t + H,mr0D"E,B^n|A9btŁ#|sa2/8bkkuƣ hAJiR[%)bU P&w~rs 몰,@v@ST aQ3klSj5pAO# hYBQKqReaƀ#b͕9lLK#C'hxRK ǯ>|wǵ0r]' D(-YSCCk2 ݿ_|>CfVk8]Se~Ǚ]u5*P.AXQ" EjP ϕ|]h7f@(_wn@bzǻ헯D;'9_2k~^OC_5r I<@kV):ue3`G9%O`3`V(KЪ`P. )4(l{k5Lm7_q(TNBfBE:}4ɠN/j'jVԂ5yE̽`$S@||yVo2rgQyK4 *796usbq6I_O6M\k#jXSc`۝q>VFc4s͆$%k]n ٝ3d'ZG>27u/3PIJXՍ[U(|ɿoL\}޽rūWԒ?Z;fkH@WtJоm9cnknZ/`D (AK|"l?VSkvn?9;XwF #,%d t]w[.ɡ !岷"Z@Dr˄I%M`׶|]}{o~JbTP3_ r8rHLq1,0' [̳ $⛞?6l7Ew'ʀ?:|s3+ϵp"Ò{Jѐ|Q0CN6϶6Ο_ti"|mlav17wnaK^EuGEvTgN7HpYҵb^"USSqZjᨋyg&'5;0Q)Y@ \25t.X b8[gO` [uUTVʼn{⚣%P]VhYђ!Q]~jXQDk*Nb(ĐҼK6cW;'k&׿71#L8\s6)Υd]{o6)LOy}6/ %W>^\~P"}{jig9ʼn1/ eq>(b٠$+ f@)FL&> !\3n!yv1v!h^ dЇhSsUxq XqPb>UAUh !TSko~oE_t_V>uT:\I<ZX”*Yۅ8(|ɠ^z2YRD+8agxoso}?>{/+1Sr,\-{ۯ9]W4cDUAUcL/eQ"QD*s k-3t8d)TD#/ Afd jOc1>r빻]={ZoٞMN%<7@>p5&3*v+ouzdyw?ᚢX, 53U;jTQ `NB4Riڀ-vRb._AZbOfQk,ZK9’S*$F*7AQ\(e^~8IbRv?8?^zU +J%R\0 E#UpC !C=r#HHC$#-MƸ>  bSm,zt< Kg(#Yc1[Vã:["ds$PFWF1*ݵirCKA(@5NQ jX>g^+ΐA qZSDFާJI &N}a"F5q?K//9ƒ9 `ɓ'`*xA̧ŅWO7aو YbN'%/T`%m}d` *ؼ Ow>4jfJ=kZsFz& k^(^^n1 āgW19n2^u0\Su tq} >zdEj- Qa4*j)A5=iz#ǡ#Rjl 21-6,ҬU6UYs?荩hge8J} (T^$* Zv WH9&rDpU"3u j+N-526b4BJĀ}{K4X\.7\п~#>`FPfd!oy[$EEzGqЇ,%Pe#k&rsv% Qߵ+ ,9>o}a_}?*/|yrV!.XH@*Е{q& ~7`E)v,AuQs κyZ`7?fM u(bo kh GhC tE0&@@ʠlЈBJ2 bHDK) u N()"b*Ae=コcQ$QŎ=6꯻w}3tu3LvN]vt旟qQY.v88w݇>4& vDž+Db\>e.T8Aťkhs!6ڤZ Q:ΛW]y_VRݧi^ЃFXüC5!W{(Vɖ:ZE-ZE N^"ZW۶vI,}v ||l[Q',KmC. ZDdsJJ] 7/ʫ韼he'FD -]@93?jR@#"B׆O9 mt/KuQ͌Pn܁+ !|lwX5;;šjރj0\M ;lGu%(|Sj2nm!8`X*R4K*P+}vKZ)az(~Pg2#Ɨ~WOwMMs>x0Mv=j )]_GK0NVY#cL .PI0)T @I\9ʣ?!sZZl!$"?ѻ^pSf*@ f@uu1g tx3j˹f3t#4z٧X4]3v Qu*HIDAT)#[uNXxw@7un/<>^{+S _=˽"#;)&**j @X)%$RQ/-2O$A7#@(3[i銴`YcZ'ބ=Ӟ+n> |~)6uN#H?ZcL H¨`rLC+o_d4eN47JM+lS P׭^>%Ϸ}o?n_qTw4%uycı?su%ra55) 䤷K肪T$-%RC[߮/^}}}3d80jyR6{2#u;Y&ɦPD p1́Sm1V$3Q5FP(.Z'Np]i_8(jgVk OV}m$Ukmŏ]oQ,kk8_FI/);R5_ڀYhN.ĕEJOgY%+̼U3:X&k}VLgТH;ު tC J /leM c;4\êv\p1Jf~^Sto*U$2ra Z]yugιsabupdsx_ZUkL&`18525~n|35 [#+fBi >M68-K][uXоCpQX\ Dr)㢜)uo|n|8]ޫ/}}0&n+WJƜ ڱb TAüDo ؔ}o9yލ;pRaJ8忻Ph2Y3mYR2ËCUِZ$ H+2jT6O8_J@u[R3|;e_318~m-7M?XQ*Tr`"KCSyRH*C}fnbh<7ɪqK!XV]}p1 gu(Տ`_eByX#+„j{WnEIDEA2`')RiqX%Fx\e|z ʹnqR(.#%PD'l0ֱ=_7r޹:co{o~bix_QfUn1(זRK^zpʹԧM95]W=S_\b 7/<#R)C:Dh2\0 VY Р6Gjo:}}ێE*lG+o:U_ϥǼF$J)`=FD*zg}f:~?m勯[^=Ӣ߽zڷ|47b6㩡ͪS=UB3[wcy#陶B+Rףf]w&/R;뉸[,aTCNʹw صmh%JR.R3V )F?-sir]<]5`椕BOf>22cPg6S欹[nFȣ}2 WhO-71QaIܙlt}ڼZ@(]py9.~~ywEgF~+g~(߱;,.;1uu=Dv-Y#R>Z0m4l}mLGd 4U`FU0n.t.Vسu(p`H,"cR+bsC lO>3yIŴe x`*X&立j".-,撋L/86O6Gw1m@6t: L{ ldQyN;(RoRQso蚲© Q_,b #b<#uFV'KBa$E [X,-q•[ʝ*v+?DY`eʜ>Gi>_\=ySܹc+1$7n,eԮy`R=eeԈ 53ȕc>ɀ@vaiENj]\t(O(XȂ f@Δ7 НqMVMPjWf'.m®TgPHIPE*e#DIsc[8erz: Rb=uj=pB d j KaZkld&|o=/S4gŇ)rY513 _7ôo:-q1k(G`Pr0]zX0- X5FPPB ,PaBR/ ,|Aʴ87~bcYJӉM=PzHOl2 -= (,xSȚKc+(0vT[Spa P&D|v)Bb=-8Zނ[V U7L嶏+ZC2Ɗ32) a\Wq iYMwB璋S8gVw=ʙu(QK{2e{}av /]nMg7y[ҙ?'WO}g 'n2 @cZt{瞓&(MTTZPdx0J7tQFHfzٙQ9=wY62>qh/ATʏ}[6"qx^{Zsu!>~ϝ r|4]-ߵ1xp՞A.P9(""V`!.챖Kd-> I|њm>3߳HYw]e'K_/ekolbD6b ^՚y$ű̴mdOCX;,(LE nJ-ĦWѩ--hb)?⓰礊Ov<<>7=[Nj^捰f:.@ #Y)4Q% ^l#eWy<-g )9fE [̵>`򹏺0.M!~hkˬWȒ|eaڥ8{mSCVuGەfu0\ TNlUJ=Ls/ ?,f6Ay{xL)7׾@cvee.ix(thշktѹC(yd:ӮJ\HxkM %⹥b2"L18@ X!`|V7Xp_=nzmy:+Zwv& Xb[gEa}a{dE_ٴ;߿s+#(O@t1T7.:k ^Qp!=:4A[5F *F mY+qe7N̈Va`pbkzpY?lL~bJТ'Mcn;X8=gD^Icv(h7aJmeS/K1+2ؒ nCn2xQpֈb׻:SyJkauSza4H)FҘSeJN2p_Tih "BզJ| B>`&K)ovfڙA] b~;w{͋lGD jFD> _}ny~pnbQhaH=VGI[j{[>G/Uu^ۯh,(/qk/bMB ؆VQ/ 'CC&H{{8ʢ' { sNUR^mIPb )lP t/g< |~ۍE3.tں),QK0cp6vJp{Rׇm^5XAeO~tO!C's;YDԫp0p: ...ɶNcM }.0bs.nSd&;4SbjGiOnh@hU}|&>zMxYTURMr&wQMŭP7 >G{}g}뤉 {=+}(j4zuIګP=m~r肥o :h.jO`'QJMڜuDV/4_lxC/\QwSڱ%cyߍ`dJ1NMۘt5bzߐGlo<`5::[D1`AUIJ,l*:H[| jhyt-E.M5y8ޢluF4qnr ]ުy񚜒i~/}f fJ)K$TjEDrЌLCOI֍{U5igfseT{0v UiJ=(Έ&-իh bY7ztLગ2o#Q%,Ez]{O[W_.1C2-\~AD׏I7])` M"Z[׹vRuqZvEw!y=_rc…\m1hӎ(QDOSc\x<7ZDVBܝKd{ x-§O.x}Px 'G_\=&Cցa׉K>X 2 lͦ=i^re{2Sǔ* l'Rx0VjэD +EpRkiHSeL EQQdxXoZ^L`8n#*I[7W/\77uj`0TV D%9.7X5@c51O.?vP_ox8Iv,hF`Sos[zȂ3wK7'NtU3</rmI#8 0{ "":k1 .s;d檩|>Qe!yW|鿻=s_YoU+V1H8<[e:d?;?}.}sـTVWG D~Y9x2z`[US2hsãZx ˜hhf{_*"NN s.%GwTH|C O 9Jj: $.;܋>*o΋ן߸4Лb-&0E{Mz.)PcJeآLE xV^%h,s7< -Xlk_HЌp2\Fԯ٢gP8B:H5ίI2V[ʼnbFwmvy.9%.:Z_$`zEJ:qZ 6hE1Ή*ÊwhDAU Q*fyJ.#hI51I@ g[ yܠ/݉ӰXGFÈ33f %EU)@{ DE9o虙Tfzffzffzffzfzffzffzffzffzfzfg<. q2IENDB`ftgl-2.1.3~rc5/docs/images/metrics.png0000644000175000017500000004531311011417137014555 00000000000000PNG  IHDRnsBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org< IDATxwTeYX`C@lH(֠Qc 욈DM$آ)&5MEM,FTF bA >S>3{Λ{n9QUqC 8.q8p8.q qp8\ 88 q'q\ 888q @pqX8#"'R8mUrED}BU!NnWymU>)7|P<=yQDO'CE"pX {E0ӁmZ:)3\ T$$xX /.dhU}/VoD$Of˰zEtB "DdK*" ہN{gSg0CU? k7W"z#"&YIH SCEdh8`XGU}?vFD#Ed*"{b'"[&_D,Ƴ:N[<p>tHg`y08lL`|H}ip~<'"]lwX\ "D؈`t'CxCBkߤ#߿hR:x,"B〗RJi#|Q PգDDD)p .@)p| |= "7cÈ39O@D'28  <KBp,! | vVC U}'&ػ"lWU?ng |ZUH_3U" FcUui[7?PmgTuqVҭNϋFUQAkGoaSAtƄ;;?X`! ~ml ĵ Q}`Po щ|&gl~Omc顬׆]0lXC])l~])ցر B.۱K0߯ . Xo)~2*`=Uĵa?ְ R f4&:&V( |Q+׆/Edo1Ubq(uI ,iv;A -TU\xc#?T U= [O:&|'sM;`Gq A/0NUT7-GXc L3q:xe@:{I7Q &AU!l~ e0hqX]΄) k(g~†jԈ zVS?=I\#TEU\U ʐY"l$glTtڏiwpi͇ױݕS(Oθ@(!"ODoEK>5ld/bKjF)vQL3)['ĩeYKD`3t/PoY^^AvI4FkH9\Dw`EdhH<8 7p2$@FE%"6e׈ni)~J<#ScPzdRSblhXطa?lZp}'`r 6BxWkiuK]9۩Xcrx,lWq?3߈)Oli 6z柄< i/z `FK?CWG">SxJפKT3?MkiR|ӴClx/ i?-PD^鑛BéOLj).pNcfxa^'o8֩zS%nU!sSDi\{Σ.{%iЩ 4oy&}1)-c^b?#3W+shDxwFdH?\[I# \醆k XM!|["MXsxq!bb>[D^]#D!lXGiFR14Dڝ1A<#6P`ppt2 Z}Sl>_l)¦D2iTk t35.sTu,4GGꃉ{jn&^T+A+BDeXe""bI qm&EU*C"mgrLHƟ=4`S=5Ie";`S`l3f3横H 8ϚV/vLǦ!yUfI܈|pZ:dB$it_3z&mhaC>I!w NxY؜4LDTͩF-LDA)&Hg#zV=P<-"Ddo( T{-ERՓ;ڴBkG5xQx?&4:5Xi~TjAM5ovi)h,J VvEjODbk`RhE6e^!Z)2Hҭ@U |[Dȯn)#)^#Ѭ ʅ)| 4 (CͤN|!֋mns\_`+ELzSL+m;v=S9FҴ?:ltVSW>SP(>E3B䰷AUli7um[J#)qdq _`,Q3GUi2MW+l $Bx7' fHӚET 1&`H`P}TU_hMH-MR_cko4WX腍`iDiQgTuB飶/>ZFD6*>SLSz+/ 2GU(VHo$l|&LqQՏ=$`ZFoPSWwf "+f/aG;qH B ?"3ͯ(6W "bi&fqW34F6k҂ώ0%szOdqN}ok")z LLzz".ag9{빏3CbWHD}7ɪ"_hSGGlwH;u=f%L~m>6'(؆ppl"LlTD~LJ;))n4}CFbq~+GHf#񿉦s !X=C5vLũ<FYe5Mh%^}SI=7'/!!3'9U_8퓰83ޙ-.H7,]v-/<5i`U}8"z6FE7`60a4][hZxNU? ׷g [XO򦪮D@XCqk6.[c&Q`|@m:cobBrnsey+7wb޺Pq.Jy3p-{ݥ)6Wv,ゔ"FI.4]Kn!(T'}|4"=϶nTUNKk=Sanƴt8bu୷"Ml)dK~q[-^` rˁ5aȩL|P "[tZLӶذEQ=JZ1* |T!. DD.~2zh̹lvL2zJ)8-. @D6fHԩS1bӧOg뭷& Q9-f8SQa=V#FpaHDes !䉈9sзʆ(}]6h#.\k"*ѩf|E&LXEۗ V (rR8S!DD /PWk!4662x`͛E,SElE{zj3q WXGI!䈈p6+  iB96bZ90'd52vN;b&ŒrGi+\ ι@1cư>y}a̘1`&-rʍN2]Tz#Z."uClFqp"2 8/8t_|1555G<*  es{Aqc? 5?-\ט=#[xoba;fTJ=G =0U-95o-އ\/7"qCg0q׊j|p[ lj(ic;V6 P^U!6J!8N.DUҊh:[[U,6,EX*:MNcA1Yی<;kSl:`\S Á\aqwcy:4 8?FplD'fLqqd|`]Cea9'D?hGn/DKU  q:H/9| E$\qrB;nzE`gh`"&c }K"\L]wȥشS&pPD =9ՌHԘb-%E.m-,vMwly,Fcy3t2 J%vSq"] T^N5SFoѩf\ 88 !1Tx=8N@h'4#"CzD]]ݙm]r=z<dWjB;EDVkhh0uȑ:wܩe*:wiȑ644LJ]&)\ 3D7ƍwkV?vX_(1vXyǍwp}}cpJB;AUEDvihhxeȑZFN5+RLWjݺu[w>}|ɡm]rgϞ׏1S.V՛-Zt~]wN5!EI ‡tً/A[ܹĺ>쳣TuV q"!"fi)Rq5|Qqc ः}ף"<4KU%t?8C!8c=20s;X!Nq5#XC?8~=bP`^;|pNitztADjEd Ko(";Ă6 ![vD>}E"."[]Ed4jDs@pɝW G0`"i("[_!hF!&4 {!lm`p%FO~t`C?-Hh~[ L#/}4'$g \ ,X|;,O&olb"a+Ak#ԧ;5cӠ,M~Qzln" PC]-Љ{uхxb=:`l <)!}.U;v@ &.?`OE:;gX2r"KD."{a+fzPpGACCtmi>gc,T@B:(v|9q1ب!/F5iױӏdUc 5\Ð!C֬=h 1ÈX WiS"3'fFtXZXG/^a?C2*YAޥ~=٘J_Qr(j g̘3fjj8ں̀Xعi4 :$scy-ZA8(t6%4BTslO 6}^.NS544L?~b1~ K]WpuMCC}?pBSl`c~Ax=B>cC_a3iᱲL آrv)R+"r3urGҭ[z}܇ ߿-Z3vҡ/"Uu^ô&oLXX "Am \ȩ8D $ {W9U5iӮmUm]"R ܢMqdKfbG)#vk>\QD՝Y__) ꫯԩ _~WaHRԿ Ħ\])@H%hRIWh=VoQδEQ, iK:EED:HtBӲ0x[뭪kcj|Gal9U.Q՗TuV{#TBXP"C0π1}X2LK9.~_fH!p<00*q""o`U+(f_:'vDͤ Bʾ 6Bݠiԣ7H?\ H{~#0[.d6p{8m:!@|BW "bjuS^{4Ք+.*)?SfHo0k ruQfx8$Ma8Վ '#"2X-S[gwTo fwo`gV^|Ά~es2 гUҴ V*Dd8P oM7UDڊ2 1gUu^  bJLESF;tǣ)|*!oDdy3z0y{a"5f=Wa0TUU'n-~"T=y U]_8BbSU٢%)&bL(줪T Aç|CeѪ{fT U ۀ-)"So Dd7@DeI ("Ďc6,eYVh jk nՁ >f@`ĵZԑHfsl5TcQI%/댙뽏Kb ׇ|6NĹ2ܳ+p0:)뺺ݻwܽ -B~>~Tg e:Dz,M~-|Xܧ&K,&Pban/?.K<|෉or m%߰Z|+|N!tz$j!& ~+6 ze)8Ql^ݱZ\34"eLs# "&/)ܖgy^~-9MWbZ!]lk'~`hwKETD߰yp}cg:pV'.0|J̊/E|_ wbcf|20FD6#"LJ;Y)E"GD a> ~>glܿ-oW-/҉7SU,s)) ,裏n5jԢӧp U%+<Ry-U}#fi"24ՒpD "}^6%Ia~i%i # Ŧ?>X-p>u\τ"2F?8ls`>F ܑ ZX뎇)[I]6<9ҟ;NH+}( &am"30!S})7#c Z2R,4s~Mt~Yܫh!}4iT;]+ɣn d Rsl,l4&N ? qI[n p^hl7a嵂ձT ֱ`Z<`5=VBbNҏ1ug3?6=JaSե^WeRLq?Tgܯ466xBwT@'U_0|8 S(5Á׀Eb_7ꟃ#+Yj_Ed68*ag^7*{hw8Zx4vL7/Ddu;6y)Jc4NEzG^5唄 "ga/6;U5{Dݓ3n'"uzJzli FDͥBLcgqi!BBTKEwPG#\ ׀#S.K5>0a "]Ed}6nMȹ"iUN#?=EԔ"M<~짪iJT|<}o)a# ,BN3os儈홨1U~"R#"ۉ"=+1!"t1Dgꓱ=E["MDdXÀD "ȀX{i&'%\ T9 Ȅ4}%ȾT.|S"3&.p30UDzmL SyBD:c}g x=bk OEx W9GJ6wŦ[4c6K?FC=G)`Pcca!|P8 q[ˀc񻅰]Co ak^|z\"2YDI[CV:%NfX``9L^VիDpNNzؚXU4H!Z3|$x=o[\gp":e>6G2@`MؚO5ywg8M y<5URD"r. "k[!"'! 盳jC?MN4<9\ 8+a}ftX8sXݹnwN:FS#-ޫ70`) կpaF _`NύqRħD*"`&Jm:zz \a՞z7x !]'9RDiOu C9p>JMe;!!.sRB#"=DǯID[ NFmC\i P_kQR6,&'"7bZG_^fc=غC'6B'03y&("Sblt`S;gvn"E*tE_ BUDΘHl-`.ﳿT<7]<"Ra0U頉Q"LxadYbe.RRB/p5-{!SlS9*/h6'uF_x xIdg 0y=6Py/*Wa煴<]䒷6bs6Gc6 LQչ9Iƴl3"vU`.L>㔘\9s12Dd31ntZu1aEgwo5.A:irֽ!F|Xx8,\?sw\ލG]0u9f`C;i; _ [8 xLD>'Ef9/YD qJ [X0 sx &1B;c7xu'by \u e#b_w=KxǁN|ʶN2ԑR"ߙ-i61 t+E]Zȣ`wQVG.S CCXHasηVzc=;q"r-WU"y2𖈌&a.G fy쾛b] :n؂\7NC2]y&;%cu7O\vY 0?8]U.m>cUuA0EZCU&"ˁ EdU4\M¬oF C0Vv1&V }b ۑ;kNQflE9O۬Q5,$^Fjb=iv_%.&YFcQ)W't[:VNxkk1- BYΌx1v~)z|0;!6*: D$wi#rh3᷐4P9Kx'p&-`bc[}v:UӀE6vEkjjclc[Tȶ /@X/CCy8 Ps>Wl>> _?s1tZZ5b=!Gcq'7qXȷ .O|X_0A\*C A(uV\gjic[J]K0ōLu<\=tԨQ:c 3fL~/{{^ߞl+Jl G8b#a1UXOl1L 9x[ l~#| q=2)|{cN„Ipg9t;`©jm Z`Sc5X~hzLH~  {~80~{o7;Dj )c3bUܧ ymʟ}U4ҥ:>."ȧ- 9>S*AUuzhCCCtق|KUkQUpmY\a!ѪC>-p,-AMQP՛0TN^ES +osLbڥg?sGDj|Je?V~n4`lHWl)ɨ [ BCHWT˵^ԩS=z4tt١wҡb|*G)F'l57OSz(L}|~1S|8$TU*rr#LfHK[6~HfsӧvqAEg1q0 J~LY䚦E1ۍ%ꢊH̿\}U.H+,沎0+*.~:]w]>su#CKul5汲 "7k!Ux‘)`m2 { @Pե"rpEN4鲢.? 8G͏SA@ȁ78>ѭiẲ6EDGBgT|;?͕c5c)Z ^DFYYDPU\qr)̛%ʽ\ u U]?)ÄcmSUqDYك:[l,NU?Œ >zp2aNV+f0)ov?+gΜI'?̩*F5TDXWlh V#Lv"r&pv >p)!"}05f:d4+[LNc"";bGbA/cnQGS6]te˖> {ϋ6-+v?.Z@D` cǪjc}m2شVs쮪{@xQY13څ3eRqIH eU] OŨ5"r$$W'WΥeaT0HT05|)7S>Bhp7SU_!MG"rf%NVՋ[SH=6q*y.PWb F!zg>B1Dd{UoK*0tsi~ly3 `%#"{asMIe!|[,ۀKJlZ`ZMfK]ǩ$|/)P FKiyX]UMJ܂-8g.+!O 21YUnHhdE%6&6u?U9e$"{E$MJRQ'1[qZ +4^UIGi2^zs p+0$JH] P"][ìU'TjZTMЧ(forQK8eN.* XT~XOG5KmW6?U7Br+u!ژw..jIwҠ"\&"m+"9飷S~UYDs8UME  #[0SbGA Ql+1K8%^CFs6Ed ` 讪9ፀg[GDل9H'JOUuuU O!e"-~ڞ5Db,>@Xsalv>9:y +"5"'0az97>0?|Ӂ30 bj"ׁ`ޥټMD<Wm+N2^'`ѵ]!"DcdF\ ;4_9{'l3ѿ ]x RҒi]ReAÉXp> 'FS59U}9v}$5gX "ka~V邭KT@P/\߁"rT̎f)"wke `&?ǩzJ2'K3pP\{ct{'aFÀTy:t3&O"r+p30Eȁ:{a*sH0NU٨T"үΝ;wºtBϞ=/^Ucc9f\^ƮX 18 l+Q~J <Ⱥآ﹪.%~&Ce >T];|.DU 4!yOp|z[6 Dd#L[ cUe+JjT=zl6bĈQcǎ!&MiӦ=x@-6}H:k&OpAZ'ǜ(ֳs})65o 'S1M?b`BW?Fivw7`~yx 8*r3bdOlXlt=wc8&ǦϳKk>iԣyC7p 0IDAT5·~ _`K]XJ1kǮMlrz5㔄hLU0:7_o!߂zBk!9f+mL/wu@ر6M9,nS՜LZ{e0qܸq_uU+ֿƏ׿ƅ m#fUٱMOO#i:>Vlj`GU}LD:qVPYXMU#Qؚ㹶RjY6CDaan"KQ!d;5&< 1ax'6hz,R˝V__pƌ:c _5ź`{(q.V aM@^_3X;Au= \ZRLv;Wh!';B}=h;֓ U1wTq8رc_7notxISŸ@p w\yuO=T#F\ZFN"N'mtYWСC2eJ#;JUSs8q\ XH?U} ))).4}8I )"g"ҥNIW;uBÀE 8N@pRAU@Rqpଂ#MUuq,ސa`po&Z@qU`sUG,N!Mׁ#(" @?QU}=Q^z~ 9UHaAUF଄< (p4p7e"ZCcF4# |8@UlMż 3:Qy"rp63FO^O&X{.&곱8W"r'P "FW`]= )#')UFt06utg" :l iF"^'`v: i*b8b;x :~ ,ń1Re8N#'No i X}EcK)~͈[XoHolz*3ng`gh,N9?MM=gf8N !8qFȎE⬁-< {WayZXIcm2r"XL"} )XX,q|bfg8ž; s"0_n,xe`>'G^#5dv\+5vL%dGzל!h)1h| |߁I.?^ N?INF{:yXHrT\T_K4N }*3}h@ߑ| G%?n1I $0ZhN2Z?i5A$m$=1$I5IR1$I I*$ 0$I@$$$@$Ab HAT Is1}bIENDB`ftgl-2.1.3~rc5/docs/faq.dox0000644000175000017500000000525211015343561012420 00000000000000/** \page ftgl-faq Frequently Asked Questions \section faq FAQ \subsection faq1 When I try to compile %FTGL it complains about a missing file from the include: #include %FTGL relies on FreeType 2 for opening and decoding font files. This include is the main include for FreeType. You will need to download Freetype 2 and install it. Then make sure that the %FTGL project that you are using points to your FreeType installation. \subsection faq2 Is it possible to map a font to a "unit" size? My application relies on the fonts being a certain "physical" height (in OpenGL coordinate space) rather than a point size in display space. Any thoughts/suggestions? We can do anything:) It would be easy to allow you to set the size in pixels, though I'm not sure this is what you want. Setting the size to 'OpenGL units' may be a bit harder. What does 1.0 in opengl space mean and how does that relate to point size? For one person it might mean scaling the font up, for someone else it may mean scaling down. Plus bitmaps and pixmaps have a pixel to pixel relationship that you can't change. Here's some guidelines for vector and texture fonts. Take note that I say 'should' a lot :) - One point in pixel space maps to 1 unit in OpenGL space, so a glyph that is 18 points high should be 18.0 units high. - If you set an ortho projection to the window size and draw a glyph it's screen size should be the correct physical size ie a 72 point glyph on a 72dpi screen will be 1 inch high. Also if you set a perspective projection that maps 0.0 in the z axis to screen size you will get the same eg. \code gluPerspective(90, window_height / 2 , small_number, large_number); \endcode So basically it all depends on your projection matrix. Obviously you can use glScale but I understand if you don't want to. Couple of extra things to note: - The quality of vector glyphs will not change when you change the size, ie. a really small polygon glyph up close will look exactly the same as a big one from far away. They both contain the same amount of data. This doesn't apply to texture fonts. - Secondly, there is a bug in the advance/kerning code that will cause ugliness at really small point sizes. This is because the advance and kerning use ints so an advance of 0.4 will become zero. If this is going to be a probelm, I can fix this. Early on I did a lot of head scratching over the OpenGL unit to font size thing because when I was first integrating %FTGL into my engine the fonts weren't the size I was expecting. I was tempted to build in some scaling but I decided doing nothing was the best approach because you can't please everyone. Plus it's 'correct' as it is. */ ftgl-2.1.3~rc5/docs/tutorial.dox0000644000175000017500000001633011015343545013515 00000000000000/** \page ftgl-tutorial %FTGL tutorial \section starting Starting to use %FTGL Only one header is required to use %FTGL: \code #include \endcode \section type Choosing a font type %FTGL supports 6 font output types among 3 groups: raster fonts, vector fonts, and texture fonts which are a mixture of both. Each font type has its advantages and disadvantages. \subsection raster Raster fonts Raster fonts are made of pixels painted directly on the viewport's framebuffer. They cannot be directly rotated or scaled. - Bitmap fonts use 1-bit (2-colour) rasterised glyphs. - Pixmap fonts use 8-bit (256 levels) rasterised glyphs. \image html rasterfont.png \image latex rasterfont.png "" width=0.7\textwidth \subsection vector Vector fonts Vector fonts are 3D objects that are rendered at the current matrix location. All position, scale, texture and material effects apply to vector fonts. - Polygon fonts use planar triangle meshes and can be texture-mapped. - Outline fonts use OpenGL lines. - Extruded fonts are extruded polygon fonts, with the front, back and side meshes renderable separately to apply different effects and materials. \image html vectorfont.png \image latex vectorfont.png "" width=0.7\textwidth \subsection texture Textured fonts Textured fonts are probably the most versatile types. They are fast, antialiased, and can be transformed just like any OpenGL primitive. - Texture fonts use one texture per glyph. They are fast because glyphs are stored permanently in the video card's memory. - Buffer fonts use one texture per line of text. They tend to be faster than texture fonts when the same line of text needs to be rendered for more than one frame. \image html texturefont.png \image latex texturefont.png "" width=0.7\textwidth \section creating Create font objects Creating a font and displaying some text is really straightforward, be it in C or in C++. \subsection c in C \code /* Create a pixmap font from a TrueType file. */ FTGLfont *font = ftglCreatePixmapFont("/home/user/Arial.ttf"); /* If something went wrong, bail out. */ if(!font) return -1; /* Set the font size and render a small text. */ ftglSetFontFaceSize(font, 72, 72); ftglRenderFont(font, "Hello World!", FTGL_RENDER_ALL); /* Destroy the font object. */ ftglDestroyFont(font); \endcode \subsection cxx in C++ \code // Create a pixmap font from a TrueType file. FTGLPixmapFont font("/home/user/Arial.ttf"); // If something went wrong, bail out. if(font.Error()) return -1; // Set the font size and render a small text. font.FaceSize(72); font.Render("Hello World!"); \endcode The first 128 glyphs of the font (generally corresponding to the ASCII set) are preloaded. This means that usual text is rendered fast enough, but no memory is wasted loading glyphs that will not be used. \section commands More font commands \subsection metrics Font metrics \image html metrics.png \image latex metrics.png "" width=0.5\textwidth If you ask a font to render at 0.0, 0.0 the bottom left most pixel or polygon may not be aligned to 0.0, 0.0. With FTFont::Ascender(), FTFont::Descender() and FTFont::Advance() an approximate bounding box can be calculated. For an exact bounding box, use the FTFont::BBox() function. This function returns the extent of the volume containing 'string'. 0.0 on the y axis will be aligned with the font baseline. \subsection charmap Specifying a character map encoding From the FreeType documentation: "By default, when a new face object is created, (FreeType) lists all the charmaps contained in the font face and selects the one that supports Unicode character codes if it finds one. Otherwise, it tries to find support for Latin-1, then ASCII." It then gives up. In this case %FTGL will set the charmap to the first it finds in the fonts charmap list. You can expilcitly set the char encoding with FTFont::CharMap(). Valid encodings as of FreeType 2.0.4 are: - ft_encoding_none - ft_encoding_unicode - ft_encoding_symbol - ft_encoding_latin_1 - ft_encoding_latin_2 - ft_encoding_sjis - ft_encoding_gb2312 - ft_encoding_big5 - ft_encoding_wansung - ft_encoding_johab - ft_encoding_adobe_standard - ft_encoding_adobe_expert - ft_encoding_adobe_custom - ft_encoding_apple_roman For instance: \code font.CharMap(ft_encoding_apple_roman); \endcode This will return an error if the requested encoding can't be found in the font. If your application uses Latin-1 characters, you can preload this character set using the following code: \code // Create a pixmap font from a TrueType file. FTGLPixmapFont font("/home/user/Arial.ttf"); // If something went wrong, bail out. if(font.Error()) return -1; // Set the face size and the character map. If something went wrong, bail out. font.FaceSize(72); if(!font.CharMap(ft_encoding_latin_1)) return -1; // Create a string containing all characters between 128 and 255 // and preload the Latin-1 chars without rendering them. char buf[129]; for(int i = 128; i < 256; i++) { buf[i] = (char)(unsigned char)i; } buf[128] = '\0'; font.Advance(buf); } \endcode \section sample Sample font manager class \code FTTextureFont* myFont = FTGLFontManager::Instance().GetFont("arial.ttf", 72); #include #include #include using namespace std; typedef map FontList; typedef FontList::const_iterator FontIter; class FTGLFontManager { public: // NOTE // This is shown here for brevity. The implementation should be in the source // file otherwise your compiler may inline the function resulting in // multiple instances of FTGLFontManager static FTGLFontManager& Instance() { static FTGLFontManager tm; return tm; } ~FTGLFontManager() { FontIter font; for(font = fonts.begin(); font != fonts.end(); font++) { delete (*font).second; } fonts.clear(); } FTFont* GetFont(const char *filename, int size) { char buf[256]; sprintf(buf, "%s%i", filename, size); string fontKey = string(buf); FontIter result = fonts.find(fontKey); if(result != fonts.end()) { LOGMSG("Found font %s in list", filename); return result->second; } FTFont* font = new FTTextureFont; string fullname = path + string(filename); if(!font->Open(fullname.c_str())) { LOGERROR("Font %s failed to open", fullname.c_str()); delete font; return NULL; } if(!font->FaceSize(size)) { LOGERROR("Font %s failed to set size %i", filename, size); delete font; return NULL; } fonts[fontKey] = font; return font; } private: // Hide these 'cause this is a singleton. FTGLFontManager(){} FTGLFontManager(const FTGLFontManager&){}; FTGLFontManager& operator = (const FTGLFontManager&){ return *this; }; // container for fonts FontList fonts; }; \endcode */ ftgl-2.1.3~rc5/docs/projects_using_ftgl.txt0000644000175000017500000003501211015404475015747 00000000000000/** \page ftgl-projects Projects using %FTGL To add your project to this list, please contact one of the %FTGL developers at http://sf.net/projects/ftgl Projects are listed in alphabetical order. \section bindings %FTGL language bindings \subsection ftglsharp %FTGL# %FTGL# (http://www.paskaluk.com/projects.php) is a collection of .NET bindings for %FTGL. \subsection glguia GlGuiA GlGuiA (http://sourceforge.net/projects/glguia/) is a set of packages for Ada 2006 that can be used to create Graphical User Interfaces, relaying (almost) only on OpenGl. Hence should be rather platform-independant. \subsection ruby-ftgl Ruby %FTGL Ruby %FTGL# (http://rubyforge.org/projects/ruby-ftgl/) is a collection of Ruby bindings for %FTGL. \subsection pyftgl PyFTGL PyFTGL (http://code.google.com/p/pyftgl/) wraps the functionality of %FTGL into a Python module so that it can be used in conjunction with PyOpenGL. \section current Projects currently using %FTGL \subsection agentw Agent World Agent World (http://code.google.com/p/agentw/) provides tools for simulating and visualizing multi-agent systems and is specially designed for testing machine learning applications (and specially focused on Case Based Reasoning ones). It includes support for representing information using the Feature Term formalism, and provides a series of relational machine learning algorithms that can deal with them. The whole project is created in C++ to maximize efficiency, and uses OpenGL as the visualization library to ensure cross-platformness. \subsection amaltheia Amaltheia Amaltheia (http://home.gna.org/amaltheia/) is a cross-platform game programming API that supports two backends, OpenGL and DirectX. The aim of the Amaltheia project is to create an intuitive and simple to use library, providing core 3d and 2d functionality in a platform independent manner. It also provides platform independence regarding basic network functions, input handling, threads and sound. Currently the GNU/Linux and the Windows OSes are supported. \subsection armagetronad Armagetron Advanced Armagetron Advanced (http://www.armagetronad.net/) is a multiplayer game in 3d that attempts to emulate and expand on the lightcycle sequence from the movie Tron. It's an old school arcade game slung into the 21st century. Highlights include a customizable playing arena, HUD, unique graphics, and AI bots. For the more advanced player there are new game modes and a wide variety of physics settings to tweak as well. \subsection audicle Audicle Audicle (http://audicle.cs.princeton.edu/) is an audio programming environment that integrates the programmability of the development environment with elements of the runtime environment. The result is a duct-taped intersection of a concurrent smart editor, compiler, virtual machine, and debugger. \subsection battlestartux Battlestar T.U.X. Battlestar T.U.X. (http://code.google.com/p/battlestar-tux/) is a top-down scrolling shooter project. \subsection bjs BJS BJS (http://bjs.sourceforge.net/) is a funny arcade 3D multiplayer tank battle. It is fuly playable and very fun in multiplayer. Of course the single player is also possible. There is no story. You just get a tank and go shoot other players. Currently there are 5 different tanks, 6 maps, 9 powerups and 4 weapons. \subsection blender Blender Blender (http://blender.org/) is an integrated 3d suite for modelling, animation, rendering, post-production, interactive creation and playback (games). \subsection breve Breve Breve (http://www.spiderland.org/) is a free, open-source software package which makes it easy to build 3D simulations of multi-agent systems and artificial life. Using Python, or using a simple scripting language called steve, you can define the behaviors of agents in a 3D world and observe how they interact. breve includes physical simulation and collision detection so you can simulate realistic creatures, and an OpenGL display engine so you can visualize your simulated worlds. \subsection bzflag BZFlag BZFlag (http://BZFlag.org/) is a 3D multi-player multiplatform tank battle game that allows users to play against each other in a network environment. BZFlag uses %FTGL as of version 2.99. \subsection capturetf Capture The Flag Capture The Flag (http://capturetf.sourceforge.net/) is an open source, multi-platform, network game project. \subsection cello Cello Cello (http://common-lisp.net/project/cello/) is a project to create an open-source, industrial-strength, portable GUI toolkit for Common Lisp. Its features include anti-aliased fonts, accelerated 2d- and 3d-graphics, a standard set of GUI widgets, easy construction of new widgets, and much more. Cello heavily utilizes Cells (a sister project on common-lisp.net), in addition to industry-standard technologies such as OpenGL, FreeType, and ImageMagick. \subsection chimera Chimera Chimera (http://www.cgl.ucsf.edu/chimera/) is a highly extensible program for interactive visualization and analysis of molecular structures and related data, including density maps, supramolecular assemblies, sequence alignments, docking results, trajectories, and conformational ensembles. High-quality images and animations can be generated. \subsection cinepaint Cinepaint Cinepaint (http://www.cinepaint.org/) is a deep paint image retouching tool that supports higher color fidelity than ordinary painting tools. \subsection duel Duel Duel (http://www.personal.rdg.ac.uk/~sir03me/play/code.html) is a small overhead perspective spaceship game. \subsection emptyclip Empty Clip Empty Clip (http://emptyclip.sourceforge.net/) is a top-down 2D Action RPG. \subsection freebox Freebox Freebox (http://freebox.sourceforge.net/) is designed for use in a special type of computer called an 'HTPC', which is connected to a home-theatre system to watch XviD/DivX/DVD movies, play music (MP3, CD, whatever), play some emulated games, or whatever else you want to do with it. \subsection gem Gem Gem (http://gem.iem.at/) is a loadable library for puredata, which adds OpenGL graphics rendering and animation to Pd. Pd is a graphical programming language and computer music system. \subsection glmayab GLMayan GLMayan (http://glmayan.sourceforge.net/) is an OpenGL screensaver. \subsection glover Glover Glover (http://code.google.com/p/glover/) is a movie player that renders the content using openGL allowing all kinds of special effects using fragment shaders. The movie decoding is done using ffmpeg. \subsection ivfplusplus Ivf++ Ivf++ (http://ivfplusplus.sourceforge.net/) is a C++ library encapsulating OpenGL functionality. The primary goal is to make it easier to use the OpenGL library in interactive 3D applications. The second goal is extendibility, providing a set of well defined base classes for different object types to build new classes on. The third goal is portability, primarily between Linux and Windows, but the library should also be easily ported to Mac OS X. \subsection jahshaka Jahshaka Jashaka (http://jahshaka.org/) is an advanced video editing, animation, visual effects, painting and music tool. \subsection karaokefx Karaoke FX Karaoke FX (http://jeanchristophe.duber.free.fr/karaokefx/) is a midifile player that can display lyrics in synch whith the sound so as it can be used for karaoke. It relies on plugins for midi output devices as for lyrics display. \subsection libinstrudeo Libinstrudeo Libinstrudeo (http://sourceforge.net/projects/libinstrudeo), initially written for the ScreenKast program, provides the necessary logic to capture screen recordings and to process them. Includes a soap-client for the webservice at captorials.com that enables you to share your recordings. \subsection lightspeed Light Speed! Light Speed! (http://lightspeed.sourceforge.net/) is an OpenGL-based program which illustrates the effects of special relativity on the appearance of moving objects. When an object accelerates past a few million meters per second, these effects begin to grow noticeable, becoming more and more pronounced as the speed of light is approached. These relativistic effects are viewpoint-dependent, and include shifts in length, object hue, brightness and shape. \subsection mysqlguitools MySQL GUI Tools MySQL GUI Tools (http://dev.mysql.com/downloads/gui-tools/5.0.html) is a collection of tools for the MySQL database. It consists of MySQL Administrator, MySQL Query Browser and MySQL Migration Toolkit. \subsection octplot OctPlot OctPlot (http://octplot.sourceforge.net/) is a graphics package for Octave, the free alternative to MATLAB. It provides high quality PostScript and on-screen graphics. \subsection openactivewrl Open ActiveWrl Open ActiveWrl (http://open-activewrl.sourceforge.net/) is a software development toolkit based on a generic software development approach that allows the implementation VRML/X3D browser componentes. These browser components can run within an conventional application or can be linked together for the implementation of parallel immersive VR setups. \subsection openeaagles OpenEaagles OpenEaagles (http://www.openeaagles.org/) is a multi-platform simulation framework targeted to help simulation engineers and software developers build robust, scalable, virtual, constructive, stand-alone, and distributed simulation applications. It has been used extensively to build applications that demand real-time performance. This includes applications to conduct human factor studies, operator training, and the development of complete distributed virtual simulation systems. OpenEaagles has also been used to build stand-alone and distributed constructive applications oriented at system analysis. \subsection opengc OpenGC OpenGC (http://www.opengc.org/) is a multi-platform, multi-simulator, open-source C++ tool for developing and implementing high quality glass cockpit displays for simulated flightdecks. \subsection opensg OpenSG OpenSG (http://www.opensg.org/) is a portable scenegraph system to create realtime graphics programs, e.g. for virtual reality applications. \subsection panthera Panthera Panthera (http://sourceforge.net/projects/panthera) is a C++ framework for interactive visualization, manipulation, and editing of volume data. Applications developed on top of Panthera can utilize both desktop and immersive user interface devices, such as position trackers and haptic displays. \subsection ppracer Planet Penguin Racer PlanetPenguin Racer (http://developer.berlios.de/projects/ppracer/) is a simple OpenGL racing game featuring Tux, the Linux mascot. The goal of the game is to slide down a snow- and ice-covered mountain as quickly as possible, avoiding the trees and rocks that will slow you down. \subsection projectm projectM projectM (http://projectm.sourceforge.net/) is a music visualizer which uses OpenGL for hardware acceleration. It is compatible with Milkdrop presets. \subsection puzzle Puzzle Bobble 3D Puzzle Bobble 3D (http://homepage.mac.com/eric.lee/puzzle/) is a 3D video game for Linux. The game is similar to Tetris/Connect 4: connect balls of the same colour to make them disappear. Puzzle Bobble 3D is based on an already popular arcade game of the same name by Taito Corporation (see links section at the bottom of this page), but this particular variant is played in a 3D environment (hence the name). \subsection root ROOT ROOT (http://root.cern.ch/) is an object-oriented data analysis framework. \subsection scirun SCIRun SCIRun (http://software.sci.utah.edu/scirun.html) is a Problem Solving Environment (PSE), for modeling, simulation and visualization of scientific problems. It is available for free and open source. \subsection tine TINE TINE, or TINE Is Not ELITE (http://tine.sunsite.dk/en/index.html) is an open source cross-platform remake of the classic space adventure game ELITE. \subsection tinyplanet Tiny Planet Tiny Planet (http://www.duberga.net/tinyplanet/) is a real-time OpenGL viewer of detailled earth texture such as BlueMarble from Earth Observatory (NASA) or any other planet texture. Vectorial data such as points of interest, boundaries, rivers can be superimposed to the texture. \subsection truevision Truevision Truevision (http://truevision.sourceforge.net/) is a 3D modeler for GNOME. \subsection tulip Tulip Tulip (http://tulip.labri.fr/) is a system dedicated to the visualization of huge graphs. It is capable of managing graphs with up to 500,000 nodes and edges on relatively modest hardware (eg. 600MHz Pentium III, 256MB RAM). \subsection ubit Ubit Ubit (http://www.infres.enst.fr/~elc/ubit/) Ubit is a new GUI toolkit that combines the advantages of scene graph and widget based toolkits. The Ubit3D extension makes it possible to display 2D GUIs in a 3D space. \subsection vrs VRS The Virtual Rendering System (http://www.hpi.uni-potsdam.de/vrs/) is a computer graphics software library for constructing interactive 3D applications. It provides a large collection of 3D rendering components which facilitate implementing 3D graphics applications and experimenting with 3D graphics and imaging algorithms. \subsection vtk VTK VTK, the Visualization Toolkit (http://www.vtk.org/), is an object oriented, high level library that allows one to easily write C++ programs, Tcl, Python and Java scripts that do 3D visualization. \subsection xlock XLock XLock (http://www.tux.org/~bagleyd/xlockmore.html) is a screensaver and screen locking utility with additional OpenGL and XPM modes. \section old Projects that used to use %FTGL \subsection gnubg GNU Backgammon GNU Backgammon (http://www.gnubg.org/) was using %FTGL until version 0.14.3+20060520-1. \subsection openscenegraph OpenSceneGraph OpenSceneGraph (http://www.openscenegraph.org/projects/osg) is an open source high performance 3D graphics toolkit, used by application developers in fields such as visual simulation, games, virtual reality, scientific visualization and modelling. Written entirely in Standard C++ and OpenGL it runs on all Windows platforms, OSX, GNU/Linux, IRIX, Solaris, HP-Ux, AIX and FreeBSD operating systems. \subsection teddy Teddy Teddy (http://teddy.sourceforge.net/) was a 3D graphics library. The main purpose was to be a simple scene graph manager. \subsection vigipac VigiPac VigiPac (http://vigipac.sourceforge.net/) was a three-dimensional Pacman clone with multiplayer support, written in the C++ language. */ ftgl-2.1.3~rc5/docs/ftgl.dox0000644000175000017500000000240311015343514012576 00000000000000/** \mainpage %FTGL User Guide \image html logo.png \image latex logo.png "" width=0.3\textwidth \section intro Introduction OpenGL doesn't provide direct font support, so the application must use any of OpenGL's other features for font rendering, such as drawing bitmaps or pixmaps, creating texture maps containing an entire character set, drawing character outlines, or creating a 3D geometry for each character. More information can be found on the OpenGL website: - http://www.opengl.org/resources/faq/technical/fonts.htm - http://www.opengl.org/resources/features/fontsurvey/ Most of these systems require a pre-processing stage to take the native fonts and convert them into a proprietary format. %FTGL was born out of the need to treat fonts in OpenGL applications just like any other application. For example when using Adobe Photoshop or Microsoft Word you don't need an intermediate pre-processing step to use high quality scalable fonts. \section documentation Documentation - \subpage ftgl-tutorial - C API reference: - FTGlyph.h - FTFont.h - FTLayout.h - C++ API reference: - class FTGlyph - class FTFont - class FTLayout \section information Additional information - \subpage ftgl-faq - \subpage ftgl-projects */ ftgl-2.1.3~rc5/docs/Makefile.am0000644000175000017500000000275111015344023013164 00000000000000 documentationdir = $(datadir)/doc/ftgl documentation_DATA = projects_using_ftgl.txt if HAVE_DOXYGEN htmldocdir = $(documentationdir)/html htmldoc_DATA = html/doxygen.css if HAVE_LATEX pdfdocdir = $(documentationdir) pdfdoc_DATA = latex/ftgl.pdf endif endif PNGS = \ images/logo.png \ images/metrics.png \ images/rasterfont.png \ images/vectorfont.png \ images/texturefont.png \ $(NULL) stamp-eps: $(PNGS) if HAVE_LATEX for i in $^; do convert $$i $$i.eps; done endif touch $@ html/doxygen.css: stamp-doxygen stamp-doxygen: doxygen.cfg stamp-eps $(DOXYGEN) $^ sed -i 's/%FTGL/FTGL/' html/*html touch $@ latex/ftgl.pdf: stamp-latex stamp-latex: stamp-doxygen rm -f latex/ftgl.tex latex/ftgl.pdf mv latex/refman.tex latex/ftgl.tex sed 's/setlength{/renewcommand{/' latex/ftgl.tex > latex/refman.tex cd latex && $(MAKE) $(AM_CFLAGS) refman.pdf || (cat refman.log; exit 1) mv latex/refman.pdf latex/ftgl.pdf touch stamp-latex clean: clean-local clean-local: $(RM) -rf html latex $(RM) -f images/*.eps $(RM) -f stamp-doxygen stamp-latex stamp-eps if HAVE_DOXYGEN install-data-local: html/doxygen.css $(mkinstalldirs) $(DESTDIR)$(htmldocdir)/ $(INSTALL) -m 0644 \ `find html -name '*.html' -o -name '*.gif' -o -name '*.png' -o -name '*.jpg'` \ $(DESTDIR)$(htmldocdir)/ endif EXTRA_DIST = \ $(PNGS) \ $(documentation_DATA) \ FTGL_1_3.gif \ doxygen.cfg.in \ ftgl.dox \ tutorial.dox \ projects_using_ftgl.txt \ faq.dox \ images/metrics.svg \ $(NULL) NULL = ftgl-2.1.3~rc5/docs/doxygen.cfg.in0000644000175000017500000015667411015302600013704 00000000000000# Doxyfile 1.5.5 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = @PACKAGE_NAME@ # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = @PACKAGE_VERSION@ # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = . # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, # Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, # and Ukrainian. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = YES # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the DETAILS_AT_TOP tag is set to YES then Doxygen # will output the detailed description near the top, like JavaDoc. # If set to NO, the detailed description appears after the member # documentation. DETAILS_AT_TOP = YES # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = YES # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespace are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be abled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = @top_srcdir@/src/FTGL \ @top_srcdir@/docs # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 FILE_PATTERNS = *.cpp \ *.h \ *.dox \ *.txt # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = images # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES (the default) # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES # If the REFERENCES_RELATION tag is set to YES (the default) # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentstion. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be # generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature. GENERATE_TREEVIEW = NO # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = YES # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = NO # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = YES # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = YES #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = YES # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = FTGL_EXPORT= FTGL_BEGIN_C_DECLS= FTGL_END_C_DECLS= \ __cplusplus # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option is superseded by the HAVE_DOT option below. This is only a # fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = NO # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is enabled by default, which results in a transparent # background. Warning: Depending on the platform used, enabling this option # may lead to badly anti-aliased labels on the edges of a graph (i.e. they # become hard to read). DOT_TRANSPARENT = YES # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO ftgl-2.1.3~rc5/.auto/0000777000175000017500000000000011024234667011321 500000000000000ftgl-2.1.3~rc5/.auto/depcomp0000755000175000017500000004271311024231635012611 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2007-03-29.01 # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007 Free Software # Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> $depfile echo >> $depfile # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> $depfile else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix="`echo $object | sed 's/^.*\././'`" touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: ftgl-2.1.3~rc5/.auto/compile0000755000175000017500000000717311024231634012612 00000000000000#! /bin/sh # Wrapper for compilers which do not understand `-c -o'. scriptversion=2005-05-14.22 # Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand `-c -o'. Remove `-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file `INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; esac ofile= cfile= eat= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as `compile cc -o foo foo.c'. # So we strip `-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no `-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # `.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'` # Create the lock directory. # Note: use `[/.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: ftgl-2.1.3~rc5/.auto/install-sh0000755000175000017500000003246411024231634013241 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2006-12-25.00 # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then trap '(exit $?); exit' 1 2 13 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names starting with `-'. case $src in -*) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; -*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: ftgl-2.1.3~rc5/.auto/config.sub0000755000175000017500000010115311024231635013211 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. timestamp='2008-01-16' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray) os= basic_machine=$1 ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64vr | mips64vrel \ | mips64orion | mips64orionel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | mt \ | msp430 \ | nios | nios2 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | score \ | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64vr-* | mips64vrel-* \ | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; c90) basic_machine=c90-cray os=-unicos ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; tile*) basic_machine=tile-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: ftgl-2.1.3~rc5/.auto/ltmain.sh0000644000175000017500000060646011005701501013052 00000000000000# ltmain.sh - Provide generalized library-building support services. # NOTE: Changing this file will not affect anything until you rerun configure. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, # 2007, 2008 Free Software Foundation, Inc. # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. basename="s,^.*/,,g" # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" # The name of this program: progname=`echo "$progpath" | $SED $basename` modename="$progname" # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 PROGRAM=ltmain.sh PACKAGE=libtool VERSION="1.5.26 Debian 1.5.26-4" TIMESTAMP=" (1.1220.2.493 2008/02/01 16:58:18)" # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # Check that we have a working $echo. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec $SHELL "$progpath" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat <&2 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 exit $EXIT_FAILURE fi # Global variables. mode=$default_mode nonopt= prev= prevopt= run= show="$echo" show_help= execute_dlfiles= duplicate_deps=no preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" extracted_archives= extracted_serial=0 ##################################### # Shell function definitions: # This seems to be the best place for them # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $mkdir "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || { $echo "cannot create temporary directory \`$my_tmpdir'" 1>&2 exit $EXIT_FAILURE } fi $echo "X$my_tmpdir" | $Xsed } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. func_win32_libid () { win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \ $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then win32_nmres=`eval $NM -f posix -A $1 | \ $SED -n -e '1,100{ / I /{ s,.*,import, p q } }'` case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $echo $win32_libid_type } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac CC_quoted="$CC_quoted $arg" done case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac CC_quoted="$CC_quoted $arg" done case "$@ " in " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then $echo "$modename: unable to infer tagged configuration" $echo "$modename: specify a tag with \`--tag'" 1>&2 exit $EXIT_FAILURE # else # $echo "$modename: using $tagname tagged configuration" fi ;; esac fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)" $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $? if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else $echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2 exit $EXIT_FAILURE fi } # func_extract_archives gentop oldlib ... func_extract_archives () { my_gentop="$1"; shift my_oldlibs=${1+"$@"} my_oldobjs="" my_xlib="" my_xabs="" my_xdir="" my_status="" $show "${rm}r $my_gentop" $run ${rm}r "$my_gentop" $show "$mkdir $my_gentop" $run $mkdir "$my_gentop" my_status=$? if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then exit $my_status fi for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'` my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) extracted_serial=`expr $extracted_serial + 1` my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir="$my_gentop/$my_xlib_u" $show "${rm}r $my_xdir" $run ${rm}r "$my_xdir" $show "$mkdir $my_xdir" $run $mkdir "$my_xdir" exit_status=$? if test "$exit_status" -ne 0 && test ! -d "$my_xdir"; then exit $exit_status fi case $host in *-darwin*) $show "Extracting $my_xabs" # Do not bother doing anything if just a dry run if test -z "$run"; then darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'` darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null` if test -n "$darwin_arches"; then darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= $show "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches ; do mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}" lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" func_extract_an_archive "`pwd`" "${darwin_base_archive}" cd "$darwin_curdir" $rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" done # $darwin_arches ## Okay now we have a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP` lipo -create -output "$darwin_file" $darwin_files done # $darwin_filelist ${rm}r unfat-$$ cd "$darwin_orig_dir" else cd "$darwin_orig_dir" func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches fi # $run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` done func_extract_archives_result="$my_oldobjs" } # End of Shell function definitions ##################################### # Darwin sucks eval std_shrext=\"$shrext_cmds\" disable_libs=no # Parse our command line options once, thoroughly. while test "$#" -gt 0 do arg="$1" shift case $arg in -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in execute_dlfiles) execute_dlfiles="$execute_dlfiles $arg" ;; tag) tagname="$arg" preserve_args="${preserve_args}=$arg" # Check whether tagname contains only valid characters case $tagname in *[!-_A-Za-z0-9,/]*) $echo "$progname: invalid tag name: $tagname" 1>&2 exit $EXIT_FAILURE ;; esac case $tagname in CC) # Don't test for the "default" C tag, as we know, it's there, but # not specially marked. ;; *) if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then taglist="$taglist $tagname" # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`" else $echo "$progname: ignoring unknown tag $tagname" 1>&2 fi ;; esac ;; *) eval "$prev=\$arg" ;; esac prev= prevopt= continue fi # Have we seen a non-optional argument yet? case $arg in --help) show_help=yes ;; --version) echo "\ $PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP Copyright (C) 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." exit $? ;; --config) ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath # Now print the configurations for the tags. for tagname in $taglist; do ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath" done exit $? ;; --debug) $echo "$progname: enabling shell trace mode" set -x preserve_args="$preserve_args $arg" ;; --dry-run | -n) run=: ;; --features) $echo "host: $host" if test "$build_libtool_libs" = yes; then $echo "enable shared libraries" else $echo "disable shared libraries" fi if test "$build_old_libs" = yes; then $echo "enable static libraries" else $echo "disable static libraries" fi exit $? ;; --finish) mode="finish" ;; --mode) prevopt="--mode" prev=mode ;; --mode=*) mode="$optarg" ;; --preserve-dup-deps) duplicate_deps="yes" ;; --quiet | --silent) show=: preserve_args="$preserve_args $arg" ;; --tag) prevopt="--tag" prev=tag preserve_args="$preserve_args --tag" ;; --tag=*) set tag "$optarg" ${1+"$@"} shift prev=tag preserve_args="$preserve_args --tag" ;; -dlopen) prevopt="-dlopen" prev=execute_dlfiles ;; -*) $echo "$modename: unrecognized option \`$arg'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; *) nonopt="$arg" break ;; esac done if test -n "$prevopt"; then $echo "$modename: option \`$prevopt' requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi case $disable_libs in no) ;; shared) build_libtool_libs=no build_old_libs=yes ;; static) build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` ;; esac # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= if test -z "$show_help"; then # Infer the operation mode. if test -z "$mode"; then $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2 $echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2 case $nonopt in *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*) mode=link for arg do case $arg in -c) mode=compile break ;; esac done ;; *db | *dbx | *strace | *truss) mode=execute ;; *install*|cp|mv) mode=install ;; *rm) mode=uninstall ;; *) # If we have no mode, but dlfiles were specified, then do execute mode. test -n "$execute_dlfiles" && mode=execute # Just use the default operation mode. if test -z "$mode"; then if test -n "$nonopt"; then $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2 else $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2 fi fi ;; esac fi # Only execute mode is allowed to have -dlopen flags. if test -n "$execute_dlfiles" && test "$mode" != execute; then $echo "$modename: unrecognized option \`-dlopen'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$modename --help --mode=$mode' for more information." # These modes are in order of execution frequency so that they run quickly. case $mode in # libtool compile mode compile) modename="$modename: compile" # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" arg_mode=normal ;; target ) libobj="$arg" arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) if test -n "$libobj" ; then $echo "$modename: you cannot specify \`-o' more than once" 1>&2 exit $EXIT_FAILURE fi arg_mode=target continue ;; -static | -prefer-pic | -prefer-non-pic) later="$later $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"` lastarg= save_ifs="$IFS"; IFS=',' for arg in $args; do IFS="$save_ifs" # Double-quote args containing other shell metacharacters. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac lastarg="$lastarg $arg" done IFS="$save_ifs" lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"` # Add the arguments to base_compile. base_compile="$base_compile $lastarg" continue ;; * ) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg="$srcfile" srcfile="$arg" ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"` case $lastarg in # Double-quote args containing other shell metacharacters. # Many Bourne shells cannot handle close brackets correctly # in scan sets, and some SunOS ksh mistreat backslash-escaping # in scan sets (worked around with variable expansion), # and furthermore cannot handle '|' '&' '(' ')' in scan sets # at all, so we specify them separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") lastarg="\"$lastarg\"" ;; esac base_compile="$base_compile $lastarg" done # for arg case $arg_mode in arg) $echo "$modename: you must specify an argument for -Xcompile" exit $EXIT_FAILURE ;; target) $echo "$modename: you must specify a target with \`-o'" 1>&2 exit $EXIT_FAILURE ;; *) # Get the name of the library object. [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'` ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo xform='[cCFSifmso]' case $libobj in *.ada) xform=ada ;; *.adb) xform=adb ;; *.ads) xform=ads ;; *.asm) xform=asm ;; *.c++) xform=c++ ;; *.cc) xform=cc ;; *.ii) xform=ii ;; *.class) xform=class ;; *.cpp) xform=cpp ;; *.cxx) xform=cxx ;; *.[fF][09]?) xform=[fF][09]. ;; *.for) xform=for ;; *.java) xform=java ;; *.obj) xform=obj ;; *.sx) xform=sx ;; esac libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"` case $libobj in *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;; *) $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2 exit $EXIT_FAILURE ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -static) build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"` case $qlibobj in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qlibobj="\"$qlibobj\"" ;; esac test "X$libobj" != "X$qlibobj" \ && $echo "X$libobj" | grep '[]~#^*{};<>?"'"'"' &()|`$[]' \ && $echo "$modename: libobj name \`$libobj' may not contain shell special characters." objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$obj"; then xdir= else xdir=$xdir/ fi lobj=${xdir}$objdir/$objname if test -z "$base_compile"; then $echo "$modename: you must specify a compilation command" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi $run $rm $removelist trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" removelist="$removelist $output_obj $lockfile" trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $run ln "$progpath" "$lockfile" 2>/dev/null; do $show "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $echo "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi $echo "$srcfile" > "$lockfile" fi if test -n "$fix_srcfile_path"; then eval srcfile=\"$fix_srcfile_path\" fi qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"` case $qsrcfile in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qsrcfile="\"$qsrcfile\"" ;; esac $run $rm "$libobj" "${libobj}T" # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. test -z "$run" && cat > ${libobj}T </dev/null`" != "X$srcfile"; then $echo "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then $show "$mv $output_obj $lobj" if $run $mv $output_obj $lobj; then : else error=$? $run $rm $removelist exit $error fi fi # Append the name of the PIC object to the libtool object file. test -z "$run" && cat >> ${libobj}T <> ${libobj}T </dev/null`" != "X$srcfile"; then $echo "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then $show "$mv $output_obj $obj" if $run $mv $output_obj $obj; then : else error=$? $run $rm $removelist exit $error fi fi # Append the name of the non-PIC object the libtool object file. # Only append if the libtool object file exists. test -z "$run" && cat >> ${libobj}T <> ${libobj}T <&2 fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test ;; *) qarg=$arg ;; esac libtool_args="$libtool_args $qarg" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) compile_command="$compile_command @OUTPUT@" finalize_command="$finalize_command @OUTPUT@" ;; esac case $prev in dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. compile_command="$compile_command @SYMFILE@" finalize_command="$finalize_command @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then dlfiles="$dlfiles $arg" else dlprefiles="$dlprefiles $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" if test ! -f "$arg"; then $echo "$modename: symbol file \`$arg' does not exist" exit $EXIT_FAILURE fi prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat $save_arg` do # moreargs="$moreargs $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then pic_object= non_pic_object= # Read the .lo file # If there is no directory component, then add one. case $arg in */* | *\\*) . $arg ;; *) . ./$arg ;; esac if test -z "$pic_object" || \ test -z "$non_pic_object" || test "$pic_object" = none && \ test "$non_pic_object" = none; then $echo "$modename: cannot find name of object for \`$arg'" 1>&2 exit $EXIT_FAILURE fi # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then dlfiles="$dlfiles $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. dlprefiles="$dlprefiles $pic_object" prev= fi # A PIC object. libobjs="$libobjs $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object non_pic_objects="$non_pic_objects $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi else # Only an error if not doing a dry-run. if test -z "$run"; then $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 exit $EXIT_FAILURE else # Dry-run case. # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` libobjs="$libobjs $pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi fi done else $echo "$modename: link input file \`$save_arg' does not exist" exit $EXIT_FAILURE fi arg=$save_arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) $echo "$modename: only absolute run-paths are allowed" 1>&2 exit $EXIT_FAILURE ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) rpath="$rpath $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) xrpath="$xrpath $arg" ;; esac fi prev= continue ;; xcompiler) compiler_flags="$compiler_flags $qarg" prev= compile_command="$compile_command $qarg" finalize_command="$finalize_command $qarg" continue ;; xlinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $wl$qarg" prev= compile_command="$compile_command $wl$qarg" finalize_command="$finalize_command $wl$qarg" continue ;; xcclinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $qarg" prev= compile_command="$compile_command $qarg" finalize_command="$finalize_command $qarg" continue ;; shrext) shrext_cmds="$arg" prev= continue ;; darwin_framework|darwin_framework_skip) test "$prev" = "darwin_framework" && compiler_flags="$compiler_flags $arg" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" prev= continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then compile_command="$compile_command $link_static_flag" finalize_command="$finalize_command $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2 continue ;; -avoid-version) avoid_version=yes continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then $echo "$modename: more than one -exported-symbols argument is not allowed" exit $EXIT_FAILURE fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework|-arch|-isysroot) case " $CC " in *" ${arg} ${1} "* | *" ${arg} ${1} "*) prev=darwin_framework_skip ;; *) compiler_flags="$compiler_flags $arg" prev=darwin_framework ;; esac compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" ;; esac continue ;; -L*) dir=`$echo "X$arg" | $Xsed -e 's/^-L//'` # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2 absdir="$dir" notinst_path="$notinst_path $dir" fi dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "*) ;; *) deplibs="$deplibs -L$dir" lib_search_path="$lib_search_path $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) testbindir=`$echo "X$dir" | $Xsed -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; *) dllsearchpath="$dllsearchpath:$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; *) dllsearchpath="$dllsearchpath:$testbindir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework deplibs="$deplibs -framework System" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test "X$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi deplibs="$deplibs $arg" continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. -model) compile_command="$compile_command $arg" compiler_flags="$compiler_flags $arg" finalize_command="$finalize_command $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) compiler_flags="$compiler_flags $arg" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" continue ;; -multi_module) single_module="${wl}-multi_module" continue ;; -module) module=yes continue ;; # -64, -mips[0-9] enable 64-bit mode on the SGI compiler # -r[0-9][0-9]* specifies the processor on the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler # +DA*, +DD* enable 64-bit mode on the HP compiler # -q* pass through compiler args for the IBM compiler # -m* pass through architecture-specific compiler args for GCC # -m*, -t[45]*, -txscale* pass through architecture-specific # compiler args for GCC # -p, -pg, --coverage, -fprofile-* pass through profiling flag for GCC # -F/path gives path to uninstalled frameworks, gcc on darwin # @file GCC response files -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" compiler_flags="$compiler_flags $arg" continue ;; -shrext) prev=shrext continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2 $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2 fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) dir=`$echo "X$arg" | $Xsed -e 's/^-R//'` # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) $echo "$modename: only absolute run-paths are allowed" 1>&2 exit $EXIT_FAILURE ;; esac case "$xrpath " in *" $dir "*) ;; *) xrpath="$xrpath $dir" ;; esac continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -Wc,*) args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'` arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" case $flag in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") flag="\"$flag\"" ;; esac arg="$arg $wl$flag" compiler_flags="$compiler_flags $flag" done IFS="$save_ifs" arg=`$echo "X$arg" | $Xsed -e "s/^ //"` ;; -Wl,*) args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'` arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" case $flag in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") flag="\"$flag\"" ;; esac arg="$arg $wl$flag" compiler_flags="$compiler_flags $wl$flag" linker_flags="$linker_flags $flag" done IFS="$save_ifs" arg=`$echo "X$arg" | $Xsed -e "s/^ //"` ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # Some other compiler flag. -* | +*) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac ;; *.$objext) # A standard object. objs="$objs $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then pic_object= non_pic_object= # Read the .lo file # If there is no directory component, then add one. case $arg in */* | *\\*) . $arg ;; *) . ./$arg ;; esac if test -z "$pic_object" || \ test -z "$non_pic_object" || test "$pic_object" = none && \ test "$non_pic_object" = none; then $echo "$modename: cannot find name of object for \`$arg'" 1>&2 exit $EXIT_FAILURE fi # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then dlfiles="$dlfiles $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. dlprefiles="$dlprefiles $pic_object" prev= fi # A PIC object. libobjs="$libobjs $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object non_pic_objects="$non_pic_objects $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi else # Only an error if not doing a dry-run. if test -z "$run"; then $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 exit $EXIT_FAILURE else # Dry-run case. # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` libobjs="$libobjs $pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi fi ;; *.$libext) # An archive. deplibs="$deplibs $arg" old_deplibs="$old_deplibs $arg" continue ;; *.la) # A libtool-controlled library. if test "$prev" = dlfiles; then # This library was specified with -dlopen. dlfiles="$dlfiles $arg" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. dlprefiles="$dlprefiles $arg" prev= else deplibs="$deplibs $arg" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" fi done # argument parsing loop if test -n "$prev"; then $echo "$modename: the \`$prevarg' option requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" fi oldlibs= # calculate the name of the file, without its directory outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'` libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'` if test "X$output_objdir" = "X$output"; then output_objdir="$objdir" else output_objdir="$output_objdir/$objdir" fi # Create the object directory. if test ! -d "$output_objdir"; then $show "$mkdir $output_objdir" $run $mkdir $output_objdir exit_status=$? if test "$exit_status" -ne 0 && test ! -d "$output_objdir"; then exit $exit_status fi fi # Determine the type of output case $output in "") $echo "$modename: you must specify an output file" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac case $host in *cygwin* | *mingw* | *pw32*) # don't eliminate duplications in $postdeps and $predeps duplicate_compiler_generated_deps=yes ;; *) duplicate_compiler_generated_deps=$duplicate_deps ;; esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if test "X$duplicate_deps" = "Xyes" ; then case "$libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi libs="$libs $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;; esac pre_post_deps="$pre_post_deps $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries case $linkmode in lib) passes="conv link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2 exit $EXIT_FAILURE ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else compiler_flags="$compiler_flags $deplib" fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2 continue fi name=`$echo "X$deplib" | $Xsed -e 's/^-l//'` if test "$linkmode" = lib; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then library_names= old_library= case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` test "X$ladir" = "X$lib" && ladir="." lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` ;; *) $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2 ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'` # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) xrpath="$xrpath $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) lib="$deplib" ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) valid_a_lib=no case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` if eval $echo \"$deplib\" 2>/dev/null \ | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then $echo $echo "*** Warning: Trying to link with static lib archive $deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because the file extensions .$libext of this argument makes me believe" $echo "*** that it is just a static archive that I should not used here." else $echo $echo "*** Warning: Linking the shared library $output against the" $echo "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. newdlprefiles="$newdlprefiles $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else newdlfiles="$newdlfiles $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else $echo "$modename: cannot find the library \`$lib' or unhandled argument \`$deplib'" 1>&2 exit $EXIT_FAILURE fi # Check to see that this really is a libtool archive. if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` test "X$ladir" = "X$lib" && ladir="." dlname= dlopen= dlpreopen= libdir= library_names= old_library= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && dlfiles="$dlfiles $dlopen" test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 exit $EXIT_FAILURE fi # It is a libtool convenience library, so add in its objects. convenience="$convenience $ladir/$objdir/$old_library" old_convenience="$old_convenience $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done elif test "$linkmode" != prog && test "$linkmode" != lib; then $echo "$modename: \`$lib' is not a convenience library" 1>&2 exit $EXIT_FAILURE fi continue fi # $pass = conv # Get the name of the library we link against. linklib= for l in $old_library $library_names; do linklib="$l" done if test -z "$linklib"; then $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 exit $EXIT_FAILURE fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2 exit $EXIT_FAILURE fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. dlprefiles="$dlprefiles $lib $dependency_libs" else newdlfiles="$newdlfiles $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2 $echo "$modename: passing it literally to the linker, although it might fail" 1>&2 abs_ladir="$ladir" fi ;; esac laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then $echo "$modename: warning: library \`$lib' was moved." 1>&2 dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$libdir" absdir="$libdir" fi test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir="$ladir" absdir="$abs_ladir" # Remove this search path later notinst_path="$notinst_path $abs_ladir" else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later notinst_path="$notinst_path $abs_ladir" fi fi # $installed = yes name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir"; then $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2 exit $EXIT_FAILURE fi # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then newdlprefiles="$newdlprefiles $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then newdlprefiles="$newdlprefiles $dir/$dlname" else newdlprefiles="$newdlprefiles $dir/$linklib" fi fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then newlib_search_path="$newlib_search_path $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath " in *" $dir "*) ;; *" $absdir "*) ;; *) temp_rpath="$temp_rpath $absdir" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test "$use_static_libs" = built && test "$installed" = yes ; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then if test "$installed" = no; then notinst_deplibs="$notinst_deplibs $lib" need_relink=yes fi # This is a shared library # Warn about portability, can't link against -module's on # some systems (darwin) if test "$shouldnotlink" = yes && test "$pass" = link ; then $echo if test "$linkmode" = prog; then $echo "*** Warning: Linking the executable $output against the loadable module" else $echo "*** Warning: Linking the shared library $output against the loadable module" fi $echo "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names realname="$2" shift; shift libname=`eval \\$echo \"$libname_spec\"` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw*) major=`expr $current - $age` versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" soname=`$echo $soroot | ${SED} -e 's/^.*\///'` newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a" # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else $show "extracting exported symbol list from \`$soname'" save_ifs="$IFS"; IFS='~' cmds=$extract_expsyms_cmds for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else $show "generating import library for \`$soname'" save_ifs="$IFS"; IFS='~' cmds=$old_archive_from_expsyms_cmds for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; *-*-sysv4*uw2*) add_dir="-L$dir" ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a module then we can not link against # it, someone is ignoring the new warnings I added if /usr/bin/file -L $add 2> /dev/null | $EGREP ": [^:]* bundle" >/dev/null ; then $echo "** Warning, lib $linklib is a module, not a shared library" if test -z "$old_library" ; then $echo $echo "** And there doesn't seem to be a static archive available" $echo "** The link will probably fail, sorry" else add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$dir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then $echo "$modename: configuration error: unsupported hardcode properties" exit $EXIT_FAILURE fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && \ test "$hardcode_minus_L" != yes && \ test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. $echo $echo "*** Warning: This system can not link to static lib archive $lib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then $echo "*** But as you try to build a module library, libtool will still create " $echo "*** a static module, that should work as long as the dlopening application" $echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then $echo $echo "*** However, this would only work if libtool was able to extract symbol" $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" $echo "*** not find such a program. So, this module is probably useless." $echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'` case " $xrpath " in *" $temp_xrpath "*) ;; *) xrpath="$xrpath $temp_xrpath";; esac;; *) temp_deplibs="$temp_deplibs $libdir";; esac done dependency_libs="$temp_deplibs" fi newlib_search_path="$newlib_search_path $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do case $deplib in -L*) path="$deplib" ;; *.la) dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$deplib" && dir="." # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2 absdir="$dir" fi ;; esac if grep "^installed=no" $deplib > /dev/null; then path="$absdir/$objdir" else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -z "$libdir"; then $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi if test "$absdir" != "$libdir"; then $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2 fi path="$absdir" fi depdepl= case $host in *-*-darwin*) # we do not want to link against static libs, # but need to link against shared eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` eval deplibdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$deplibdir/$depdepl" ; then depdepl="$deplibdir/$depdepl" elif test -f "$path/$depdepl" ; then depdepl="$path/$depdepl" else # Can't find it, oh well... depdepl= fi # do not add paths which are already there case " $newlib_search_path " in *" $path "*) ;; *) newlib_search_path="$newlib_search_path $path";; esac fi path="" ;; *) path="-L$path" ;; esac ;; -l*) case $host in *-*-darwin*) # Again, we only want to link against shared libraries eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"` for tmp in $newlib_search_path ; do if test -f "$tmp/lib$tmp_libs.dylib" ; then eval depdepl="$tmp/lib$tmp_libs.dylib" break fi done path="" ;; *) continue ;; esac ;; *) continue ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac case " $deplibs " in *" $depdepl "*) ;; *) deplibs="$depdepl $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) lib_search_path="$lib_search_path $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) tmp_libs="$tmp_libs $deplib" ;; esac ;; *) tmp_libs="$tmp_libs $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then tmp_libs="$tmp_libs $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) case " $deplibs" in *\ -l* | *\ -L*) $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2 ;; esac if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2 fi if test -n "$rpath"; then $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2 fi if test -n "$xrpath"; then $echo "$modename: warning: \`-R' is ignored for archives" 1>&2 fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for archives" 1>&2 fi if test -n "$export_symbols" || test -n "$export_symbols_regex"; then $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2 fi # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" objs="$objs$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) if test "$module" = no; then $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1 exit $EXIT_FAILURE else $echo $echo "*** Warning: Linking the shared library $output against the non-libtool" $echo "*** objects $objs is not portable!" libobjs="$libobjs $objs" fi fi if test "$dlself" != no; then $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2 fi set dummy $rpath if test "$#" -gt 2; then $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2 fi install_libdir="$2" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2 fi else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 IFS="$save_ifs" if test -n "$8"; then $echo "$modename: too many parameters to \`-version-info'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$2" number_minor="$3" number_revision="$4" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in darwin|linux|osf|windows|none) current=`expr $number_major + $number_minor` age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) current=`expr $number_major + $number_minor` age="$number_minor" revision="$number_minor" lt_irix_increment=no ;; *) $echo "$modename: unknown library version type \`$version_type'" 1>&2 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 exit $EXIT_FAILURE ;; esac ;; no) current="$2" revision="$3" age="$4" ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: CURRENT \`$current' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: REVISION \`$revision' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: AGE \`$age' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac if test "$age" -gt "$current"; then $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header major=.`expr $current - $age` versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... minor_current=`expr $current + 1` xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current"; ;; irix | nonstopux) if test "X$lt_irix_increment" = "Xno"; then major=`expr $current - $age` else major=`expr $current - $age + 1` fi case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do iface=`expr $revision - $loop` loop=`expr $loop - 1` verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) major=.`expr $current - $age` versuffix="$major.$age.$revision" ;; osf) major=.`expr $current - $age` versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do iface=`expr $current - $loop` loop=`expr $loop - 1` verstring="$verstring:${iface}.0" done # Make executables depend on our current version. verstring="$verstring:${current}.0" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. major=`expr $current - $age` versuffix="-$major" ;; *) $echo "$modename: unknown library version type \`$version_type'" 1>&2 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 exit $EXIT_FAILURE ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2 build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi if test "$mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$echo "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi removelist="$removelist $p" ;; *) ;; esac done if test -n "$removelist"; then $show "${rm}r $removelist" $run ${rm}r $removelist fi fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then oldlibs="$oldlibs $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$echo "$lib_search_path " | ${SED} -e "s% $path % %g"` # deplibs=`$echo "$deplibs " | ${SED} -e "s% -L$path % %g"` # dependency_libs=`$echo "$dependency_libs " | ${SED} -e "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do temp_xrpath="$temp_xrpath -R$libdir" case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) dlfiles="$dlfiles $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) dlprefiles="$dlprefiles $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework deplibs="$deplibs -framework System" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then deplibs="$deplibs -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $rm conftest.c cat > conftest.c </dev/null` for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null \ | grep " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \ | ${SED} 10q \ | $EGREP "$file_magic_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes $echo $echo "*** Warning: linker path does not have real file for library $a_deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $echo "*** with $libname but no candidates were found. (...for file magic test)" else $echo "*** with $libname and none of the candidates passed a file format test" $echo "*** using a file magic. Last file checked: $potlib" fi fi else # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" fi done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` for a_deplib in $deplibs; do name=`expr $a_deplib : '-l\(.*\)'` # If $name is empty we are operating on a -L argument. if test -n "$name" && test "$name" != "0"; then if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) newdeplibs="$newdeplibs $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval \\$echo \"$libname_spec\"` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval $echo \"$potent_lib\" 2>/dev/null \ | ${SED} 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes $echo $echo "*** Warning: linker path does not have real file for library $a_deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $echo "*** with $libname but no candidates were found. (...for regex pattern test)" else $echo "*** with $libname and none of the candidates passed a file format test" $echo "*** using a regex pattern. Last file checked: $potlib" fi fi else # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" fi done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \ -e 's/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"` done fi if $echo "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' \ | grep . >/dev/null; then $echo if test "X$deplibs_check_method" = "Xnone"; then $echo "*** Warning: inter-library dependencies are not supported in this platform." else $echo "*** Warning: inter-library dependencies are not known to be supported." fi $echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes fi ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then $echo $echo "*** Warning: libtool could not satisfy all declared inter-library" $echo "*** dependencies of module $libname. Therefore, libtool will create" $echo "*** a static module, that should work as long as the dlopening" $echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then $echo $echo "*** However, this would only work if libtool was able to extract symbol" $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" $echo "*** not find such a program. So, this module is probably useless." $echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else $echo "*** The inter-library dependencies that have been dropped here will be" $echo "*** automatically added whenever a program is linked with this library" $echo "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then $echo $echo "*** Since this library must not contain undefined symbols," $echo "*** because either the platform does not support them or" $echo "*** it was explicitly requested with -no-undefined," $echo "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) new_libs="$new_libs -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$new_libs $deplib" ;; esac ;; *) new_libs="$new_libs $deplib" ;; esac done deplibs="$new_libs" # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" dep_rpath="$dep_rpath $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) perm_rpath="$perm_rpath $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" if test -n "$hardcode_libdir_flag_spec_ld"; then case $archive_cmds in *\$LD*) eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\" ;; *) eval dep_rpath=\"$hardcode_libdir_flag_spec\" ;; esac else eval dep_rpath=\"$hardcode_libdir_flag_spec\" fi fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do rpath="$rpath$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names realname="$2" shift; shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" linknames= for link do linknames="$linknames $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then $show "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $run $rm $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" if len=`expr "X$cmd" : ".*"` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then $show "$cmd" $run eval "$cmd" || exit $? skipped_export=false else # The command line is too long to execute in one step. $show "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" if test -n "$export_symbols_regex"; then $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"" $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' $show "$mv \"${export_symbols}T\" \"$export_symbols\"" $run eval '$mv "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"' fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) tmp_deplibs="$tmp_deplibs $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" else gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $convenience libobjs="$libobjs $func_extract_archives_result" fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" linker_flags="$linker_flags $flag" fi # Make a backup of the uninstalled library when relinking if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise. $echo "creating reloadable object files..." # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output output_la=`$echo "X$output" | $Xsed -e "$basename"` # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= delfiles= last_robj= k=1 output=$output_objdir/$output_la-${k}.$objext # Loop over the list of objects to be linked. for obj in $save_libobjs do eval test_cmds=\"$reload_cmds $objlist $last_robj\" if test "X$objlist" = X || { len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len"; }; then objlist="$objlist $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. eval concat_cmds=\"$reload_cmds $objlist $last_robj\" else # All subsequent reloadable object files will link in # the last one created. eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\" fi last_robj=$output_objdir/$output_la-${k}.$objext k=`expr $k + 1` output=$output_objdir/$output_la-${k}.$objext objlist=$obj len=1 fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\" if ${skipped_export-false}; then $show "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $run $rm $export_symbols libobjs=$output # Append the command to create the export file. eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\" fi # Set up a command to remove the reloadable object files # after they are used. i=0 while test "$i" -lt "$k" do i=`expr $i + 1` delfiles="$delfiles $output_objdir/$output_la-${i}.$objext" done $echo "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi # Append the command to remove the reloadable object files # to the just-reset $cmds. eval cmds=\"\$cmds~\$rm $delfiles\" fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' fi exit $lt_exit } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then $show "${rm}r $gentop" $run ${rm}r "$gentop" fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)" $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $? fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) case " $deplibs" in *\ -l* | *\ -L*) $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2 ;; esac if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2 fi if test -n "$rpath"; then $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2 fi if test -n "$xrpath"; then $echo "$modename: warning: \`-R' is ignored for objects" 1>&2 fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for objects" 1>&2 fi case $output in *.lo) if test -n "$objs$old_deplibs"; then $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2 exit $EXIT_FAILURE fi libobj="$output" obj=`$echo "X$output" | $Xsed -e "$lo2o"` ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $run $rm $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$echo "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'` else gentop="$output_objdir/${obj}x" generated="$generated $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # Create the old-style object. reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" cmds=$reload_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $run eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" cmds=$reload_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;; esac if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for programs" 1>&2 fi if test "$preload" = yes; then if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown && test "$dlopen_self_static" = unknown; then $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support." fi fi case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'` finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'` ;; esac case $host in *darwin*) # Don't allow lazy linking, it breaks C++ global constructors if test "$tagname" = CXX ; then compile_command="$compile_command ${wl}-bind_at_load" finalize_command="$finalize_command ${wl}-bind_at_load" fi ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) new_libs="$new_libs -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$new_libs $deplib" ;; esac ;; *) new_libs="$new_libs $deplib" ;; esac done compile_deplibs="$new_libs" compile_command="$compile_command $compile_deplibs" finalize_command="$finalize_command $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" rpath="$rpath $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) perm_rpath="$perm_rpath $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) testbindir=`$echo "X$libdir" | $Xsed -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; *) dllsearchpath="$dllsearchpath:$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; *) dllsearchpath="$dllsearchpath:$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" rpath="$rpath $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` fi dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then dlsyms="${outputname}S.c" else $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2 fi fi if test -n "$dlsyms"; then case $dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${outputname}.nm" $show "$rm $nlist ${nlist}S ${nlist}T" $run $rm "$nlist" "${nlist}S" "${nlist}T" # Parse the name list into a source file. $show "creating $output_objdir/$dlsyms" test -z "$run" && $echo > "$output_objdir/$dlsyms" "\ /* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */ /* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */ #ifdef __cplusplus extern \"C\" { #endif /* Prevent the only kind of declaration conflicts we can make. */ #define lt_preloaded_symbols some_other_symbol /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then $show "generating symbol list for \`$output'" test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` for arg in $progfiles; do $show "extracting global C symbols from \`$arg'" $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' $run eval '$mv "$nlist"T "$nlist"' fi if test -n "$export_symbols_regex"; then $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' $run eval '$mv "$nlist"T "$nlist"' fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$outputname.exp" $run $rm $export_symbols $run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* ) $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' $run eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac else $run eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' $run eval 'mv "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* ) $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' $run eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac fi fi for arg in $dlprefiles; do $show "extracting global C symbols from \`$arg'" name=`$echo "$arg" | ${SED} -e 's%^.*/%%'` $run eval '$echo ": $name " >> "$nlist"' $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" done if test -z "$run"; then # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $mv "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if grep -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else grep -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"' else $echo '/* NONE */' >> "$output_objdir/$dlsyms" fi $echo >> "$output_objdir/$dlsyms" "\ #undef lt_preloaded_symbols #if defined (__STDC__) && __STDC__ # define lt_ptr void * #else # define lt_ptr char * # define const #endif /* The mapping between symbol names and symbols. */ " case $host in *cygwin* | *mingw* ) $echo >> "$output_objdir/$dlsyms" "\ /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs */ struct { " ;; * ) $echo >> "$output_objdir/$dlsyms" "\ const struct { " ;; esac $echo >> "$output_objdir/$dlsyms" "\ const char *name; lt_ptr address; } lt_preloaded_symbols[] = {\ " eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms" $echo >> "$output_objdir/$dlsyms" "\ {0, (lt_ptr) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " fi pic_flag_for_symtable= case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) case "$compile_command " in *" -static "*) ;; *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";; esac;; *-*-hpux*) case "$compile_command " in *" -static "*) ;; *) pic_flag_for_symtable=" $pic_flag";; esac esac # Now compile the dynamic symbol file. $show "(cd $output_objdir && $LTCC $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")" $run eval '(cd $output_objdir && $LTCC $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $? # Clean up the generated files. $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T" $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T" # Transform the symbol file into the correct name. case $host in *cygwin* | *mingw* ) if test -f "$output_objdir/${outputname}.def" ; then compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%" | $NL2SP` else compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` fi ;; * ) compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` ;; esac ;; *) $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2 exit $EXIT_FAILURE ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s% @SYMFILE@%%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s% @SYMFILE@%%" | $NL2SP` fi if test "$need_relink" = no || test "$build_libtool_libs" != yes; then # Replace the output file specification. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$output"'%g' | $NL2SP` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. $show "$link_command" $run eval "$link_command" exit_status=$? # Delete the generated files. if test -n "$dlsyms"; then $show "$rm $output_objdir/${outputname}S.${objext}" $run $rm "$output_objdir/${outputname}S.${objext}" fi exit $exit_status fi if test -n "$shlibpath_var"; then # We should set the shlibpath_var rpath= for dir in $temp_rpath; do case $dir in [\\/]* | [A-Za-z]:[\\/]*) # Absolute path. rpath="$rpath$dir:" ;; *) # Relative path: add a thisdir entry. rpath="$rpath\$thisdir/$dir:" ;; esac done temp_rpath="$rpath" fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do rpath="$rpath$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do rpath="$rpath$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $run $rm $output # Link the executable and exit $show "$link_command" $run eval "$link_command" || exit $? exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2 $echo "$modename: \`$output' will be relinked during installation" 1>&2 else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $SP2NL | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g' | $NL2SP` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname $show "$link_command" $run eval "$link_command" || exit $? # Now create the wrapper script. $show "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` relink_command="$var=\"$var_value\"; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP` fi # Quote $echo for shipping. if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then case $progpath in [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";; *) qecho="$SHELL `pwd`/$progpath --fallback-echo";; esac qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"` else qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"` fi # Only actually do things if our run command is non-null. if test -z "$run"; then # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) output_name=`basename $output` output_path=`dirname $output` cwrappersource="$output_path/$objdir/lt-$output_name.c" cwrapper="$output_path/$output_name.exe" $rm $cwrappersource $cwrapper trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 cat > $cwrappersource <> $cwrappersource<<"EOF" #include #include #include #include #include #include #include #include #include #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) # define HAVE_DOS_BASED_FILE_SYSTEM # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) /* -DDEBUG is fairly common in CFLAGS. */ #undef DEBUG #if defined DEBUGWRAPPER # define DEBUG(format, ...) fprintf(stderr, format, __VA_ARGS__) #else # define DEBUG(format, ...) #endif const char *program_name = NULL; void * xmalloc (size_t num); char * xstrdup (const char *string); const char * base_name (const char *name); char * find_executable(const char *wrapper); int check_executable(const char *path); char * strendzap(char *str, const char *pat); void lt_fatal (const char *message, ...); int main (int argc, char *argv[]) { char **newargz; int i; program_name = (char *) xstrdup (base_name (argv[0])); DEBUG("(main) argv[0] : %s\n",argv[0]); DEBUG("(main) program_name : %s\n",program_name); newargz = XMALLOC(char *, argc+2); EOF cat >> $cwrappersource <> $cwrappersource <<"EOF" newargz[1] = find_executable(argv[0]); if (newargz[1] == NULL) lt_fatal("Couldn't find %s", argv[0]); DEBUG("(main) found exe at : %s\n",newargz[1]); /* we know the script has the same name, without the .exe */ /* so make sure newargz[1] doesn't end in .exe */ strendzap(newargz[1],".exe"); for (i = 1; i < argc; i++) newargz[i+1] = xstrdup(argv[i]); newargz[argc+1] = NULL; for (i=0; i> $cwrappersource <> $cwrappersource <> $cwrappersource <<"EOF" return 127; } void * xmalloc (size_t num) { void * p = (void *) malloc (num); if (!p) lt_fatal ("Memory exhausted"); return p; } char * xstrdup (const char *string) { return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL ; } const char * base_name (const char *name) { const char *base; #if defined (HAVE_DOS_BASED_FILE_SYSTEM) /* Skip over the disk name in MSDOS pathnames. */ if (isalpha ((unsigned char)name[0]) && name[1] == ':') name += 2; #endif for (base = name; *name; name++) if (IS_DIR_SEPARATOR (*name)) base = name + 1; return base; } int check_executable(const char * path) { struct stat st; DEBUG("(check_executable) : %s\n", path ? (*path ? path : "EMPTY!") : "NULL!"); if ((!path) || (!*path)) return 0; if ((stat (path, &st) >= 0) && ( /* MinGW & native WIN32 do not support S_IXOTH or S_IXGRP */ #if defined (S_IXOTH) ((st.st_mode & S_IXOTH) == S_IXOTH) || #endif #if defined (S_IXGRP) ((st.st_mode & S_IXGRP) == S_IXGRP) || #endif ((st.st_mode & S_IXUSR) == S_IXUSR)) ) return 1; else return 0; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise */ char * find_executable (const char* wrapper) { int has_slash = 0; const char* p; const char* p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; int tmp_len; char* concat_name; DEBUG("(find_executable) : %s\n", wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!"); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha ((unsigned char)wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable(concat_name)) return concat_name; XFREE(concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable(concat_name)) return concat_name; XFREE(concat_name); } #if defined (HAVE_DOS_BASED_FILE_SYSTEM) } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char* path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char* q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR(*q)) break; p_len = q - p; p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal ("getcwd failed"); tmp_len = strlen(tmp); concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC(char, p_len + 1 + strlen(wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable(concat_name)) return concat_name; XFREE(concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal ("getcwd failed"); tmp_len = strlen(tmp); concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable(concat_name)) return concat_name; XFREE(concat_name); return NULL; } char * strendzap(char *str, const char *pat) { size_t len, patlen; assert(str != NULL); assert(pat != NULL); len = strlen(str); patlen = strlen(pat); if (patlen <= len) { str += len - patlen; if (strcmp(str, pat) == 0) *str = '\0'; } return str; } static void lt_error_core (int exit_status, const char * mode, const char * message, va_list ap) { fprintf (stderr, "%s: %s: ", program_name, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, "FATAL", message, ap); va_end (ap); } EOF # we should really use a build-platform specific compiler # here, but OTOH, the wrappers (shell script and this C one) # are only useful if you want to execute the "real" binary. # Since the "real" binary is built for $host, then this # wrapper might as well be built for $host, too. $run $LTCC $LTCFLAGS -s -o $cwrapper $cwrappersource ;; esac $rm $output trap "$rm $output; exit $EXIT_FAILURE" 1 2 15 $echo > $output "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='${SED} -e 1s/^X//' sed_quote_subst='$sed_quote_subst' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variable: notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$echo are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then echo=\"$qecho\" file=\"\$0\" # Make sure echo works. if test \"X\$1\" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then # Yippee, \$echo works! : else # Restart under the correct shell, and then maybe \$echo will work. exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"} fi fi\ " $echo >> $output "\ # Find the directory that this script lives in. thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\` done # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $echo >> $output "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || \\ { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $mkdir \"\$progdir\" else $rm \"\$progdir/\$file\" fi" $echo >> $output "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $echo \"\$relink_command_output\" >&2 $rm \"\$progdir/\$file\" exit $EXIT_FAILURE fi fi $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $rm \"\$progdir/\$program\"; $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; } $rm \"\$progdir/\$file\" fi" else $echo >> $output "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $echo >> $output "\ if test -f \"\$progdir/\$program\"; then" # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $echo >> $output "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\` export $shlibpath_var " fi # fixup the dll searchpath if we need to. if test -n "$dllsearchpath"; then $echo >> $output "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi $echo >> $output "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2*) $echo >> $output "\ exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $echo >> $output "\ exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $echo >> $output "\ \$echo \"\$0: cannot exec \$program \$*\" exit $EXIT_FAILURE fi else # The program doesn't exist. \$echo \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$echo \"This script is just a wrapper for \$program.\" 1>&2 $echo \"See the $PACKAGE documentation for more information.\" 1>&2 exit $EXIT_FAILURE fi fi\ " chmod +x $output fi exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $addlibs oldobjs="$oldobjs $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do $echo "X$obj" | $Xsed -e 's%^.*/%%' done | sort | sort -uc >/dev/null 2>&1); then : else $echo "copying selected object files to avoid basename conflicts..." if test -z "$gentop"; then gentop="$output_objdir/${outputname}x" generated="$generated $gentop" $show "${rm}r $gentop" $run ${rm}r "$gentop" $show "$mkdir $gentop" $run $mkdir "$gentop" exit_status=$? if test "$exit_status" -ne 0 && test ! -d "$gentop"; then exit $exit_status fi fi save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do objbase=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase counter=`expr $counter + 1` case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" $run ln "$obj" "$gentop/$newobj" || $run cp "$obj" "$gentop/$newobj" oldobjs="$oldobjs $gentop/$newobj" ;; *) oldobjs="$oldobjs $obj" ;; esac done fi eval cmds=\"$old_archive_cmds\" if len=`expr "X$cmds" : ".*"` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts $echo "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done for obj in $save_oldobjs do oldobjs="$objlist $obj" objlist="$objlist $obj" eval test_cmds=\"$old_archive_cmds\" if len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do eval cmd=\"$cmd\" IFS="$save_ifs" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" done if test -n "$generated"; then $show "${rm}r$generated" $run ${rm}r$generated fi # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" $show "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` relink_command="$var=\"$var_value\"; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. if test -z "$run"; then for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -z "$libdir"; then $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdependency_libs="$newdependency_libs $libdir/$name" ;; *) newdependency_libs="$newdependency_libs $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` if test -z "$libdir"; then $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdlfiles="$newdlfiles $libdir/$name" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` if test -z "$libdir"; then $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdlprefiles="$newdlprefiles $libdir/$name" done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac newdlfiles="$newdlfiles $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac newdlprefiles="$newdlprefiles $abs" done dlprefiles="$newdlprefiles" fi $rm $output # place dlname in correct position for cygwin tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;; esac $echo > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $echo >> $output "\ relink_command=\"$relink_command\"" fi done fi # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)" $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $? ;; esac exit $EXIT_SUCCESS ;; # libtool install mode install) modename="$modename: install" # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. $echo "X$nonopt" | grep shtool > /dev/null; then # Aesthetically quote it. arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac install_prog="$arg " arg="$1" shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac install_prog="$install_prog$arg" # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= for arg do if test -n "$dest"; then files="$files $dest" dest=$arg continue fi case $arg in -d) isdir=yes ;; -f) case " $install_prog " in *[\\\ /]cp\ *) ;; *) prev=$arg ;; esac ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac install_prog="$install_prog $arg" done if test -z "$install_prog"; then $echo "$modename: you must specify an install program" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test -n "$prev"; then $echo "$modename: the \`$prev' option requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test -z "$files"; then if test -z "$dest"; then $echo "$modename: no file or destination specified" 1>&2 else $echo "$modename: you must specify a destination" 1>&2 fi $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Strip any trailing slash from the destination. dest=`$echo "X$dest" | $Xsed -e 's%/$%%'` # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'` test "X$destdir" = "X$dest" && destdir=. destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'` # Not a directory, so check to see that there is only one file specified. set dummy $files if test "$#" -gt 2; then $echo "$modename: \`$dest' is not a directory" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. staticlibs="$staticlibs $file" ;; *.la) # Check to see that this really is a libtool archive. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$file' is not a valid libtool archive" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi library_names= old_library= relink_command= # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) current_libdirs="$current_libdirs $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) future_libdirs="$future_libdirs $libdir" ;; esac fi dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/ test "X$dir" = "X$file/" && dir= dir="$dir$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. if test "$inst_prefix_dir" = "$destdir"; then $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2 exit $EXIT_FAILURE fi if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$echo "$relink_command" | $SP2NL | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%" | $NL2SP` else relink_command=`$echo "$relink_command" | $SP2NL | $SED "s%@inst_prefix_dir@%%" | $NL2SP` fi $echo "$modename: warning: relinking \`$file'" 1>&2 $show "$relink_command" if $run eval "$relink_command"; then : else $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 exit $EXIT_FAILURE fi fi # See the names of the shared library. set dummy $library_names if test -n "$2"; then realname="$2" shift shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. $show "$install_prog $dir/$srcname $destdir/$realname" $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $? if test -n "$stripme" && test -n "$striplib"; then $show "$striplib $destdir/$realname" $run eval "$striplib $destdir/$realname" || exit $? fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try `ln -sf' first, because the `ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do if test "$linkname" != "$realname"; then $show "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" $run eval "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" fi done fi # Do each command in the postinstall commands. lib="$destdir/$realname" cmds=$postinstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' fi exit $lt_exit } done IFS="$save_ifs" fi # Install the pseudo-library for information purposes. name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` instname="$dir/$name"i $show "$install_prog $instname $destdir/$name" $run eval "$install_prog $instname $destdir/$name" || exit $? # Maybe install the static library, too. test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"` ;; *.$objext) staticdest="$destfile" destfile= ;; *) $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac # Install the libtool object if requested. if test -n "$destfile"; then $show "$install_prog $file $destfile" $run eval "$install_prog $file $destfile" || exit $? fi # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. staticobj=`$echo "X$file" | $Xsed -e "$lo2o"` $show "$install_prog $staticobj $staticdest" $run eval "$install_prog \$staticobj \$staticdest" || exit $? fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then file=`$echo $file|${SED} 's,.exe$,,'` stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin*|*mingw*) wrapper=`$echo $file | ${SED} -e 's,.exe$,,'` ;; *) wrapper=$file ;; esac if (${SED} -e '4q' $wrapper | grep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then notinst_deplibs= relink_command= # Note that it is not necessary on cygwin/mingw to append a dot to # foo even if both foo and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. # # If there is no directory component, then add one. case $wrapper in */* | *\\*) . ${wrapper} ;; *) . ./${wrapper} ;; esac # Check the variables that should have been set. if test -z "$notinst_deplibs"; then $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2 exit $EXIT_FAILURE fi finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then # If there is no directory component, then add one. case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac fi libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2 finalize=no fi done relink_command= # Note that it is not necessary on cygwin/mingw to append a dot to # foo even if both foo and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. # # If there is no directory component, then add one. case $wrapper in */* | *\\*) . ${wrapper} ;; *) . ./${wrapper} ;; esac outputname= if test "$fast_install" = no && test -n "$relink_command"; then if test "$finalize" = yes && test -z "$run"; then tmpdir=`func_mktempdir` file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'` outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g' | $NL2SP` $show "$relink_command" if $run eval "$relink_command"; then : else $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 ${rm}r "$tmpdir" continue fi file="$outputname" else $echo "$modename: warning: cannot relink \`$file'" 1>&2 fi else # Install the binary that we compiled earlier. file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'` ;; esac ;; esac $show "$install_prog$stripme $file $destfile" $run eval "$install_prog\$stripme \$file \$destfile" || exit $? test -n "$outputname" && ${rm}r "$tmpdir" ;; esac done for file in $staticlibs; do name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` # Set up the ranlib parameters. oldlib="$destdir/$name" $show "$install_prog $file $oldlib" $run eval "$install_prog \$file \$oldlib" || exit $? if test -n "$stripme" && test -n "$old_striplib"; then $show "$old_striplib $oldlib" $run eval "$old_striplib $oldlib" || exit $? fi # Do each command in the postinstall commands. cmds=$old_postinstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" done if test -n "$future_libdirs"; then $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2 fi if test -n "$current_libdirs"; then # Maybe just do a dry run. test -n "$run" && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi ;; # libtool finish mode finish) modename="$modename: finish" libdirs="$nonopt" admincmds= if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for dir do libdirs="$libdirs $dir" done for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. cmds=$finish_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || admincmds="$admincmds $cmd" done IFS="$save_ifs" fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $run eval "$cmds" || admincmds="$admincmds $cmds" fi done fi # Exit here if they wanted silent mode. test "$show" = : && exit $EXIT_SUCCESS $echo "X----------------------------------------------------------------------" | $Xsed $echo "Libraries have been installed in:" for libdir in $libdirs; do $echo " $libdir" done $echo $echo "If you ever happen to want to link against installed libraries" $echo "in a given directory, LIBDIR, you must either use libtool, and" $echo "specify the full pathname of the library, or use the \`-LLIBDIR'" $echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then $echo " - add LIBDIR to the \`$shlibpath_var' environment variable" $echo " during execution" fi if test -n "$runpath_var"; then $echo " - add LIBDIR to the \`$runpath_var' environment variable" $echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $echo " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $echo " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi $echo $echo "See any operating system documentation about shared libraries for" $echo "more information, such as the ld(1) and ld.so(8) manual pages." $echo "X----------------------------------------------------------------------" | $Xsed exit $EXIT_SUCCESS ;; # libtool execute mode execute) modename="$modename: execute" # The first argument is the command name. cmd="$nonopt" if test -z "$cmd"; then $echo "$modename: you must specify a COMMAND" 1>&2 $echo "$help" exit $EXIT_FAILURE fi # Handle -dlopen flags immediately. for file in $execute_dlfiles; do if test ! -f "$file"; then $echo "$modename: \`$file' is not a file" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi dir= case $file in *.la) # Check to see that this really is a libtool archive. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Read the libtool library. dlname= library_names= # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'" continue fi dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$file" && dir=. if test -f "$dir/$objdir/$dlname"; then dir="$dir/$objdir" else if test ! -f "$dir/$dlname"; then $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2 exit $EXIT_FAILURE fi fi ;; *.lo) # Just add the directory containing the .lo file. dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$file" && dir=. ;; *) $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2 continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -*) ;; *) # Do a test to see if this is really a libtool program. if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"` args="$args \"$file\"" done if test -z "$run"; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var fi" done # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\"" $echo "export $shlibpath_var" fi $echo "$cmd$args" exit $EXIT_SUCCESS fi ;; # libtool clean and uninstall mode clean | uninstall) modename="$modename: $mode" rm="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) rm="$rm $arg"; rmforce=yes ;; -*) rm="$rm $arg" ;; *) files="$files $arg" ;; esac done if test -z "$rm"; then $echo "$modename: you must specify an RM program" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi rmdirs= origobjdir="$objdir" for file in $files; do dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` if test "X$dir" = "X$file"; then dir=. objdir="$origobjdir" else objdir="$dir/$origobjdir" fi name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` test "$mode" = uninstall && objdir="$dir" # Remember objdir for removal later, being careful to avoid duplicates if test "$mode" = clean; then case " $rmdirs " in *" $objdir "*) ;; *) rmdirs="$rmdirs $objdir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if (test -L "$file") >/dev/null 2>&1 \ || (test -h "$file") >/dev/null 2>&1 \ || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then . $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do rmfiles="$rmfiles $objdir/$n" done test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library" case "$mode" in clean) case " $library_names " in # " " in the beginning catches empty $dlname *" $dlname "*) ;; *) rmfiles="$rmfiles $objdir/$dlname" ;; esac test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. cmds=$postuninstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" if test "$?" -ne 0 && test "$rmforce" != yes; then exit_status=1 fi done IFS="$save_ifs" fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. cmds=$old_postuninstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" if test "$?" -ne 0 && test "$rmforce" != yes; then exit_status=1 fi done IFS="$save_ifs" fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then # Read the .lo file . $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" \ && test "$pic_object" != none; then rmfiles="$rmfiles $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" \ && test "$non_pic_object" != none; then rmfiles="$rmfiles $dir/$non_pic_object" fi fi ;; *) if test "$mode" = clean ; then noexename=$name case $file in *.exe) file=`$echo $file|${SED} 's,.exe$,,'` noexename=`$echo $name|${SED} 's,.exe$,,'` # $file with .exe has already been added to rmfiles, # add $file without .exe rmfiles="$rmfiles $file" ;; esac # Do a test to see if this is a libtool program. if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then relink_command= . $dir/$noexename # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then rmfiles="$rmfiles $objdir/lt-$name" fi if test "X$noexename" != "X$name" ; then rmfiles="$rmfiles $objdir/lt-${noexename}.c" fi fi fi ;; esac $show "$rm $rmfiles" $run $rm $rmfiles || exit_status=1 done objdir="$origobjdir" # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then $show "rmdir $dir" $run rmdir $dir >/dev/null 2>&1 fi done exit $exit_status ;; "") $echo "$modename: you must specify a MODE" 1>&2 $echo "$generic_help" 1>&2 exit $EXIT_FAILURE ;; esac if test -z "$exec_cmd"; then $echo "$modename: invalid operation mode \`$mode'" 1>&2 $echo "$generic_help" 1>&2 exit $EXIT_FAILURE fi fi # test -z "$show_help" if test -n "$exec_cmd"; then eval exec $exec_cmd exit $EXIT_FAILURE fi # We need to display help for each of the modes. case $mode in "") $echo \ "Usage: $modename [OPTION]... [MODE-ARG]... Provide generalized library-building support services. --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --finish same as \`--mode=finish' --help display this help message and exit --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS] --quiet same as \`--silent' --silent don't print informational messages --tag=TAG use configuration variables from tag TAG --version print version information MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for a more detailed description of MODE. Report bugs to ." exit $EXIT_SUCCESS ;; clean) $echo \ "Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $echo \ "Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -prefer-pic try to building PIC objects only -prefer-non-pic try to building non-PIC objects only -static always build a \`.o' file suitable for static linking COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $echo \ "Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $echo \ "Usage: $modename [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $echo \ "Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $echo \ "Usage: $modename [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $echo \ "Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) $echo "$modename: invalid operation mode \`$mode'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac $echo $echo "Try \`$modename --help' for more information about other modes." exit $? # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared disable_libs=shared # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static disable_libs=static # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: ftgl-2.1.3~rc5/.auto/missing0000755000175000017500000002557711024231634012643 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2006-05-10.23 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). case $1 in lex|yacc) # Not GNU programs, they don't have --version. ;; tar) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $1 in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: ftgl-2.1.3~rc5/.auto/config.guess0000755000175000017500000012753411024231635013561 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. timestamp='2008-01-23' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner . # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # The plan is that this can be called by configure scripts if you # don't specify an explicit build system type. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep __ELF__ >/dev/null then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[456]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep __LP64__ >/dev/null then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:[3456]*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; EM64T | authenticamd) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-gnu else echo ${UNAME_MACHINE}-unknown-linux-gnueabi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips #undef mipsel #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mipsel #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^CPU/{ s: ::g p }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips64 #undef mips64el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mips64el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips64 #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^CPU/{ s: ::g p }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent # problems with other programs or directories called `ld' in the path. # Set LC_ALL=C to ensure ld outputs messages in English. ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ | sed -ne '/supported targets:/!d s/[ ][ ]*/ /g s/.*supported targets: *// s/ .*// p'` case "$ld_supported_targets" in elf32-i386) TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit ;; coff-i386) echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include #ifdef __ELF__ # ifdef __GLIBC__ # if __GLIBC__ >= 2 LIBC=gnu # else LIBC=gnulibc1 # endif # else LIBC=gnulibc1 # endif #else #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) LIBC=gnu #else LIBC=gnuaout #endif #endif #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^LIBC/{ s: ::g p }'`" test x"${LIBC}" != x && { echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit } test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i386. echo i386-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: ftgl-2.1.3~rc5/ChangeLog0000644000175000017500000053535111024234452011765 000000000000002008-06-12 14:13 sammy * [r1189] NEWS, configure.ac: * Updated NEWS file. * Mark package as being version 2.1.3~rc5. 2008-06-12 14:13 sammy * [r1188] src/FTGL/FTBufferGlyph.h, src/FTGlyph/FTGlyphGlue.cpp: * ftglCreateBufferGlyph: do not export FTBufferFont in the C API: we do not have easy ways to emulate the FTBuffer object. 2008-06-12 14:13 sammy * [r1187] src/FTFont/FTBufferFont.cpp: * Prevent issues when strndup is defined as a macro. 2008-06-11 23:35 dtremenak * [r1186] msvc/vc8/ftgl_dll.vcproj: be consistent 2008-06-11 23:34 dtremenak * [r1185] msvc/vc71/ftgl_dll.vcproj: fix vc7.1 project 2008-06-11 23:23 dtremenak * [r1184] configure.ac, src/FTFont/FTBufferFont.cpp: provide for us poor sobs who don't have a native strndup implementation 2008-06-09 14:21 sammy * [r1183] README: * Update README. 2008-06-09 12:57 sammy * [r1182] AUTHORS, src/FTCharmap.cpp, src/FTContour.cpp, src/FTContour.h, src/FTFace.cpp, src/FTFont/FTBitmapFont.cpp, src/FTFont/FTBitmapFontImpl.h, src/FTFont/FTExtrudeFont.cpp, src/FTFont/FTExtrudeFontImpl.h, src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp, src/FTFont/FTFontImpl.h, src/FTFont/FTOutlineFont.cpp, src/FTFont/FTOutlineFontImpl.h, src/FTFont/FTPixmapFont.cpp, src/FTFont/FTPixmapFontImpl.h, src/FTFont/FTPolygonFont.cpp, src/FTFont/FTPolygonFontImpl.h, src/FTFont/FTTextureFont.cpp, src/FTFont/FTTextureFontImpl.h, src/FTGlyph/FTBitmapGlyph.cpp, src/FTGlyph/FTBitmapGlyphImpl.h, src/FTGlyph/FTExtrudeGlyph.cpp, src/FTGlyph/FTExtrudeGlyphImpl.h, src/FTGlyph/FTGlyph.cpp, src/FTGlyph/FTGlyphGlue.cpp, src/FTGlyph/FTGlyphImpl.h, src/FTGlyph/FTOutlineGlyph.cpp, src/FTGlyph/FTOutlineGlyphImpl.h, src/FTGlyph/FTPixmapGlyph.cpp, src/FTGlyph/FTPixmapGlyphImpl.h, src/FTGlyph/FTPolygonGlyph.cpp, src/FTGlyph/FTPolygonGlyphImpl.h, src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyph/FTTextureGlyphImpl.h, src/FTGlyphContainer.cpp, src/FTGlyphContainer.h, src/FTInternals.h, src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutGlue.cpp, src/FTLayout/FTLayoutImpl.h, src/FTLayout/FTSimpleLayout.cpp, src/FTLayout/FTSimpleLayoutImpl.h, src/FTPoint.cpp, src/FTVectoriser.cpp, src/FTVectoriser.h: * Add my copyright information to files I modified significantly. * Add the Unicode, Inc. to the list of authors because of FTUnicode.h. 2008-06-09 11:47 sammy * [r1181] src/FTContour.cpp, src/FTContour.h: * Code simplifications in FTContour. 2008-06-09 11:47 sammy * [r1180] src/FTGL/FTPoint.h: * Add "const" qualifier to FTPoint's scalar multiplication operator. 2008-06-09 11:45 sammy * [r1179] src/FTBuffer.cpp, src/FTContour.cpp, src/FTFont/FTBufferFont.cpp, src/FTGL/FTBuffer.h, src/FTGlyph/FTBufferGlyph.cpp: * Document and reorganise FTBuffer. It is now clean enough. 2008-06-09 10:13 sammy * [r1178] src/FTGL/FTBufferGlyph.h, src/FTGL/FTGlyph.h: * Document missing function parameters. 2008-06-09 10:12 sammy * [r1177] src/FTContour.cpp: * Better FTContour::ComputeOutsetPoint() documentation. 2008-06-09 10:11 sammy * [r1176] src/FTFont/FTBufferFont.cpp, src/FTFont/FTExtrudeFont.cpp, src/FTFont/FTExtrudeFontImpl.h, src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp, src/FTFont/FTFontImpl.h, src/FTFont/FTOutlineFont.cpp, src/FTFont/FTOutlineFontImpl.h, src/FTFont/FTPixmapFont.cpp, src/FTFont/FTPixmapFontImpl.h, src/FTFont/FTPolygonFont.cpp, src/FTFont/FTPolygonFontImpl.h, src/FTFont/FTTextureFont.cpp, src/FTGL/FTFont.h: * Create FTFont::GlyphLoadFlags() to vary FT_Load_Glyph() calls according to the font type. Now we no longer load vector information when not needed. 2008-06-08 15:56 sammy * [r1175] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp, src/FTFont/FTFontImpl.h, src/FTGL/FTFont.h, src/FTGL/FTGlyph.h, src/FTGlyph/FTGlyph.cpp, src/FTGlyph/FTGlyphGlue.cpp, src/FTGlyph/FTGlyphImpl.h, src/FTGlyphContainer.cpp, src/FTGlyphContainer.h, src/FTLayout/FTSimpleLayout.cpp, test/FTFont-Test.cpp, test/FTGlyph-Test.cpp, test/FTGlyphContainer-Test.cpp: * Revert the FTFont::Advance() and FTGlyph::Advance() improvements. After discussion, I was convinced they were not worth the backwards compatibility breakage. They now return float again, instead of FTPoint. 2008-06-08 15:55 sammy * [r1174] src/FTFont/FTBufferFont.cpp: * Add a comment to FTBufferFont to not forget about bugs in it. 2008-06-03 12:24 sammy * [r1173] src/FTGlyph/FTExtrudeGlyph.cpp: * Fix a crash in FTExtrudeGlyph caused by uninitialised members. 2008-06-03 12:23 sammy * [r1172] configure.ac, src/FTFont/FTBufferFont.cpp: * FTBufferFont: use strndup() and, when available, wcsdup(). 2008-06-03 12:23 sammy * [r1171] demo/FTGLDemo.cpp, src/FTFont/FTBufferFont.cpp, src/FTFont/FTFont.cpp, src/FTUnicode.h: * Coding style: remove tabs and trailing spaces, wrap long lines. 2008-06-03 12:22 sammy * [r1170] BUGS, m4/font.m4: * Multiline sed scripts won't work very well on Cygwin. Falling back to two piped sed calls instead. 2008-05-30 04:07 brlcad * [r1169] m4/font.m4: push jwmelto's fix for the sed script error back upstream into ftgl 2008-05-28 18:00 brlcad * [r1168] configure.ac: remove unused/unnecessary check for memset 2008-05-28 15:46 brlcad * [r1167] demo/Makefile.am, test/Makefile.am: target-specific CPPFLAGS was not added to automake until 1.7 so use AM_CPPFLAGS instead 2008-05-28 06:07 brlcad * [r1166] BUGS: running configure on mac os x results in bad sed during search for a truetype font. haven't had time to investigate, but at least document it as a build system bug 2008-05-28 06:05 brlcad * [r1165] m4/freetype2.m4: merge freetype.m4 update from downstream bzflag, which is in turn from latest freetype2 sources albeit modified to not abort on failure to find the freetype-config script. 2008-05-28 04:43 brlcad * [r1164] mac: bye bye, baby, bye bye. no more mac dir. the xcode project was entirely out of sync to be of any use and the includes are pointless (do proper subconfigure management instead) 2008-05-24 19:04 dtremenak * [r1163] src/FTFont/FTBufferFont.cpp: from BZFlag r17264: rewrite StringCopy. wcscpy is not a standard function; we have logic for doing it ourselves already (minus the len = 0 case), so handle len = 0 and do it all ourselves. 2008-05-23 16:45 dtremenak * [r1162] src/FTUnicode.h: Copyright notices as requested by sam 2008-05-23 00:56 dtremenak * [r1161] src/FTLayout/FTSimpleLayout.cpp: include wctype.h to make gcc happy 2008-05-23 00:53 dtremenak * [r1160] src/FTFont/FTFont.cpp: no need to shadow variables 2008-05-23 00:46 dtremenak * [r1159] TODO, demo/FTGLDemo.cpp, msvc/vc8/ftgl_static.vcproj, src/FTFont/FTFont.cpp, src/FTLayout/FTSimpleLayout.cpp, src/FTUnicode.h, src/Makefile.am: * Provide a helper class for walking potentially-multibyte unicode strings. * Provide support for multibyte encodings (UTF-8, UTF-16) in FTFont and derived classes, and in FTSimpleLayout. * Put a few UTF-8 strings in non-latin codeplanes in FTGLDemo (toggle at compile-time) for testing. * FTSimpleLayout should be tested extensively before release. I would be surprised if I didn't break at least one unusual use case. 2008-05-23 00:20 dtremenak * [r1158] msvc/vc8/FTGLDemo.vcproj, msvc/vc8/trackball.vcproj: fix release mode configurations 2008-05-23 00:16 sammy * [r1157] src/FTFont/FTBufferFont.cpp, src/FTGL/FTBuffer.h, src/FTGlyph/FTBufferGlyph.cpp: * Start protecting FTBuffer members using getters and setters. 2008-05-23 00:16 sammy * [r1156] docs/projects_using_ftgl.txt: * Add ~40 entries to the list of projects that use FTGL. 2008-05-23 00:16 sammy * [r1155] docs/Makefile.am, docs/faq.dox, docs/ftgl.dox, docs/projects_using_ftgl.txt, docs/tutorial.dox: * Work around a Doxygen bug that creates fake latex references whenever we use "FTGL" in section names, and fails to remove the "%" in HTML pages whenever we use "%FTGL". Fixing HTML pages is easier. 2008-05-23 00:15 sammy * [r1154] docs/Makefile.am, docs/ftgl.dox, docs/tutorial.dox: * Simplify EPS creation rules. 2008-05-22 17:28 dtremenak * [r1153] msvc/config.h: quell deprecation messages for posix and c-style string functions 2008-05-22 15:32 sammy * [r1152] docs/images/texturefont.png, docs/tutorial.dox: * Add GLBufferFont to the tutorial. 2008-05-22 15:31 sammy * [r1151] src/FTFont/FTBufferFont.cpp, src/FTFont/FTBufferFontImpl.h: * Empty the FTBufferFont cache when changing the face size. 2008-05-22 15:31 sammy * [r1150] src/FTGlyph/FTBufferGlyph.cpp: * Fix a visual bug in FTBufferFont caused by overlapping glyphs. 2008-05-22 15:30 sammy * [r1149] docs/projects_using_ftgl.txt: * Add a few entries to the list of projects using FTGL: Gem, Libinstrudeo, Light Speed!, projectM, Tulip. 2008-05-22 15:30 sammy * [r1148] demo/c-demo.c, demo/simple.cpp: * Print FPS information in the small demos. 2008-05-22 14:38 sammy * [r1147] docs/Makefile.am, docs/doxygen.cfg.in, docs/faq.dox, docs/ftgl.dox, docs/projects_using_ftgl.txt, docs/tutorial.dox: * Refactor the documentation to have a cleaner frontpage: put the tutorial and the FAQ in two separate pages, add links to the most important C and C++ documentation, and add projects_using_ftgl.txt to the doxygen project. 2008-05-22 12:39 sammy * [r1146] src/FTFont/FTBufferFont.cpp, src/FTFont/FTBufferFontImpl.h: * Implement caching in FTBufferFont. To avoid unnecessary texture uploads, each font object keeps the last 16 strings in the graphic card. 2008-05-22 12:39 sammy * [r1145] src/FTFont/FTBufferFont.cpp, src/FTGlyph/FTBufferGlyph.cpp: * Fix an off-by-one error in FTBufferGlyph::Render. 2008-05-21 16:38 sammy * [r1144] demo/simple.cpp: * Revert the simple C++ demo to its previous state, now that FTBufferFont starts to work. 2008-05-21 16:37 sammy * [r1143] src/FTFont/FTBufferFont.cpp: * Fix the quad vertex order in FTBufferFont. 2008-05-21 16:36 sammy * [r1142] src/FTFont/FTFont.cpp: * Fix a bug in the FTFont::BBox calculation: the first glyph bbox was not relative to the position argument. 2008-05-21 15:45 sammy * [r1141] src/FTFont/FTBufferFont.cpp: * Fix a texture coordinate bug caused by our next-power-of-two ceiling. 2008-05-21 15:43 sammy * [r1140] src/FTFont/FTBitmapFont.cpp, src/FTFont/FTBufferFont.cpp, src/FTFont/FTOutlineFont.cpp, src/FTFont/FTPixmapFont.cpp, src/FTFont/FTTextureFont.cpp: * Add proper glPushAttrib() and glPushClientAttrib() calls to the rendering methods that need them. 2008-05-21 11:39 sammy * [r1139] src/FTFont/FTBufferFont.cpp, src/FTFont/FTTextureFont.cpp: * Enable GL_TEXTURE_2D in FTFont::Render variations that need it. 2008-05-21 11:39 sammy * [r1138] demo/simple.cpp: * Temporarily disabled lighting in the simple demo to test FTBufferFont. 2008-05-21 10:11 sammy * [r1137] demo/FTGLDemo.cpp: * Add FTBufferFont to the complex FTGL demo. 2008-05-21 01:16 dtremenak * [r1136] msvc/vc8/CDemo.vcproj, msvc/vc8/ftgl_demo.sln: build C demo on windows 2008-05-21 01:14 dtremenak * [r1135] demo/c-demo.c: all variables must be declared at the start of a block for C89 compliance. also use explicit float constants. 2008-05-21 00:53 dtremenak * [r1134] msvc/vc8/ftgl_dll.vcproj, msvc/vc8/ftgl_static.vcproj: missed FTBuffer.cpp 2008-05-21 00:44 dtremenak * [r1133] msvc/vc8/ftgl_dll.vcproj, msvc/vc8/ftgl_static.vcproj: build bufferfont/bufferglyph stuff on windows too 2008-05-21 00:39 dtremenak * [r1132] src/FTFont/FTFontGlue.cpp: quell warning 2008-05-20 23:49 sammy * [r1131] src/FTBuffer.cpp, src/FTFont/FTBufferFont.cpp, src/FTFont/FTBufferFontImpl.h, src/FTGL/FTBuffer.h, src/FTGL/FTBufferGlyph.h, src/FTGlyph/FTBufferGlyph.cpp, src/FTGlyph/FTBufferGlyphImpl.h, src/FTGlyph/FTGlyphGlue.cpp: * First try at the FTBufferFont/FTBufferGlyph implementation. 2008-05-20 23:48 sammy * [r1130] src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyph/FTTextureGlyphImpl.h: * Rename FTTextureGlyphImpl::pos to FTTextureGlyphImpl::corner because pos was misleading. 2008-05-19 15:45 sammy * [r1129] src/FTBuffer.cpp, src/FTFont/FTBufferFont.cpp, src/FTFont/FTBufferFontImpl.h, src/FTFont/FTFontGlue.cpp, src/FTGL/FTBuffer.h, src/FTGL/FTBufferFont.h, src/FTGL/FTBufferGlyph.h, src/FTGL/FTFont.h, src/FTGL/FTGlyph.h, src/FTGL/ftgl.h, src/FTGlyph/FTBufferGlyph.cpp, src/FTGlyph/FTBufferGlyphImpl.h, src/FTGlyph/FTGlyphGlue.cpp, src/FTInternals.h, src/Makefile.am: * Starting the buffer font class revival. For now, it just consists in empty FTBuffer, FTBufferGlyph and FTBufferFont classes. 2008-05-19 10:06 sammy * [r1128] src/FTCharmap.cpp: * Do not crash if the face has no charmaps. Bug found using zzuf: xvfb-run zzuf -q -F5 -r0.0000001:0.1 -s0:10000 -c CTest EunjinNakseo.ttf 2008-05-19 10:06 sammy * [r1127] src/FTVectoriser.cpp: * Simplified contour parity check routine, formula courtesy of Guillaume Bittoun. 2008-05-19 10:06 sammy * [r1126] src/FTContour.cpp: * Add parentheses around && within || to please gcc. 2008-05-19 10:05 sammy * [r1125] Makefile.am: * Add a "make upload-doc" rule for easy online documentation updates. 2008-05-12 14:25 sammy * [r1124] m4/font.m4: * Use fontconfig to find fonts on the system. 2008-05-12 14:11 sammy * [r1123] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, demo/c-demo.c, demo/simple.cpp: * The examples now use FONT_FILE if it was found by the configure step. 2008-05-12 14:10 sammy * [r1122] configure.ac, m4/font.m4: * Add an m4 check to look for a font file on the system. 2008-05-12 04:59 brlcad * [r1121] docs/Makefile.am, docs/projects_using_ftgl.txt: add a list of project using ftgl 2008-05-11 21:43 sammy * [r1120] src/FTFont/FTFontGlue.cpp, src/FTGlyph/FTGlyphGlue.cpp, src/FTLayout/FTLayoutGlue.cpp: * Simplify the C bindings. 70 lines gained. 2008-05-11 21:43 sammy * [r1119] src/FTGL/FTSimpleLayout.h, src/FTLayout/FTLayoutGlue.cpp, src/FTLayout/FTSimpleLayout.cpp: * Get rid of FTSimpleLayout::RenderSpace(). It's still useful in FTSimpleLayoutImpl, but as a public method FTFont::Render() is just as powerful. 2008-05-11 21:43 sammy * [r1118] demo/FTGLDemo.cpp, src/FTGL/FTFont.h, src/FTGL/FTLayout.h, src/FTGL/FTSimpleLayout.h, src/FTLayout/FTSimpleLayout.cpp, src/FTLayout/FTSimpleLayoutImpl.h: * Added optional position and string length to the Layout methods. 2008-05-11 11:29 sammy * [r1117] src/FTFont/FTFontImpl.h, src/FTGL/FTFont.h, src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutImpl.h, src/FTLayout/FTSimpleLayout.cpp: * Get rid of all methods in FTLayoutImpl that were accessing FTFontImpl internals, since FTFont now has all the proper public methods for that. 2008-05-11 11:29 sammy * [r1116] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h, src/FTLayout/FTLayout.cpp: * Get rid of FTFontImpl::DoRender(), one of the oldest TODOs. 2008-05-11 11:28 sammy * [r1115] src/FTGL/FTFont.h: * Re-add FTFont::BBox() implementations with the old prototype, in case old projects use them. 2008-05-11 11:28 sammy * [r1114] src/FTGlyph/FTExtrudeGlyph.cpp, src/FTGlyph/FTOutlineGlyph.cpp, src/FTGlyph/FTPolygonGlyph.cpp: * Honour the pen's Z coordinate when rendering glyphs (except the raster ones, where the Z coordinate makes no sense). 2008-05-11 11:28 sammy * [r1113] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, src/FTFont/FTBitmapFont.cpp, src/FTFont/FTBitmapFontImpl.h, src/FTFont/FTExtrudeFont.cpp, src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp, src/FTFont/FTFontImpl.h, src/FTFont/FTOutlineFont.cpp, src/FTFont/FTOutlineFontImpl.h, src/FTFont/FTPixmapFont.cpp, src/FTFont/FTPixmapFontImpl.h, src/FTFont/FTTextureFont.cpp, src/FTFont/FTTextureFontImpl.h, src/FTGL/FTFont.h, src/FTGlyphContainer.cpp, src/FTGlyphContainer.h, src/FTLayout/FTSimpleLayout.cpp, test/FTFont-Test.cpp, test/FTGlyphContainer-Test.cpp: * FTFont::Advance(), FTFont::Render() and FTFont::BBox() are now far more powerful, allowing for substring display and extra spacing between characters. 2008-05-11 11:26 sammy * [r1112] src/FTFont/FTBitmapFont.cpp, src/FTFont/FTBitmapFontImpl.h, src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h, src/FTFont/FTOutlineFont.cpp, src/FTFont/FTOutlineFontImpl.h, src/FTFont/FTPixmapFont.cpp, src/FTFont/FTPixmapFontImpl.h, src/FTFont/FTTextureFont.cpp, src/FTFont/FTTextureFontImpl.h, src/FTGL/FTFont.h, src/FTGL/FTLayout.h, src/FTGL/FTSimpleLayout.h, src/FTGL/ftgl.h, src/FTLayout/FTSimpleLayout.cpp, src/FTLayout/FTSimpleLayoutImpl.h: * Kill 180 lines of code by removing duplicate *::Render() functions and giving a default value to the renderMode parameter. 2008-05-11 11:23 sammy * [r1111] docs/ftgl.dox: * More documentation. 2008-05-11 11:23 sammy * [r1110] .gitignore: * Ignore autom4te.cache and generated EPS files. 2008-05-09 15:43 brlcad * [r1109] AUTHORS: add daniel and jeff 2008-05-09 15:41 brlcad * [r1108] demo/FTGLDemo.cpp, test/demo.cpp: reference a font that actually exists.. alas we do not all have a /Users/henry/Development directory. at least this one will exist if X11 is installed. 2008-05-09 13:42 sammy * [r1107] configure.ac, docs/Makefile.am, docs/ftgl.dox, docs/images/ftgl.png, docs/images/logo.png, docs/images/rasterfont.png, docs/images/texturefont.png, docs/images/vectorfont.png: * Add a few pictures to the documentation to illustrate what the font objects look like. * Generate EPS files at build time if the LaTeX output is activated. 2008-05-09 10:03 sammy * [r1106] BUGS: * Update BUGS. 2008-05-09 10:02 sammy * [r1105] src/FTFont/FTFontGlue.cpp, src/FTGlyph/FTGlyphGlue.cpp, src/FTLayout/FTLayoutGlue.cpp: * Put a few wrapper functions into extern "C++" braces because they return references to C++ objects. 2008-05-09 10:01 sammy * [r1104] src/FTContour.cpp: * Minor cosmetic fix (remove tab). 2008-05-08 23:45 dtremenak * [r1103] demo/trackball.c: use float constants when assigning to floats 2008-05-08 23:31 dtremenak * [r1102] msvc/config.h: disable "'this': used in base member initializer list" warning. although it is dangerous practice, it's valid and ftgl does not use the passed pointer until well after the object is guaranteed to be fully constructed. 2008-05-08 23:27 dtremenak * [r1101] msvc/vc8/FTGLDemo.vcproj: quell spurious deprecation warnings 2008-05-08 23:12 dtremenak * [r1100] src/FTVectoriser.cpp: and more fun with float/double consistency 2008-05-08 23:12 dtremenak * [r1099] src/FTContour.cpp: more fun with size_t consistency 2008-05-08 23:10 dtremenak * [r1098] msvc/config.h: M_PI and friends on MSVC are only defined if _USE_MATH_DEFINES is defined first. include it appropriately in config.h. 2008-05-08 22:35 sammy * [r1097] demo/c-demo.c, demo/simple.cpp, src/FTFont/FTFontGlue.cpp, src/FTGL/FTFont.h, src/FTGL/FTGlyph.h, src/FTGL/FTPolyGlyph.h, src/FTGlyph/FTGlyphGlue.cpp, src/FTInternals.h: * Implement C bindings for FTGlyph and FTFont subclassing. * Add subclassing to the simple C demo to show how to do similar stuff as in the C++ demo. 2008-05-08 17:07 sammy * [r1096] BUGS, TODO: * Update BUGS and TODO now that we got rid of some bugs. 2008-05-08 17:07 sammy * [r1095] src/FTContour.cpp, src/FTContour.h, src/FTVectoriser.cpp: * When a glyph is created, check that all its contours have the proper clockwise/counterclockwise orientation. This fixes a nasty display bug with some badly encoded fonts. 2008-05-08 17:06 sammy * [r1094] src/FTContour.cpp, src/FTContour.h: * During contour creation, compute whether the contour is clockwise or anti-clockwise. This will be needed later to correct fonts that do not abide to the even-odd and non-zero winding number conventions, thus breaking our nice outset glyphs. 2008-05-08 17:05 sammy * [r1093] src/FTGL/FTPoint.h: * Add scalar product to the FTPoint operators. 2008-05-08 17:04 sammy * [r1092] src/FTLayout/FTLayoutGlue.cpp: * Cosmetic fixes in the FTLayout C bindings. 2008-05-08 17:03 sammy * [r1091] src/FTContour.cpp: * Small optimisation in FTContour::ComputeOutsetPoint(). 2008-05-08 17:01 sammy * [r1090] src/FTGL/FTFont.h, src/FTGL/FTGlyph.h, src/FTGL/FTLayout.h: * Made most FTFont, FTGlyph and FTLayout function virtual. It's true that most of them use private members of the pImpl class and thus are not easily replaced, but intercepting the information may be useful in subclassing, too. 2008-05-07 16:10 sammy * [r1089] src/FTFace.cpp, src/FTFace.h, src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h, src/FTGL/FTFont.h, src/FTGlyphContainer.cpp: * Some code cleanup here and there, mostly in FTGlyphContainer. 2008-05-07 15:09 sammy * [r1088] test/FTFont-Test.cpp, test/FTGlyph-Test.cpp, test/FTGlyphContainer-Test.cpp, test/FTlayout-Test.cpp, test/Makefile.am: * Fixed and reactivated unit tests that were disabled during the pImpl refactoring. 2008-05-07 15:07 sammy * [r1087] src/FTGL/FTBBox.h, src/FTGL/FTFont.h: * Documentation updates. 2008-05-07 15:06 sammy * [r1086] src/FTFont/FTFont.cpp, src/FTGL/FTBBox.h, test/FTBBox-Test.cpp: * Replace FTBBox::Move() with the += operator, to make it clearer that the object is modified in the process. 2008-05-07 15:03 sammy * [r1085] src/FTFont/FTFont.cpp, src/FTGL/FTBBox.h, src/FTLayout/FTSimpleLayout.cpp: * Change the += operator for bounding boxes to |=, which better represents what is happening, and avoids future confusion with "FTBBox + FTPoint" constructs. 2008-05-07 15:01 sammy * [r1084] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp, src/FTGL/FTFont.h, src/FTGL/FTLayout.h, src/FTGL/FTSimpleLayout.h, src/FTGlyph/FTGlyphGlue.cpp, src/FTLayout/FTLayoutGlue.cpp, src/FTLayout/FTSimpleLayout.cpp, src/FTLayout/FTSimpleLayoutImpl.h: * Make all BBox functions return an FTBBox object instead of doing countless conversions to floats or arrays of floats. 2008-05-07 14:59 sammy * [r1083] src/FTGL/FTBBox.h: * Fix FTBBox::SetDepth() behaviour with negative depth values (as done in the FTExtrudeGlyph class). 2008-05-07 14:58 sammy * [r1082] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h: * Reimplement all FTFont::BBox() variants using the same FTFontImpl::BBox() common method. 2008-05-07 14:56 sammy * [r1081] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h, src/FTGL/FTFont.h: * Add an overload of FTFont::BBox that returns an FTBBox object. It will save us a lot of code later. 2008-05-07 14:55 sammy * [r1080] src/FTGL/FTBBox.h, src/FTGL/FTPoint.h: * Allow to create an FTBBox using two FTPoint objects. * Allow the operands to FTPoint's "+" and "-" operators to be const. 2008-05-07 07:17 sammy * [r1079] demo/c-demo.c, demo/simple.cpp: * In the C++ demo, show that FTFont itself can be directly derived, not only its subclasses. * Minor changes to the C demo to reduce the differences with the C++ version. 2008-05-07 00:11 sammy * [r1078] msvc/Makefile.am: * Synchronise msvc/Makefile.am with its directory contents. 2008-05-06 22:36 dtremenak * [r1077] msvc/demo.cpp, msvc/vc8/FTGLDemo.vcproj, msvc/vc8/README_WIN32.txt, msvc/vc8/SimpleDemo.vcproj, msvc/vc8/ftgl_demo.sln, msvc/vc8/ftgl_demo.vcproj, msvc/vc8/ftgl_demo_2.vcproj, msvc/vc8/trackball.vcproj: get rid of the (broken and obsolete) windows-specific demo, and obsolete VC6 readme (which has been superceded by the global msvc readme). build the normal and simple demos in visual studio too. 2008-05-06 21:43 dtremenak * [r1076] msvc/demo.cpp, msvc/vc8/ftgl_demo.vcproj, msvc/vc8/ftgl_demo_2.vcproj: make the windows demo build (on vc8 at least) 2008-05-06 21:41 dtremenak * [r1075] demo/simple.cpp: on recent MS compilers one must include stdlib.h before glut.h 2008-05-06 21:19 sammy * [r1074] src/FTContour.cpp: * Refactor FTContour::ComputeOutsetPoint so that it's twice as short, even with the additional comments. 2008-05-06 21:19 sammy * [r1073] src/FTContour.cpp: * Make FTContour:FTContour comply with the FreeType specification and remove duplicate points in the Bézier curves. Fixes weird rendering errors with some fonts. 2008-05-06 21:19 sammy * [r1072] demo/simple.cpp: * Minor fixes to the simple demo. 2008-05-06 12:14 sammy * [r1071] .gitignore, demo, demo/Makefile.am, demo/c-demo.c, docs: * Create a C demo to show how the C bindings work. 2008-05-06 10:01 sammy * [r1070] demo/simple.cpp: * Show how to subclass FTFont classes in the simple demo. 2008-05-06 10:00 sammy * [r1069] src/FTVectoriser.cpp: * Fix an unsigned int / size_t mismatch in FTVectoriser. 2008-05-06 08:24 sammy * [r1068] msvc/Makefile.am, msvc/vc8/Makefile.am: * Move msvc/Makefile.am back to its proper place. * Add the new visual studio build files to the distribution. 2008-05-06 07:08 sammy * [r1067] src/FTCharmap.cpp, src/FTFace.cpp: * Fix indentation by replacing a few tabs with spaces. 2008-05-06 06:54 dtremenak * [r1066] src/FTFont/FTFontGlue.cpp: l != 1, depending on your font of course 2008-05-06 06:38 dtremenak * [r1065] src/FTCharmap.cpp, src/FTCharmap.h, src/FTContour.h, src/FTFace.cpp, src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp, src/FTFont/FTTextureFont.cpp, src/FTGL/FTPoint.h, src/FTGlyph/FTBitmapGlyph.cpp, src/FTGlyph/FTExtrudeGlyph.cpp, src/FTGlyph/FTGlyphGlue.cpp, src/FTGlyph/FTOutlineGlyph.cpp, src/FTGlyph/FTPixmapGlyph.cpp, src/FTGlyph/FTPolygonGlyph.cpp, src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyphContainer.cpp, src/FTLayout/FTSimpleLayout.cpp, src/FTPoint.cpp, src/FTVectoriser.cpp, src/FTVectoriser.h: VC build fixes from bzflag revs 17848-17852. * size_t consistency * avoid coercing from int to bool * make casts from double to float explicit rather than implicit, mostly by way of a few new getter functions in FTPoint, or avoid if possible. 2008-05-06 06:03 JeffM2501 * [r1064] msvc/README.txt: mention the joy of the build dir. 2008-05-06 06:02 JeffM2501 * [r1063] msvc/README.txt: a readme for those that like to read and learn and grow. 2008-05-06 05:51 JeffM2501 * [r1062] msvc/vc8/ftgl_demo.sln, msvc/vc8/ftgl_demo.vcproj, msvc/vc8/ftgl_demo_2.vcproj: make the demos build, and pair it down to just one set of build targets, release and debug 2008-05-06 05:43 JeffM2501 * [r1061] msvc/vc8/ftgl_dll.vcproj: put our stuff in build not debug 2008-05-06 05:43 JeffM2501 * [r1060] msvc/vc8/ftgl.sln, msvc/vc8/ftgl_static.vcproj: build a static lib as an option 2008-05-06 05:12 JeffM2501 * [r1059] msvc/vc71, msvc/vc71/ftgl.sln, msvc/vc71/ftgl_dll.vcproj: start a vc7.1 build 2008-05-06 04:55 JeffM2501 * [r1058] msvc/vc8/ftgl.sln, msvc/vc8/ftgl_dll.vcproj, msvc/vc8/ftgl_static_lib.vcproj, msvc/vc8/unit_tests.vcproj: build as a VC8 DLL again 2008-05-06 04:15 JeffM2501 * [r1057] msvc/config.h, msvc/demo.cpp, msvc/vc8/config.h, msvc/vc8/demo.cpp: move the config.h and demo file up so they can be shared with all MSVC builds. 2008-05-06 04:04 brlcad * [r1056] mac/Libraries: begone, vile beasties 2008-05-06 04:03 JeffM2501 * [r1055] msvc/vc8/ftgl.sln, msvc/vc8/ftgl_demo.vcproj, msvc/vc8/ftgl_demo_2.vcproj, msvc/vc8/ftgl_dll.vcproj, msvc/vc8/ftgl_static_lib.vcproj, msvc/vc8/unit_tests.vcproj: fix busted line endings 2008-05-06 03:59 JeffM2501 * [r1054] msvc/Makefile.am, msvc/README_WIN32.txt, msvc/config.h, msvc/demo.cpp, msvc/ftgl.sln, msvc/ftgl_demo.vcproj, msvc/ftgl_demo_2.vcproj, msvc/ftgl_dll.vcproj, msvc/ftgl_static_lib.vcproj, msvc/unit_tests.vcproj, msvc/vc8, msvc/vc8/Makefile.am, msvc/vc8/README_WIN32.txt, msvc/vc8/config.h, msvc/vc8/demo.cpp, msvc/vc8/ftgl.sln, msvc/vc8/ftgl_demo.vcproj, msvc/vc8/ftgl_demo_2.vcproj, msvc/vc8/ftgl_dll.vcproj, msvc/vc8/ftgl_static_lib.vcproj, msvc/vc8/unit_tests.vcproj: move 2005 build files to VC8 dir so we can have more then one windows build system 2008-05-05 22:16 sammy * [r1053] .gitignore, demo, demo/Makefile.am, demo/simple.cpp: * The FTGL "simple demo" is no longer simple. Wrote a really simple one. 2008-05-05 14:55 sammy * [r1052] src/FTFont/FTBitmapFont.cpp, src/FTFont/FTExtrudeFont.cpp, src/FTFont/FTFont.cpp, src/FTFont/FTOutlineFont.cpp, src/FTFont/FTPixmapFont.cpp, src/FTFont/FTPolygonFont.cpp, src/FTFont/FTTextureFont.cpp, src/FTGL/FTBitmapGlyph.h, src/FTGL/FTExtrdGlyph.h, src/FTGL/FTFont.h, src/FTGL/FTGlyph.h, src/FTGL/FTLayout.h, src/FTGL/FTOutlineGlyph.h, src/FTGL/FTPixmapGlyph.h, src/FTGL/FTPolyGlyph.h, src/FTGL/FTSimpleLayout.h, src/FTGL/FTTextureGlyph.h, src/FTGlyph/FTBitmapGlyph.cpp, src/FTGlyph/FTBitmapGlyphImpl.h, src/FTGlyph/FTExtrudeGlyph.cpp, src/FTGlyph/FTExtrudeGlyphImpl.h, src/FTGlyph/FTGlyph.cpp, src/FTGlyph/FTGlyphImpl.h, src/FTGlyph/FTOutlineGlyph.cpp, src/FTGlyph/FTOutlineGlyphImpl.h, src/FTGlyph/FTPixmapGlyph.cpp, src/FTGlyph/FTPixmapGlyphImpl.h, src/FTGlyph/FTPolygonGlyph.cpp, src/FTGlyph/FTPolygonGlyphImpl.h, src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyph/FTTextureGlyphImpl.h, src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutImpl.h, src/FTLayout/FTSimpleLayout.cpp: * Refactor FTGlyph, FTFont and FTLayout so that client applications can hopefully subclass them. 2008-05-05 14:52 sammy * [r1051] src/FTFont/FTTextureFont.cpp, src/FTFont/FTTextureFontImpl.h: * Rename FTTextureFontImpl::MakeGlyph to FTTextureFontImpl::MakeGlyphImpl to avoid confusion. 2008-05-05 14:52 sammy * [r1050] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h: * Rename FTFontImpl::base to FTFontImpl::intf. 2008-05-05 13:22 brlcad * [r1049] src/FTFont/FTFont.cpp: quell warnings, reorder initializations 2008-05-05 13:14 brlcad * [r1048] m4/gl.m4: don't need to check for glu if we have the mac opengl framework 2008-05-04 19:39 sammy * [r1047] src/FTFont/FTBitmapFont.cpp, src/FTFont/FTBitmapFontImpl.h, src/FTFont/FTExtrudeFont.cpp, src/FTFont/FTExtrudeFontImpl.h, src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h, src/FTFont/FTOutlineFont.cpp, src/FTFont/FTOutlineFontImpl.h, src/FTFont/FTPixmapFont.cpp, src/FTFont/FTPixmapFontImpl.h, src/FTFont/FTPolygonFont.cpp, src/FTFont/FTPolygonFontImpl.h, src/FTFont/FTTextureFont.cpp, src/FTFont/FTTextureFontImpl.h, src/FTGL/FTFont.h, src/FTGL/FTGLBitmapFont.h, src/FTGL/FTGLExtrdFont.h, src/FTGL/FTGLOutlineFont.h, src/FTGL/FTGLPixmapFont.h, src/FTGL/FTGLPolygonFont.h, src/FTGL/FTGLTextureFont.h: * Put MakeGlyph back into FT*Font classes instead of FT*FontImpl, and make it use as few FT*FontImpl members as possible so that external application may actually have a chance to properly subclass us. 2008-05-04 19:38 sammy * [r1046] src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h: * The FTFont<->FTFontImpl bridge is now complete. 2008-05-04 19:38 sammy * [r1045] src/FTGL/FTBBox.h, src/FTGL/FTBitmapGlyph.h, src/FTGL/FTExtrdGlyph.h, src/FTGL/FTFont.h, src/FTGL/FTGLBitmapFont.h, src/FTGL/FTGLExtrdFont.h, src/FTGL/FTGLOutlineFont.h, src/FTGL/FTGLPixmapFont.h, src/FTGL/FTGLPolygonFont.h, src/FTGL/FTGLTextureFont.h, src/FTGL/FTGlyph.h, src/FTGL/FTLayout.h, src/FTGL/FTOutlineGlyph.h, src/FTGL/FTPixmapGlyph.h, src/FTGL/FTPoint.h, src/FTGL/FTPolyGlyph.h, src/FTGL/FTSimpleLayout.h, src/FTGL/FTTextureGlyph.h, src/FTGL/ftgl.h: * Put my name and Sean's in the public headers so that people know who to contact. 2008-05-04 19:38 sammy * [r1044] src/FTFont/FTFont.cpp: * Cast strings to unsigned char * before handling them to our internal methods, because the chars may be cast directly to int, causing crashes with 8-bit strings. 2008-05-04 16:24 brlcad * [r1043] Makefile.am, configure.ac, m4/pkg.m4: revert the r1027 changes related to PKG_CHECK_MODULES. provide the macro via the pkg.m4 script but still don't abort if it's not found. 2008-05-04 06:23 brlcad * [r1042] src/FTGL/ftgl.h: quell compilation warnings about the last enum having a comma 2008-05-04 06:04 brlcad * [r1041] Makefile.am, cleanup: remove the silly one-liner cleanup script that just removes Finder files 2008-05-04 05:45 brlcad * [r1040] configure.ac: sort makefiles for easier comparison 2008-05-04 05:04 brlcad * [r1039] Makefile.am: include the changelog 2008-05-04 04:55 brlcad * [r1038] ChangeLog: initial changelog through today created via svn2cl.sh -i -a 2008-05-04 04:50 brlcad * [r1037] NEWS: credit self for the precomputed glyph and kerning tables that gave a nice performance boost to the font rendering (at a mild expense of 64k memory per font face) 2008-05-04 04:46 brlcad * [r1036] NEWS: annotate that sam fixed many bugs related to memory corruption, leaks, and prevented/fixed more than a handful of bugs through inspection and valgrinding 2008-05-04 04:35 brlcad * [r1035] Makefile.am: print an informative summary 2008-05-04 04:31 brlcad * [r1034] configure.ac: have to add the default include dir path to the CPPFLAGS so we can find the headers 2008-05-04 04:29 brlcad * [r1033] m4/glut.m4: GLUT framework needs the OpenGL framework, use the same Xlinker hack for libtool 2008-05-04 03:59 brlcad * [r1032] configure.ac: add an output summary 2008-05-04 03:55 brlcad * [r1031] m4/gl.m4: test with LIBS instead of LDFLAGS but don't persist since that's done later 2008-05-04 03:13 brlcad * [r1030] m4/gl.m4, m4/glut.m4: fix the gl/glut tests so that they also work on mac os x where libraries are specified through frameworks instead of libs. libtool 1.5 and earlier are unfortunately have busted behavior with -no-undefined libraries as it strips off unrecognized options, hence the use of -Xlinker 2008-05-04 02:58 brlcad * [r1029] src/FTFont/FTTextureFont.cpp, src/FTLayout/FTLayout.cpp: refer to local/private headers with local path inclusion, otherwise the search include paths are wrong 2008-05-04 02:57 brlcad * [r1028] src/Makefile.am: list the libs as libs instead of flags so they get passed through as dependencies in the libtool archive 2008-05-03 23:40 brlcad * [r1027] configure.ac: use AC_PATH_PROG instead of PKG_CHECK_MODULES to keep the versions to a minimum 2008-05-03 17:21 brlcad * [r1026] m4/gl.m4: have to quote the AC_MSG_ERROR else the exit code is screwed up 2008-05-02 14:52 sammy * [r1025] src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutImpl.h: * Add a virtual destructor to FTLayoutImpl to make sure derived classes have their destructors called. * Make all FTLayoutImpl members protected. Only its derived classes and FTLayout need to access them. 2008-05-02 13:28 sammy * [r1024] docs/Makefile.am: * Fix inconsistencies in the documentation install paths. 2008-05-02 13:27 sammy * [r1023] src/FTLayout/FTLayoutGlue.cpp: * Add an implicit cast to FTGL::TextAlignment in the FTLayout::SetAlignment C wrapper. 2008-05-02 13:18 sammy * [r1022] src/FTGL/FTLayout.h, src/FTGL/FTSimpleLayout.h, src/FTLayout/FTLayoutGlue.cpp: * Started documenting the FTLayout C bindings. 2008-05-02 13:17 sammy * [r1021] .gitignore, configure.ac, docs/Makefile.am, docs/doxygen.cfg.in: * Generate PDF documentation if a proper LaTeX installation can be found. 2008-05-02 12:45 sammy * [r1020] docs/Makefile.am, docs/ftgl.dox, docs/images/ftgl.png, docs/images/ftgldemo.jpg, src/FTGlyph/FTTextureGlyph.cpp: * Use a smaller logo on the User Guide's front page. 2008-05-02 12:43 sammy * [r1019] src/FTFont/FTFontGlue.cpp, src/FTGL/FTBitmapGlyph.h, src/FTGL/FTExtrdGlyph.h, src/FTGL/FTFont.h, src/FTGL/FTGlyph.h, src/FTGL/FTLayout.h, src/FTGL/FTOutlineGlyph.h, src/FTGL/FTPixmapGlyph.h, src/FTGL/FTPolyGlyph.h, src/FTGL/FTTextureGlyph.h, src/FTGL/ftgl.h, src/FTGlyph/FTGlyphGlue.cpp: * Document the C bindings for FTGlyph. 2008-05-02 12:43 sammy * [r1018] src/FTGlyph/FTGlyphGlue.cpp: * Fix a potential memory leak in the FTGlyph C bindings error handler. 2008-05-02 09:58 sammy * [r1017] docs/FTGL.html, docs/Makefile.am, docs/doxygen.cfg.in, docs/ftgl.dox: * Converted the HTML documentation to Doxygen so that everything ends up in the same document. Plus, Doxygen's C++ pretty-printer is very nice for code examples. 2008-05-02 09:17 sammy * [r1016] ftgl.pc.in: * Fixes and enhancements to ftgl.pc: + Add -I${includedir}/FTGL to Cflags because we want to support legacy application that still #include . + Remove @GL_CFLAGS@ from Cflags because our public headers do not use GL headers. + Add freetype2 to Requires.private since it ships its own .pc file. Not using Requires because freetype2 is only really needed for statically linking. Getting rid of @FT2_CFLAGS@ and @FT2_LIBS@ at the same time. 2008-05-02 09:16 sammy * [r1015] docs/doxygen.cfg.in: * Activate macro expansion in Doxygen to hide useless macros such as FTGL_EXPORT in the documentation. 2008-05-02 09:15 sammy * [r1014] src/FTFont/FTFontGlue.cpp, src/FTGL/FTFont.h, src/FTGL/FTGLBitmapFont.h, src/FTGL/FTGLExtrdFont.h, src/FTGL/FTGLOutlineFont.h, src/FTGL/FTGLPixmapFont.h, src/FTGL/FTGLPolygonFont.h, src/FTGL/FTGLTextureFont.h, test/CTest.c: * Change a few function names in the FTFont C bindings to avoid confusion with other classes. * Document the C bindings. Since it's almost copypasta from the C++ documentation, I put the constructors back in their original files. 2008-05-02 09:13 sammy * [r1013] src/FTGL/ftgl.h: * Add RENDER_ALL to the enum used in Font::Render() so that client applications need not worry about future extensions. 2008-05-02 07:21 sammy * [r1012] src/FTGlyph/FTExtrudeGlyph.cpp: * Fix a memory leak in ~FTExtrudeGlyph: only one of the three display lists was being freed. 2008-05-02 07:21 sammy * [r1011] test/CTest.c, test/FTBitmapFont-Test.cpp, test/FTExtrudeFont-Test.cpp, test/FTOutlineFont-Test.cpp, test/FTPixmapFont-Test.cpp, test/FTPolygonFont-Test.cpp, test/FTTextureFont-Test.cpp: * Fix memory leaks in the font tests due to temporary variables not being deleted. * Add a few method calls to the C test program. 2008-05-02 07:21 sammy * [r1010] src/FTGL/FTPoint.h: * Fix brown-paper-bag bug in the vector product computation: the indices were completely messed up. Thanks to valgrind for spotting it for me. 2008-05-02 07:20 sammy * [r1009] src/FTFont/FTFontGlue.cpp, src/FTGlyph/FTGlyphGlue.cpp, src/FTLayout/FTLayoutGlue.cpp: * Fix a small memory leak in the C bindings destructors. 2008-05-02 04:17 brlcad * [r1008] mac/FTGL.pbproj: remove the obsolete 10.3 project builder project for mac, it's now pretty far out of date and is without maintainer 2008-05-02 03:52 brlcad * [r1007] AUTHORS: add a utf-8 coding line for emacs, attribute full name with e-mail 2008-05-02 03:45 brlcad * [r1006] .: don't ignore COPYING now that there is one 2008-05-01 19:31 sammy * [r1005] src/FTGL/FTFont.h, src/FTGL/FTGlyph.h, src/FTGL/FTLayout.h: * Make our base classes' destructors public. We want to prevent accidental instantiation, but direct destruction is perfectly legal. 2008-05-01 18:46 sammy * [r1004] src/FTFace.cpp: * Proper FTFace member initialisation to prevent destructor-time crashes. 2008-05-01 18:33 sammy * [r1003] src/FTCharmap.cpp, src/FTCharmap.h, src/FTFace.cpp, src/FTFace.h: * Optimise FTFace::KernAdvance() so that kerning for font indices < 128 is precomputed during FTFace() instantiation to avoid calling FT_Get_Kerning() too often. Patch by Sean Morrison, taken from bzflag commit r14652, reworked for safety and performance by me. 2008-05-01 18:31 sammy * [r1002] src/FTCharmap.cpp, src/FTCharmap.h: * Optimize FTCharmap::FontIndex() so that font indices < 128 are precomputed during FTCharmap() instantiation to avoid repeated tt_cmap4_char_index() calls. Performance patch by Sean Morrison, taken from bzflag commit r14644. 2008-05-01 18:30 sammy * [r1001] src/FTFont/FTTextureFont.cpp: * Avoid crashing when the texture size is so small that its integer size becomes zero. At the same time, round many floats instead of simply flooring them to int. First part by Sean Morrison from bzflag commit r14590. 2008-05-01 14:19 sammy * [r1000] AUTHORS, src/FTFont/FTTextureFont.cpp: * Patches by Sean Morrison, from BzFlag commits r15755 and r14843: + Only delete textures if there is at least one of them. + Ensure that the FTTextureFont data members get set for all cases. * Added Sean to the AUTHORS file. 2008-05-01 13:42 sammy * [r999] src/FTFont/FTFont.cpp, src/FTFont/FTTextureFont.cpp, src/FTGL/FTBBox.h, src/FTGlyph/FTGlyphGlue.cpp, src/FTLayout/FTSimpleLayout.cpp, test/FTBBox-Test.cpp: * Store FTPoints in the BBox object instead of floats. This was a todo from Henry. 2008-05-01 12:05 sammy * [r998] docs/Makefile.am, docs/images/metrics.png, docs/images/metrics.svg: * Remade metrics.png using Inkscape. 2008-05-01 10:54 sammy * [r997] src/FTGL/FTPoint.h, src/FTGlyph/FTExtrudeGlyph.cpp, src/FTPoint.cpp: * Inline most FTPoint methods and operators. This will probably make the code smaller instead of bigger, because most of what they do will be optimised out by the compiler. * Get rid of the weird GetNormal() method and reimplement it using the ^ operator (vector product) and Normalise() method instead. 2008-05-01 10:04 sammy * [r996] .gitignore, docs, src/FTGL/FTFont.h, src/FTGL/FTGLBitmapFont.h, src/FTGL/FTGLExtrdFont.h, src/FTGL/FTGLOutlineFont.h, src/FTGL/FTGLPixmapFont.h, src/FTGL/FTGLPolygonFont.h, src/FTGL/FTGLTextureFont.h, src/FTGL/FTGlyph.h, src/FTGL/FTLayout.h, src/FTGL/FTPoint.h, src/FTGL/FTSimpleLayout.h, test: * Moved C constructor bindings to FTFont.h and FTLayout.h so that they appear in the same file in the generated documentation. * Various minor documentation updates. 2008-05-01 09:45 sammy * [r995] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, test/CXXTest.cpp, test/FTBitmapFont-Test.cpp, test/FTExtrdGlyph-Test.cpp, test/FTExtrudeFont-Test.cpp, test/FTExtrudeGlyph-Test.cpp, test/FTGLBitmapFont-Test.cpp, test/FTGLExtrdFont-Test.cpp, test/FTGLOutlineFont-Test.cpp, test/FTGLPixmapFont-Test.cpp, test/FTGLPolygonFont-Test.cpp, test/FTGLTextureFont-Test.cpp, test/FTOutlineFont-Test.cpp, test/FTPixmapFont-Test.cpp, test/FTPolyGlyph-Test.cpp, test/FTPolygonFont-Test.cpp, test/FTPolygonGlyph-Test.cpp, test/FTTextureFont-Test.cpp, test/Makefile.am, test/TestMain.cpp, test/demo.cpp: * Update demos and unit tests so that they use the newly named types. 2008-05-01 09:31 sammy * [r994] src/FTContour.h, src/FTFont/FTBitmapFont.cpp, src/FTFont/FTBitmapFontImpl.h, src/FTFont/FTExtrudeFont.cpp, src/FTFont/FTExtrudeFontImpl.h, src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp, src/FTFont/FTGLBitmapFont.cpp, src/FTFont/FTGLBitmapFontImpl.h, src/FTFont/FTGLExtrdFont.cpp, src/FTFont/FTGLExtrdFontImpl.h, src/FTFont/FTGLOutlineFont.cpp, src/FTFont/FTGLOutlineFontImpl.h, src/FTFont/FTGLPixmapFont.cpp, src/FTFont/FTGLPixmapFontImpl.h, src/FTFont/FTGLPolygonFont.cpp, src/FTFont/FTGLPolygonFontImpl.h, src/FTFont/FTGLTextureFont.cpp, src/FTFont/FTGLTextureFontImpl.h, src/FTFont/FTOutlineFont.cpp, src/FTFont/FTOutlineFontImpl.h, src/FTFont/FTPixmapFont.cpp, src/FTFont/FTPixmapFontImpl.h, src/FTFont/FTPolygonFont.cpp, src/FTFont/FTPolygonFontImpl.h, src/FTFont/FTTextureFont.cpp, src/FTFont/FTTextureFontImpl.h, src/FTGL/FTExtrdGlyph.h, src/FTGL/FTFont.h, src/FTGL/FTGLBitmapFont.h, src/FTGL/FTGLExtrdFont.h, src/FTGL/FTGLOutlineFont.h, src/FTGL/FTGLPixmapFont.h, src/FTGL/FTGLPolygonFont.h, src/FTGL/FTGLTextureFont.h, src/FTGL/FTPolyGlyph.h, src/FTGlyph/FTExtrdGlyph.cpp, src/FTGlyph/FTExtrdGlyphImpl.h, src/FTGlyph/FTExtrudeGlyph.cpp, src/FTGlyph/FTExtrudeGlyphImpl.h, src/FTGlyph/FTGlyphGlue.cpp, src/FTGlyph/FTPolyGlyph.cpp, src/FTGlyph/FTPolyGlyphImpl.h, src/FTGlyph/FTPolygonGlyph.cpp, src/FTGlyph/FTPolygonGlyphImpl.h, src/FTGlyph/FTTextureGlyphImpl.h, src/FTVectoriser.h, src/Makefile.am: * Mass consistency renaming: the fonts' "FTGL" prefix is dropped in favour of "FT" because all other types use only the latter. * Rename "Extrd" types to "Extrude" because the former doesn't really make much sense. * Added appropriate #defines so that legacy applications still build. 2008-05-01 07:47 sammy * [r993] docs/doxygen.cfg.in: * Predefine __cplusplus in the Doxygen config file so that the whole headers are parsed. 2008-05-01 07:37 sammy * [r992] configure.ac, docs/Makefile.am, docs/doxygen.cfg.in, docs/ftgl_dox: * Generate the Doxygen configuration file at configure time so that we don't need to hardcode the package version in it. * Only generate documentation for the public classes. 2008-04-30 19:59 sammy * [r991] docs/Makefile.am, docs/ftgl_dox, docs/html.tar.gz: * Remove deprecated html.tar.gz tarball. We may ship one later, but right now it is unusable. * Update Doxygen config file so that it sees our new header locations. 2008-04-30 16:35 sammy * [r990] src/FTCharToGlyphIndexMap.h, src/FTCharmap.h, src/FTContour.h, src/FTFace.h, src/FTGlyphContainer.h, src/FTLibrary.h, src/FTList.h, src/FTSize.h, src/FTVector.h, src/FTVectoriser.h: * Remove FTGL_EXPORT specification from classes that are not actually exported. 2008-04-30 16:27 sammy * [r989] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, demo/Makefile.am, include, src/FTCharToGlyphIndexMap.h, src/FTCharmap.h, src/FTContour.h, src/FTFace.h, src/FTFont/FTFont.cpp, src/FTFont/FTFontImpl.h, src/FTFont/FTGLBitmapFont.cpp, src/FTFont/FTGLBitmapFontImpl.h, src/FTFont/FTGLExtrdFont.cpp, src/FTFont/FTGLExtrdFontImpl.h, src/FTFont/FTGLOutlineFont.cpp, src/FTFont/FTGLOutlineFontImpl.h, src/FTFont/FTGLPixmapFont.cpp, src/FTFont/FTGLPixmapFontImpl.h, src/FTFont/FTGLPolygonFont.cpp, src/FTFont/FTGLPolygonFontImpl.h, src/FTFont/FTGLTextureFont.cpp, src/FTFont/FTGLTextureFontImpl.h, src/FTGL, src/FTGL/FTBBox.h, src/FTGL/FTBitmapGlyph.h, src/FTGL/FTExtrdGlyph.h, src/FTGL/FTFont.h, src/FTGL/FTGLBitmapFont.h, src/FTGL/FTGLExtrdFont.h, src/FTGL/FTGLOutlineFont.h, src/FTGL/FTGLPixmapFont.h, src/FTGL/FTGLPolygonFont.h, src/FTGL/FTGLTextureFont.h, src/FTGL/FTGlyph.h, src/FTGL/FTLayout.h, src/FTGL/FTOutlineGlyph.h, src/FTGL/FTPixmapGlyph.h, src/FTGL/FTPoint.h, src/FTGL/FTPolyGlyph.h, src/FTGL/FTSimpleLayout.h, src/FTGL/FTTextureGlyph.h, src/FTGL/ftgl.h, src/FTGlyph/FTBitmapGlyph.cpp, src/FTGlyph/FTBitmapGlyphImpl.h, src/FTGlyph/FTExtrdGlyph.cpp, src/FTGlyph/FTExtrdGlyphImpl.h, src/FTGlyph/FTGlyph.cpp, src/FTGlyph/FTGlyphGlue.cpp, src/FTGlyph/FTGlyphImpl.h, src/FTGlyph/FTOutlineGlyph.cpp, src/FTGlyph/FTOutlineGlyphImpl.h, src/FTGlyph/FTPixmapGlyph.cpp, src/FTGlyph/FTPixmapGlyphImpl.h, src/FTGlyph/FTPolyGlyph.cpp, src/FTGlyph/FTPolyGlyphImpl.h, src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyph/FTTextureGlyphImpl.h, src/FTGlyphContainer.cpp, src/FTGlyphContainer.h, src/FTInternals.h, src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutImpl.h, src/FTLayout/FTSimpleLayout.cpp, src/FTLayout/FTSimpleLayoutImpl.h, src/FTLibrary.h, src/FTList.h, src/FTPoint.cpp, src/FTSize.h, src/FTVector.h, src/FTVectoriser.h, src/Makefile.am, test/CTest.c, test/FTBBox-Test.cpp, test/FTBitmapGlyph-Test.cpp, test/FTExtrdGlyph-Test.cpp, test/FTFont-Test.cpp, test/FTGLBitmapFont-Test.cpp, test/FTGLExtrdFont-Test.cpp, test/FTGLOutlineFont-Test.cpp, test/FTGLPixmapFont-Test.cpp, test/FTGLPolygonFont-Test.cpp, test/FTGLTextureFont-Test.cpp, test/FTGlyph-Test.cpp, test/FTOutlineGlyph-Test.cpp, test/FTPixmapGlyph-Test.cpp, test/FTPoint-Test.cpp, test/FTPolyGlyph-Test.cpp, test/FTTextureGlyph-Test.cpp, test/Makefile.am: * Move include/* to src/FTGL/* so the files in there can directly be referred to as "FTGL/*.h". This is convenient because they will be installed in a similar location. * Put a warning in each legacy public header to advise users to only include the generic header instead. 2008-04-30 14:10 sammy * [r988] src/FTFont/FTFontGlue.cpp, src/FTLayout/FTLayoutGlue.cpp: * Improve constructor code in the FTFont and FTLayout C bindings. Shorter (40 lines) and more consistend code. 2008-04-30 14:07 sammy * [r987] src/Makefile.am: * Fix Makefile to add missing header files in "make dist". 2008-04-30 14:02 sammy * [r986] include/FTLayout.h, src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutImpl.h: * Implement FTLayout::Error(). Nothing uses it yet and it's always zero, but it may come in handy later and we want a stable API. 2008-04-29 23:08 sammy * [r985] .gitignore, configure.ac, test, test/CTest.c, test/Makefile.am: * Small C test program. It does not do anything yet, but it's already a good thing to know whether all public headers can be #included from C code. 2008-04-29 22:59 sammy * [r984] include/FTBBox.h, include/FTBitmapGlyph.h, include/FTExtrdGlyph.h, include/FTGlyph.h, include/FTLayout.h, include/FTOutlineGlyph.h, include/FTPixmapGlyph.h, include/FTPoint.h, include/FTPolyGlyph.h, include/FTSimpleLayout.h, include/FTTextureGlyph.h, include/ftgl.h, src/FTGlyph/FTGlyphGlue.cpp, src/FTInternals.h: * Wrote C bindings for the FTGlyph class. 2008-04-29 21:35 sammy * [r983] TODO, include/FTBBox.h, include/FTBitmapGlyph.h, include/FTExtrdGlyph.h, include/FTGlyph.h, include/FTOutlineGlyph.h, include/FTPixmapGlyph.h, include/FTPoint.h, include/FTPolyGlyph.h, include/FTTextureGlyph.h, include/ftgl.h, src/FTBBox.h, src/FTFont/FTGLTextureFont.cpp, src/FTGlyph/FTBitmapGlyph.cpp, src/FTGlyph/FTBitmapGlyph.h, src/FTGlyph/FTBitmapGlyphImpl.h, src/FTGlyph/FTExtrdGlyph.cpp, src/FTGlyph/FTExtrdGlyph.h, src/FTGlyph/FTExtrdGlyphImpl.h, src/FTGlyph/FTGlyph.cpp, src/FTGlyph/FTGlyph.h, src/FTGlyph/FTGlyphGlue.cpp, src/FTGlyph/FTGlyphImpl.h, src/FTGlyph/FTOutlineGlyph.cpp, src/FTGlyph/FTOutlineGlyph.h, src/FTGlyph/FTOutlineGlyphImpl.h, src/FTGlyph/FTPixmapGlyph.cpp, src/FTGlyph/FTPixmapGlyph.h, src/FTGlyph/FTPixmapGlyphImpl.h, src/FTGlyph/FTPolyGlyph.cpp, src/FTGlyph/FTPolyGlyph.h, src/FTGlyph/FTPolyGlyphImpl.h, src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyph/FTTextureGlyph.h, src/FTGlyph/FTTextureGlyphImpl.h, src/FTLayout/FTLayout.cpp, src/FTPoint.cpp, src/FTPoint.h, src/Makefile.am, test/FTBBox-Test.cpp, test/FTPoint-Test.cpp, test/Makefile.am: * End of the pImpl refactoring task started in [972]. FTGlyph was the last class needing the change. As a consequence, FTGlyph is now also exported in the library API, and so are FTBBox and FTPoint. 2008-04-29 20:42 sammy * [r982] include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, src/FTFont/FTFont.cpp, src/FTFont/FTGLBitmapFont.cpp, src/FTFont/FTGLExtrdFont.cpp, src/FTFont/FTGLOutlineFont.cpp, src/FTFont/FTGLPixmapFont.cpp, src/FTFont/FTGLPolygonFont.cpp, src/FTFont/FTGLTextureFont.cpp: * Simplified FTFont's constructor. Since the class is kind of abstract, there is no need to export the constructor interface: only derived classes need to advertise how they are instantiated. 2008-04-29 17:11 sammy * [r981] configure.ac, src/FTBitmapGlyph.cpp, src/FTBitmapGlyph.h, src/FTExtrdGlyph.cpp, src/FTExtrdGlyph.h, src/FTFont, src/FTFont.cpp, src/FTFont/FTFont.cpp, src/FTFont/FTFontGlue.cpp, src/FTFont/FTFontImpl.h, src/FTFont/FTGLBitmapFont.cpp, src/FTFont/FTGLBitmapFontImpl.h, src/FTFont/FTGLExtrdFont.cpp, src/FTFont/FTGLExtrdFontImpl.h, src/FTFont/FTGLOutlineFont.cpp, src/FTFont/FTGLOutlineFontImpl.h, src/FTFont/FTGLPixmapFont.cpp, src/FTFont/FTGLPixmapFontImpl.h, src/FTFont/FTGLPolygonFont.cpp, src/FTFont/FTGLPolygonFontImpl.h, src/FTFont/FTGLTextureFont.cpp, src/FTFont/FTGLTextureFontImpl.h, src/FTFontGlue.cpp, src/FTFontImpl.h, src/FTGLBitmapFont.cpp, src/FTGLBitmapFontImpl.h, src/FTGLExtrdFont.cpp, src/FTGLExtrdFontImpl.h, src/FTGLOutlineFont.cpp, src/FTGLOutlineFontImpl.h, src/FTGLPixmapFont.cpp, src/FTGLPixmapFontImpl.h, src/FTGLPolygonFont.cpp, src/FTGLPolygonFontImpl.h, src/FTGLTextureFont.cpp, src/FTGLTextureFontImpl.h, src/FTGlyph, src/FTGlyph.cpp, src/FTGlyph.h, src/FTGlyph/FTBitmapGlyph.cpp, src/FTGlyph/FTBitmapGlyph.h, src/FTGlyph/FTExtrdGlyph.cpp, src/FTGlyph/FTExtrdGlyph.h, src/FTGlyph/FTGlyph.cpp, src/FTGlyph/FTGlyph.h, src/FTGlyph/FTGlyphGlue.cpp, src/FTGlyph/FTOutlineGlyph.cpp, src/FTGlyph/FTOutlineGlyph.h, src/FTGlyph/FTPixmapGlyph.cpp, src/FTGlyph/FTPixmapGlyph.h, src/FTGlyph/FTPolyGlyph.cpp, src/FTGlyph/FTPolyGlyph.h, src/FTGlyph/FTTextureGlyph.cpp, src/FTGlyph/FTTextureGlyph.h, src/FTGlyphGlue.cpp, src/FTLayout, src/FTLayout.cpp, src/FTLayout/FTLayout.cpp, src/FTLayout/FTLayoutGlue.cpp, src/FTLayout/FTLayoutImpl.h, src/FTLayout/FTSimpleLayout.cpp, src/FTLayout/FTSimpleLayoutImpl.h, src/FTLayoutGlue.cpp, src/FTLayoutImpl.h, src/FTOutlineGlyph.cpp, src/FTOutlineGlyph.h, src/FTPixmapGlyph.cpp, src/FTPixmapGlyph.h, src/FTPolyGlyph.cpp, src/FTPolyGlyph.h, src/FTSimpleLayout.cpp, src/FTSimpleLayoutImpl.h, src/FTTextureGlyph.cpp, src/FTTextureGlyph.h, src/Makefile.am, test/Makefile.am: * Move FTGlyph, FTFont and FTLayout classes and their derivatives into separate subdirectories of src/ to avoid cluttering src/ with too many files. The Visual Studio solution still needs an update. 2008-04-29 16:47 sammy * [r980] include/FTFont.h, include/FTLayout.h, include/ftgl.h, src/FTFont.cpp, src/FTFontGlue.cpp, src/FTFontImpl.h, src/FTGLBitmapFont.cpp, src/FTGLBitmapFontImpl.h, src/FTGLExtrdFont.cpp, src/FTGLExtrdFontImpl.h, src/FTGLOutlineFont.cpp, src/FTGLOutlineFontImpl.h, src/FTGLPixmapFont.cpp, src/FTGLPixmapFontImpl.h, src/FTGLPolygonFont.cpp, src/FTGLPolygonFontImpl.h, src/FTGLTextureFont.cpp, src/FTGLTextureFontImpl.h, src/FTInternals.h, src/FTLayout.cpp, src/FTSimpleLayout.cpp, src/FTSimpleLayoutImpl.h: * More cleanup following the private pointer refactoring: + Removed private type enums from the public ftgl.h header. + Protected all private implementation ctors and dtors. + Prevent accidental initialisation of the base classes by protecting their constructors. Derived classes can still be properly instantiated. 2008-04-29 15:44 sammy * [r979] include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, include/FTLayout.h, include/FTSimpleLayout.h, include/ftgl.h, src/FTFont.cpp, src/FTFontGlue.cpp, src/FTGLBitmapFont.cpp, src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp, src/FTGlue.cpp, src/FTGlyphGlue.cpp, src/FTInternals.h, src/FTLayoutGlue.cpp, src/FTSimpleLayout.cpp, src/Makefile.am: * Clean up the C bindings by splitting FTGlue.cpp into FTLayoutGlue.cpp, FTGlyphGlue.cpp (unused yet) and FTFontGlue.cpp. C methods previously scattered all around are now located in one of these 3 files. * Hide extern "C" and namespace C constructs in a single FTGL_BEGIN_C_DECLS macro. * Use namespace FTGL all around instead of a mix of C and FTGL namespaces. 2008-04-29 14:57 sammy * [r978] include/FTLayout.h, src/FTGlue.cpp: * Fix the ftglLayoutRenderSpace C binding's prototype, which wasn't in sync with its implementation in FTGlue.cpp. 2008-04-29 14:39 sammy * [r977] COPYING, COPYING.LGPL, COPYING.MIT, Makefile.am, demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, include/FTLayout.h, include/FTSimpleLayout.h, include/ftgl.h, src/FTBBox.h, src/FTBitmapGlyph.cpp, src/FTBitmapGlyph.h, src/FTCharToGlyphIndexMap.h, src/FTCharmap.cpp, src/FTCharmap.h, src/FTContour.cpp, src/FTContour.h, src/FTExtrdGlyph.cpp, src/FTExtrdGlyph.h, src/FTFace.cpp, src/FTFace.h, src/FTFont.cpp, src/FTFontImpl.h, src/FTGLBitmapFont.cpp, src/FTGLBitmapFontImpl.h, src/FTGLExtrdFont.cpp, src/FTGLExtrdFontImpl.h, src/FTGLOutlineFont.cpp, src/FTGLOutlineFontImpl.h, src/FTGLPixmapFont.cpp, src/FTGLPixmapFontImpl.h, src/FTGLPolygonFont.cpp, src/FTGLPolygonFontImpl.h, src/FTGLTextureFont.cpp, src/FTGLTextureFontImpl.h, src/FTGlue.cpp, src/FTGlyph.cpp, src/FTGlyph.h, src/FTGlyphContainer.cpp, src/FTGlyphContainer.h, src/FTInternals.h, src/FTLayout.cpp, src/FTLayoutImpl.h, src/FTLibrary.cpp, src/FTLibrary.h, src/FTList.h, src/FTOutlineGlyph.cpp, src/FTOutlineGlyph.h, src/FTPixmapGlyph.cpp, src/FTPixmapGlyph.h, src/FTPoint.cpp, src/FTPoint.h, src/FTPolyGlyph.cpp, src/FTPolyGlyph.h, src/FTSimpleLayout.cpp, src/FTSimpleLayoutImpl.h, src/FTSize.cpp, src/FTSize.h, src/FTTextureGlyph.cpp, src/FTTextureGlyph.h, src/FTVector.h, src/FTVectoriser.cpp, src/FTVectoriser.h, test/Fontdefs.h: * Since the MIT license is LGPL-compatible, there is no real point in shipping FTGL under a dual license. Consequently removing LGPL references from the code, in agreement with Sean. 2008-04-29 11:30 sammy * [r976] include/FTGLBufferFont.h, src/FTBufferGlyph.cpp, src/FTBufferGlyph.h, src/FTGLBufferFont.cpp, src/FTGLBufferFontImpl.h: * Remove dead code: FTGLBufferFont and FTBufferGlyph are the same as FTGLPixmapFont and FTPixmapGLyph, except the latter are actually used and do work. 2008-04-29 11:18 sammy * [r975] include/FTGLBitmapFont.h, src/FTGLBitmapFont.cpp: * Remove useless overriden methods in FTGLBitmapFont that reimplemented the same thing as in FTFont. 2008-04-29 06:44 sammy * [r974] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, include/FTBBox.h, include/FTBitmapGlyph.h, include/FTBufferGlyph.h, include/FTCharToGlyphIndexMap.h, include/FTCharmap.h, include/FTContour.h, include/FTExtrdGlyph.h, include/FTFace.h, include/FTFont.h, include/FTGL.h, include/FTGLBitmapFont.h, include/FTGLBufferFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, include/FTGlyph.h, include/FTGlyphContainer.h, include/FTInternals.h, include/FTLayout.h, include/FTLibrary.h, include/FTList.h, include/FTOutlineGlyph.h, include/FTPixmapGlyph.h, include/FTPoint.h, include/FTPolyGlyph.h, include/FTSimpleLayout.h, include/FTSize.h, include/FTTextureGlyph.h, include/FTVector.h, include/FTVectoriser.h, include/ftgl.h, src/FTBBox.h, src/FTBitmapGlyph.cpp, src/FTBitmapGlyph.h, src/FTBufferGlyph.h, src/FTCharToGlyphIndexMap.h, src/FTCharmap.h, src/FTContour.h, src/FTExtrdGlyph.cpp, src/FTExtrdGlyph.h, src/FTFace.h, src/FTFont.cpp, src/FTFontImpl.h, src/FTGLBitmapFont.cpp, src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp, src/FTGlue.cpp, src/FTGlyph.h, src/FTGlyphContainer.h, src/FTInternals.h, src/FTLibrary.h, src/FTList.h, src/FTOutlineGlyph.cpp, src/FTOutlineGlyph.h, src/FTPixmapGlyph.cpp, src/FTPixmapGlyph.h, src/FTPoint.h, src/FTPolyGlyph.cpp, src/FTPolyGlyph.h, src/FTSimpleLayout.cpp, src/FTSize.h, src/FTTextureGlyph.cpp, src/FTTextureGlyph.h, src/FTVector.h, src/FTVectoriser.cpp, src/FTVectoriser.h, src/Makefile.am, test/FTBitmapGlyph-Test.cpp, test/FTExtrdGlyph-Test.cpp, test/FTGLBitmapFont-Test.cpp, test/FTGLExtrdFont-Test.cpp, test/FTGLOutlineFont-Test.cpp, test/FTGLPixmapFont-Test.cpp, test/FTGLPolygonFont-Test.cpp, test/FTGLTextureFont-Test.cpp, test/FTMesh-Test.cpp, test/FTOutlineGlyph-Test.cpp, test/FTPixmapGlyph-Test.cpp, test/FTPolyGlyph-Test.cpp, test/FTTesselation-Test.cpp, test/FTTextureGlyph-Test.cpp, test/FTVectoriser-Test.cpp, test/Makefile.am: * Moved header files that are not required by library clients into src/ so that they do not get installed. * Created an ftgl.h header that allows clients to #include and be done with it. 2008-04-28 21:48 sammy * [r973] include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLBufferFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, include/FTLayout.h, include/FTSimpleLayout.h, src/FTFont.cpp, src/FTFontImpl.h, src/FTGLBitmapFont.cpp, src/FTGLBitmapFontImpl.h, src/FTGLBufferFont.cpp, src/FTGLBufferFontImpl.h, src/FTGLExtrdFont.cpp, src/FTGLExtrdFontImpl.h, src/FTGLOutlineFont.cpp, src/FTGLOutlineFontImpl.h, src/FTGLPixmapFont.cpp, src/FTGLPixmapFontImpl.h, src/FTGLPolygonFont.cpp, src/FTGLPolygonFontImpl.h, src/FTGLTextureFont.cpp, src/FTGLTextureFontImpl.h, src/FTLayout.cpp, src/FTLayoutImpl.h, src/FTSimpleLayout.cpp, src/FTSimpleLayoutImpl.h, src/Makefile.am: * Split Font and Layout headers into Foo.h and FooImpl.h, and taking the latter out of the include/ directory. 2008-04-28 21:12 sammy * [r972] include/FTFont.h, include/FTGL.h, include/FTGLBitmapFont.h, include/FTGLBufferFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, include/FTLayout.h, include/FTSimpleLayout.h, src/FTBufferGlyph.cpp, src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLBufferFont.cpp, src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp, src/FTGlue.cpp, src/FTLayout.cpp, src/FTSimpleLayout.cpp, test/Makefile.am: * Beginning of a new refactoring task. Classes inheriting FTFont or FTLayout now hide their private members behind a pImpl pointer. This will make the public headers smaller, and we will not break the ABI by changing private members of our public classes. This first step just splits classes but does not reorganise files. 2008-04-28 17:48 brlcad * [r971] ., Makefile.am, autogen.sh, bootstrap: replace the bootstrap script with autogen.sh (buildconf project) with does much (much) more in terms of protections, reporting options, and error recovery that supports a wide variety of autotool versions, autoreconf bug workarounds, and system misconfiguration issues. 2008-04-28 17:31 brlcad * [r970] Makefile.am, configure.ac, demo/Makefile.am, docs/Makefile.am, msvc/Makefile.am, src/Makefile.am, test/Makefile.am: specify minimum versions, make ac be 2.58 and am be 1.6 (needed in order to support os x 10.4 out-of-the-box). PKG_CHECK_MODULES doesn't seem to wrap the args properly so you can't embed AC_MSG_RESULT, make a zip and bzip2 when we make a dist, and provide NULL to make am happy 2008-04-28 15:24 sammy * [r963] include/FTFont.h, include/FTGlyph.h, include/FTLayout.h, src/FTFont.cpp, src/FTGlyph.cpp, src/FTLayout.cpp, src/Makefile.am: * Remove all method implementations from the main FTFont.h, FTLayout.h and FTGlyph.h headers. Since they use private members, they belong to their respective .cpp files. 2008-04-28 13:11 sammy * [r962] extras: * Remove deprecated extras/layout stuff. We now have FTSimpleLayout anyway. 2008-04-28 11:17 sammy * [r961] include/FTBBox.h, include/FTBitmapGlyph.h, include/FTBufferGlyph.h, include/FTCharToGlyphIndexMap.h, include/FTCharmap.h, include/FTContour.h, include/FTExtrdGlyph.h, include/FTFace.h, include/FTFont.h, include/FTGL.h, include/FTGLBitmapFont.h, include/FTGLBufferFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, include/FTGlyph.h, include/FTGlyphContainer.h, include/FTInternals.h, include/FTLibrary.h, include/FTList.h, include/FTOutlineGlyph.h, include/FTPixmapGlyph.h, include/FTSize.h, include/FTVector.h, include/FTVectoriser.h, src/FTBitmapGlyph.cpp, src/FTBufferGlyph.cpp, src/FTCharmap.cpp, src/FTContour.cpp, src/FTFace.cpp, src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLBufferFont.cpp, src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp, src/FTGlyph.cpp, src/FTGlyphContainer.cpp, src/FTLibrary.cpp, src/FTPixmapGlyph.cpp, src/FTPoint.cpp, src/FTSize.cpp, src/FTVectoriser.cpp, test/FTBBox-Test.cpp, test/FTBitmapGlyph-Test.cpp, test/FTCharToGlyphIndexMap-Test.cpp, test/FTCharmap-Test.cpp, test/FTContour-Test.cpp, test/FTExtrdGlyph-Test.cpp, test/FTFace-Test.cpp, test/FTFont-Test.cpp, test/FTGLBitmapFont-Test.cpp, test/FTGLExtrdFont-Test.cpp, test/FTGLOutlineFont-Test.cpp, test/FTGLPixmapFont-Test.cpp, test/FTGLPolygonFont-Test.cpp, test/FTGLTextureFont-Test.cpp, test/FTGlyph-Test.cpp, test/FTGlyphContainer-Test.cpp, test/FTLibrary-Test.cpp, test/FTList-Test.cpp, test/FTMesh-Test.cpp, test/FTOutlineGlyph-Test.cpp, test/FTPixmapGlyph-Test.cpp, test/FTPoint-Test.cpp, test/FTPolyGlyph-Test.cpp, test/FTSize-Test.cpp, test/FTTesselation-Test.cpp, test/FTTextureGlyph-Test.cpp, test/FTVector-Test.cpp, test/FTVectoriser-Test.cpp, test/FTlayout-Test.cpp, test/Fontdefs.h, test/HPGCalc_afm.cpp, test/HPGCalc_pfb.cpp, test/TestMain.cpp, test/demo.cpp: * Cosmetic: remove trailing spaces, fix unbalanced parenthesis/space constructs, remove tab/space mixes, wrap a lot of long source lines. 2008-04-28 09:11 sammy * [r960] include/FTInternals.h: * The C constructors now properly return NULL if the C++ constructor failed. 2008-04-28 09:10 sammy * [r959] src/FTFont.cpp: * Crash fix: do not try to delete FTFont::glyphList if the constructor failed. 2008-04-27 19:55 sammy * [r958] configure.ac, src/Makefile.am: * Use libtool' versioning features to call the library libftgl.2.1.3. This is not the recommended way to do, but it's nice to synchronise the package's version and the library's soname. 2008-04-27 10:22 sammy * [r957] include/FTSimpleLayout.h, src/FTGlue.cpp: * Fix erroneous warnings in the C bindings for destructors, by Eric Beets. 2008-04-27 09:52 sammy * [r956] demo/FTGLDemo.cpp: * Various fixes and improvements to the demo, by Eric Beets and myself. 2008-04-25 12:24 sammy * [r955] src/FTExtrdGlyph.cpp: * *sigh*, another bug fix for a problem I introduced in [941]. 2008-04-25 12:22 sammy * [r954] include/FTGL.h, include/FTSimpleLayout.h: * Use macros instead of enums in the C bindings. Not the most elegant thing, but it avoids naming conflicts when mixing C and C++ code. Patch by Eric Beets. 2008-04-25 10:01 sammy * [r953] include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLTextureFont.h, src/FTGlue.cpp: * Implement Render() for all Font types. Patch by Eric Beets. 2008-04-25 10:01 sammy * [r952] src/FTPixmapGlyph.cpp, src/FTTextureGlyph.cpp: * Align FTPixmapGlyph and FTTextureGlyph objects at round pixel coordinates to reduce bleeding. Patch by Ton Roosendaal, from Blender commit r4411. 2008-04-25 10:00 sammy * [r951] src/FTGLPixmapFont.cpp, src/FTGLTextureFont.cpp: * Disable the use of the font's internal bitmap in FTGLTextureFont and FTGLPixmapFont. Patch by Shizu, from Blender commit r4569. 2008-04-25 10:00 sammy * [r950] src/FTGLTextureFont.cpp: * Turn off the color buffer bit in the TextureFont renderer to increase performance. Patch by Ton Roosendaal, from Blender commit r5362. 2008-04-25 09:59 sammy * [r949] src/FTCharmap.cpp: * Synchronise FTCharmap::GlyphListIndex and FTCharmap::FontIndex prototypes declarations with their definitions. Patch by Vladimir Marek, taken from Blender commit r8915. 2008-04-25 09:59 sammy * [r948] src/FTVectoriser.cpp: * OS X Leopard build fix. Starting from this version, GLUTesselatorFunction has a standard prototype again. Patch by Kent Mein, taken from Blender commit r11864. 2008-04-25 09:59 sammy * [r947] include/FTGL.h: * Somewhat hackish support for Solaris 10 x86 support. The problem is that our public headers need the GL and GLU headers, which are in very different locations depending the system. One solution would be to generate FTGL.h at configure time. Patch by Kent Mein, taken from Blender commit r12796. 2008-04-25 09:59 sammy * [r946] include/FTContour.h, src/FTContour.cpp, src/FTOutlineGlyph.cpp, src/FTPoint.cpp, src/FTPolyGlyph.cpp: * Fix random bugs introduced in [941] and [943]. 2008-04-24 13:40 sammy * [r945] Makefile.am, configure.ac, msvc, msvc/Makefile.am, msvc/README_WIN32.txt, msvc/config.h, msvc/demo.cpp, msvc/ftgl.sln, msvc/ftgl_demo.vcproj, msvc/ftgl_demo_2.vcproj, msvc/ftgl_dll.vcproj, msvc/ftgl_static_lib.vcproj, msvc/unit_tests.vcproj, win32_vcpp: * Rename "win32_vcpp" to "msvc" and move all Visual Studio build files out of their subdirectory. * Add the msvc subdirectory to "make dist" so that it gets distributed. 2008-04-24 13:20 sammy * [r944] src/FTGlue.cpp, win32_vcpp/config.h, win32_vcpp/ftgl.dsw, win32_vcpp/ftgl.sln, win32_vcpp/ftgl_demo/ftgl_demo.dsp, win32_vcpp/ftgl_demo/ftgl_demo.vcproj, win32_vcpp/ftgl_demo/ftgl_demo_2.dsp, win32_vcpp/ftgl_demo/ftgl_demo_2.vcproj, win32_vcpp/ftgl_dll/ftgl_dll.dsp, win32_vcpp/ftgl_dll/ftgl_dll.vcproj, win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp, win32_vcpp/ftgl_static_lib/ftgl_static_lib.vcproj, win32_vcpp/unit_tests/unit_tests.dsp, win32_vcpp/unit_tests/unit_tests.vcproj: * Updated Visual Studio build, by Eric Beets. We decided to switch the solution file to Visual Studio 2005 because no one was able to get an older version. Sorry. 2008-04-23 21:23 sammy * [r943] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, demo/tb.c, demo/trackball.c, include/FTGlyph.h, include/FTVector.h, src/FTContour.cpp, src/FTExtrdGlyph.cpp, src/FTFace.cpp, src/FTGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp, src/FTVectoriser.cpp, test/FTFont-Test.cpp, test/FTMesh-Test.cpp: * Fix most compilation warnings. Most frequent causes: shadow declarations and const qualifier disappearances. 2008-04-23 21:23 sammy * [r942] configure.ac: * Add loads of C/C++ warning flags to the build process: -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wshadow -Wsign-compare * Add C-specific warning flags, too: -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs 2008-04-23 15:56 sammy * [r941] include/FTContour.h, include/FTExtrdGlyph.h, include/FTGLOutlineFont.h, include/FTOutlineGlyph.h, include/FTPolyGlyph.h, include/FTVectoriser.h, src/FTContour.cpp, src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp, src/FTVectoriser.cpp, test/FTVectoriser-Test.cpp: * Only build outset contours when really needed. This spares quite a few operations and removes now useless parameters from several methods. Patch by Eric Beets, reworked by me. 2008-04-23 12:12 sammy * [r940] demo/FTGLDemo.cpp: * Cosmetic changes to FTGLDemo: bigger font, layout-compliant text, filtered textures. 2008-04-23 09:51 sammy * [r939] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, demo/tb.c, m4/glut.m4, test/TestMain.cpp, test/demo.cpp: * Check for and during the configure step instead of guessing their location at build time. 2008-04-23 09:50 sammy * [r938] src/FTVectoriser.cpp: * Assume unknown operating systems share the GLUTesselatorFunction prototype with other standard Linux/Unix systems. It's a pretty safe bet and spares us from patching the code each time a new system such as GNU/kFreeBSD appears. 2008-04-23 09:49 sammy * [r937] src/FTOutlineGlyph.cpp: * In outline mode, do not render the original outline if an outset value was specified: only render the modified one. Patch by Eric Beets. 2008-04-22 23:47 sammy * [r936] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, include/FTGL.h, include/FTInternals.h, include/FTLayout.h, include/FTSimpleLayout.h, src/FTGlue.cpp, src/FTSimpleLayout.cpp: * C bindings for the FTLayout interface. Code by Eric Beets. 2008-04-22 17:09 sammy * [r935] NEWS: * Advertise the C bindings in the NEWS file. 2008-04-22 17:06 sammy * [r934] demo/FTGLDemo.cpp, include/FTTextureGlyph.h, src/FTTextureGlyph.cpp: * Fix FTTextureGlyph rendering offset so that it works with layouts. 2008-04-22 16:45 sammy * [r933] demo/FTGLDemo.cpp: * Fix the demo program so that it uses the FTTextureFont class. 2008-04-22 16:42 sammy * [r932] demo/FTGLDemo.cpp: * Slightly tune the demo to show the new FTGL::RENDER_FRONT and RENDER_SIDE features. 2008-04-22 16:21 sammy * [r931] include/FTExtrdGlyph.h, src/FTExtrdGlyph.cpp: * Fix displaylist usage in FTExtrdGlyph. Closes SourceForge ticket #1945392. 2008-04-22 16:21 sammy * [r930] include/FTBitmapGlyph.h, include/FTExtrdGlyph.h, include/FTFont.h, include/FTGL.h, include/FTGLBitmapFont.h, include/FTGlyph.h, include/FTGlyphContainer.h, include/FTLayout.h, include/FTOutlineGlyph.h, include/FTPixmapGlyph.h, include/FTPolyGlyph.h, include/FTSimpleLayout.h, include/FTTextureGlyph.h, src/FTBitmapGlyph.cpp, src/FTExtrdGlyph.cpp, src/FTFont.cpp, src/FTGlyphContainer.cpp, src/FTOutlineGlyph.cpp, src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp, src/FTSimpleLayout.cpp, src/FTTextureGlyph.cpp, test/FTBitmapGlyph-Test.cpp, test/FTExtrdGlyph-Test.cpp, test/FTFont-Test.cpp, test/FTGlyph-Test.cpp, test/FTGlyphContainer-Test.cpp, test/FTOutlineGlyph-Test.cpp, test/FTPixmapGlyph-Test.cpp, test/FTPolyGlyph-Test.cpp, test/FTTextureGlyph-Test.cpp: * Allow to selectively display parts of the glyph/font/layout. This is currently only used in FTExtrdGlyph: it lets the user render the front surface in a different color than the extruded side surface. Code written by Eric Beets. 2008-04-22 16:18 sammy * [r929] include/FTOutlineGlyph.h, include/FTPolyGlyph.h, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp: * Fix displaylist usage in FTOutlineGlyph and FTPolyGlyph. FTExtrdGlyph still needs to be fixed, but that will be after pending Render() changes. Partially addresses SourceForge ticket #1945392. 2008-04-22 09:31 brlcad * [r928] NEWS: M-q column 70 formatting 2008-04-22 08:43 sammy * [r927] NEWS: * Fix my name in the NEWS file and change its encoding to UTF-8. 2008-04-22 08:08 brlcad * [r926] NEWS: asterisk bullets 2008-04-22 08:06 brlcad * [r925] NEWS: annotate the recent changes from eric beets and sam hovecar for the layout managers and new inset/outset contour support 2008-04-22 08:01 brlcad * [r924] HISTORY, Makefile.am, NEWS: rename HISTORY to NEWS, reformat with distinct sections for each released version and consistent formatting 2008-04-22 07:20 brlcad * [r923] HISTORY, HISTORY.txt, INSTALL, INSTALL.txt, Makefile.am, README, README.txt: drop all the main doc file suffixes to be consistent with more prevalent gnu conventions 2008-04-21 21:48 sammy * [r922] demo/FTGLDemo.cpp: * Fine tune the demo so that the extrude mode shows the outset results. 2008-04-21 21:48 sammy * [r921] include/FTContour.h, include/FTExtrdGlyph.h, include/FTFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPolygonFont.h, include/FTOutlineGlyph.h, include/FTPoint.h, include/FTPolyGlyph.h, include/FTVectoriser.h, src/FTContour.cpp, src/FTExtrdGlyph.cpp, src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPolygonFont.cpp, src/FTGlue.cpp, src/FTOutlineGlyph.cpp, src/FTPoint.cpp, src/FTPolyGlyph.cpp, src/FTVectoriser.cpp, test/FTExtrdGlyph-Test.cpp, test/FTOutlineGlyph-Test.cpp, test/FTPolyGlyph-Test.cpp, test/FTVectoriser-Test.cpp: * Inset/outset contour support for fonts, by Eric Beets. For now, only contours with exactly the same number of points are generated. 2008-04-21 16:09 sammy * [r920] src/FTBitmapGlyph.cpp, src/FTExtrdGlyph.cpp, src/FTFont.cpp, src/FTOutlineGlyph.cpp, src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp: * Fix the FTLayout rendering: line feeds were not properly handled. Patch by Eric Beets. 2008-04-17 16:13 sammy * [r919] AUTHORS, README.txt: * Moved authorship information from README.txt to a separate AUTHORS file and added Eric Beets and myself. No need to track the file with automake, it's picked up by default. 2008-04-17 16:07 sammy * [r918] BUGS, Makefile.am, TODO: * Re-added BUGS and TODO from the old trunk. 2008-04-17 13:38 sammy * [r917] src/FTFont.cpp, src/FTSimpleLayout.cpp: * Use pen += FTPoint(a, 0) constructs instead of pen.X(pen.X() + a), it's more object-oriented. 2008-04-17 13:37 sammy * [r916] include/FTPoint.h: * Implement - and -= operators in the FTPoint class. * Allow to omit the Z coordinate in the FTPoint constructor, in which case it is set to zero. 2008-04-17 13:36 sammy * [r915] src/FTFont.cpp: * Fix a bug in FTFont::DoRender() introduced by my FTSimpleLayout merge that was causing excessive spacing between characters. 2008-04-16 15:57 sammy * [r914] include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLTextureFont.h, include/FTSimpleLayout.h, src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLTextureFont.cpp, src/FTSimpleLayout.cpp: * Remove a lot of code duplication caused by the char/wchar_t overloading thanks to templates. No API change here. 2008-04-15 13:52 sammy * [r913] .gitignore: * Add a .gitignore file for people tracking FTGL using git-svn. 2008-04-15 09:53 sammy * [r912] include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, src/FTGLBitmapFont.cpp, src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp, src/FTGlue.cpp: * Added ftglDestroyFont() destructor for the C bindings. * Remove useless "#ifdef __cplusplus" constructs from .cpp files. 2008-04-14 14:22 sammy * [r911] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp: * Made the FTGLDemo and FTGLMFontDemo coding style consistent with the rest of the code. 2008-04-14 13:41 sammy * [r910] include/FTSimpleLayout.h: * Remove stray non-breaking spaces from the source code. 2008-04-14 13:22 sammy * [r909] include/FTLayout.h, include/FTSimpleLayout.h, src/FTSimpleLayout.cpp: * Made the FTSimpleLayout coding style consistent with the rest of the code. 2008-04-13 22:13 sammy * [r908] demo/FTGLDemo.cpp, demo/FTGLMFontDemo.cpp, include/FTLayout.h, include/FTSimpleLayout.h, src/FTSimpleLayout.cpp, test/Fontdefs.h: * Added copyright and license information to recently merged files. 2008-04-13 21:47 sammy * [r907] .: * Branch FTGL_2_0_2b is the new trunk. 2008-04-13 21:39 sammy * [r905] : * Merged trunk commits [678] and [711], by henry: + Created a demo that can handle multiple fonts and command line options. + Updated for new compiler. 2008-04-13 21:27 sammy * [r904] : * Merged trunk commits [741], [742], [745], [747], [748] and [749], by henry: + Changed to use FTGlyphSlot internally instead of FTGlyph. + Added a test for broken glyph but freetype is broken so it doesn't work. + Added SetDepth function to FTBBox. + Tidy Up. + Test for bitmap bbox. 2008-04-13 21:14 sammy * [r903] : * Merged trunk commits [664], [665], [666], [667], [669], [670], [671], [672] and [684], by patrick and henry: + Added FTLayout.h, FTSimpleLayout.h and FTSimpleLayout.cpp to implement a framework for layout managers and an implementation of a simple layout manager. + Updated FTGLDemo to use the new FTSimpleLayout. Changes include: - Added a font origin to specify the location to render the font. - The default text is now blatantly plagarized from the back cover of the OGL red book. - The font size is much smaller. - Font metrics are rendered differently depending on the current layout manager. - The FTSimpleLayout alignment mode is now output with other font information. - The space bar no longer cycles through the fonts. The cursor up/down keys do. - The cursor left/right keys increment/decrement the size of the current font. - The page up/page down keys cycle through the layout managers. - The home/end keys increment and decrement the line length of a simple layout - The tab key cycles through the alignment modes of a simple layout. + Fixed a bug where the trackball rotation was applied after translation. + Minor reformatting and enabled texture fonts to be selected + Un-inlined private methods...because they are called by other private inlined methods + Minor formatting changes + Adding FTLayout 2008-04-13 19:37 sammy * [r902] : * Merged trunk commits [662] and [663], by patrick: + Added the FTBBox::Invalidate and FTBBox::IsValid methods. + Changed the FTFont::BBox to accept a range of indicies. Only characters with the range are checked. The previous funcitonality is preserved via inline methods that call the new implementation. + Kluged a fix for a bug where FTFont::BBox was returning bounding volumes where min > max. I don't know where the problem is originating, I just force the bounds to be correct. + Changed the FTFont::DoRender methods to accept an external FTPoint for the pen position. This enables FTLayout classes to use their own pen for rendering. + Added the FTLayout class as a friend of FTFont to allow layout managers to call private rendering functions and access private font information. 2008-04-13 14:04 sammy * [r899] : * Changed some unit tests so that they're clearer about where the failures come from. 2008-04-13 09:50 sammy * [r898] : * Fix a crash in the glyph extrusion code when a contour has zero points. 2008-04-13 09:37 sammy * [r897] : * Fix minor typo (polyon -> polygon). 2008-04-13 09:34 sammy * [r896] : * Fix a coordinate bug in the extrusion texture mapping. 2008-04-13 09:28 sammy * [r895] : * Minor refactoring in FTExtrdGlyph.cpp. 2008-04-13 09:06 sammy * [r894] : * Fix a crash in FTContour::FTContour caused by invalid or unknown tags. 2008-04-13 07:48 sammy * [r893] : * Refactoring FTContour. 2008-04-13 01:29 sammy * [r892] : * Fix a crash in FTBitmapGlyph-Test.cpp caused by glGetError() calls with no GL context. 2008-04-13 00:53 sammy * [r891] : * Build cppunit tests using the autotools. 2008-04-12 23:55 sammy * [r890] : * Merging [689]. 2008-04-12 22:57 sammy * [r889] : * Rename license files to COPYING.MIT and COPUING.LGPL. 2008-04-12 22:44 sammy * [r888] : * Add licensing information to all files in the library. 2008-04-12 22:41 sammy * [r887] : * Fix an undefined operation in the FTGL demo. 2008-04-11 16:24 sammy * [r886] : * C bindings for FTGL, written by Éric Beets . 2008-04-04 13:16 sammy * [r885] : * Build the documentation the autotools way. If doxygen is not present, then do nothing. 2008-04-04 12:43 sammy * [r884] : * Generate a config.h file instead of passing all defines in the compiler command line. * "make install" now properly installs the includes, the documentation and the .pc file. * Generate a shared library. 2008-04-04 12:21 sammy * [r883] : * Big build system overhaul. Autotools-generated files are no longer stored in SVN, the bootstrap script is more tolerant with odd installations, all makefiles are a lot shorter. 2008-04-04 11:19 sammy * [r882] : * Put standard system headers first because on Windows glut.h uses exit(). 2008-04-04 09:20 sammy * [r881] : * Fix an illegal cast of a static string to a char* (has to be char const*). 2008-04-04 09:18 sammy * [r880] : * Remove extra qualification in FTTextureGlyph::ResetActiveTexture, this is illegal and no longer tolerated by recent gcc versions. 2008-04-04 09:17 sammy * [r879] : * Abort make with an error if a submake fails, otherwise the error might never be noticed by automated builds. 2008-03-03 16:41 sammy * [r878] : * Remove svn:executable property from source files. 2005-01-03 09:09 henry * [r876] : Reset the error when setting the charmap 2005-01-03 07:54 henry * [r875] : Added test for SDL 2004-12-20 20:12 henry * [r874] : Fixed xcode paths 2004-12-12 10:01 henry * [r873] : Changed behaviour so that if an errror occurs the object isn't modified. (strong guarantee). 2004-12-10 21:48 henry * [r871] : Updated for 2.1.2 2004-12-10 09:51 henry * [r870] : const correctness 2004-12-10 09:51 henry * [r869] : Added include for assert 2004-12-06 22:42 henry * [r868] : const correctness. 2004-12-06 22:41 henry * [r867] : Minor code format change 2004-12-06 10:34 henry * [r866] : Changed the way the colour is specified. It can now be done per string rather than at start up as previous. 2004-12-05 09:53 henry * [r864] : Added xCode project properly. 2.1.1 2004-12-05 09:50 henry * [r863] : Added xCode project 2004-12-05 09:38 henry * [r861] : Updated for 2.1 2004-12-05 09:35 henry * [r860] : Updated for 2.1 2004-12-05 09:29 henry * [r859] : Updated to 2.1 2004-12-05 09:29 henry * [r858] : const correctness 2004-12-05 09:08 henry * [r857] : const correctness 2004-10-18 21:41 henry * [r856] : Removed depth member var. Fixed a problem with normal generation. 2004-10-17 00:40 henry * [r855] : Changed advance to be an FTPoint rather than a float. 2004-10-12 01:23 henry * [r854] : Updated comments 2004-10-12 01:06 henry * [r853] : Got rid of the DoRender function. 2004-10-11 09:46 henry * [r852] : Added a test for pen position 2004-10-11 09:46 henry * [r851] : Changed the gl window creation so that the pen position test in bitmap font test would work 2004-10-11 09:45 henry * [r850] : Changed pos assignment 2004-10-11 02:58 henry * [r849] : Added operator + & * to FTPoint 2004-10-11 01:58 henry * [r848] : Renamed variable 2004-10-11 01:56 henry * [r847] : Removed a redundant var 2004-10-11 01:55 henry * [r846] : Fixed a casting problem 2004-10-10 22:50 henry * [r845] : Refactoring FTPoint 2004-10-10 11:14 henry * [r844] : Refactoring FTPoint 2004-10-10 10:45 henry * [r843] : Added cast to double operator 2004-10-08 11:37 henry * [r842] : Changed a couple of variable names. 2004-10-07 02:11 henry * [r841] : Fixed some floats 2004-10-07 02:09 henry * [r840] : Changed testKerning to use a font with a kerning table. 2004-10-05 04:49 henry * [r839] : nothing 2004-10-05 04:48 henry * [r838] : Added hasKerningTable member so we don't query the font every glyph. Got rid of the redundant Close() and unused UnitsPerEM() 2004-10-03 22:50 henry * [r837] : Adding support for turning off display lists in FTGL 2004-10-03 22:44 henry * [r836] : size_t suddenly stopped working in xCode!! 2004-10-03 22:42 henry * [r835] : Updated for 2.1 2004-10-03 22:34 henry * [r834] : Only set the err in CheckGlyph if it hasn't been set by some other part of the process. 2004-10-03 21:59 henry * [r833] : Doh 2004-10-03 21:11 henry * [r832] : CheckGlyph sets error flag 2004-10-03 21:10 henry * [r831] : Update comments 2004-10-01 05:32 henry * [r830] : Updated for 2.1 candidate release 2004-09-30 22:50 henry * [r829] : Minor 2004-09-30 13:18 henry * [r828] : Removed GL_EXT_texture_object defines. 2004-09-30 11:46 henry * [r827] : Updating documentation 2004-09-30 08:15 henry * [r826] : Code to turn off display lists. 2004-09-30 00:08 henry * [r825] : Change to BBox to stop it exiting completely on a NULL glyph. 2004-09-29 23:55 henry * [r824] : Fixed infinite loop. 2004-09-29 23:46 henry * [r823] : Changed tests to better show the interaction between character encodings 2004-09-29 23:11 henry * [r822] : Made tests more obvious 2004-09-29 23:09 henry * [r821] : Removed the pixels per em function because no one is using them. Added a test to bail early if the client is setting the size to the existing size. 2004-09-29 23:07 henry * [r820] : Removed the pixels per em function because no one is using them. 2004-09-29 23:06 henry * [r819] : Added a test to bail early of the client sets the size to the existing size. Removed the pixels per em function because no one is using them. 2004-09-29 10:24 henry * [r818] : Refactored tests 2004-09-29 04:13 henry * [r817] : Constructed texture to stop glError in test. 2004-09-29 03:13 henry * [r816] : Improved error values for tests 2004-09-29 03:07 henry * [r815] : Added testCheckGlyphFailure test 2004-09-29 03:01 henry * [r814] : Fixing render tests. Must set size before rendering. 2004-09-28 11:49 henry * [r813] : Changed CheckGlyph function to indicate failure to create a glyph. 2004-09-28 05:35 henry * [r812] : Trying to track down a crashing bug when calling render before FaceSize(); 2004-09-28 04:50 henry * [r811] : Fixed a bug where resizing FTGLTextureFont caused a GL error 2004-09-28 03:55 henry * [r810] : Added assert for gl error 2004-09-28 03:54 henry * [r809] : Newline at end of file 2004-09-28 02:39 henry * [r808] : Added a function to construct a gl context. Required for some tests 2004-09-28 02:39 henry * [r807] : New tests. 2004-09-28 02:19 henry * [r806] : New tests. 2004-09-27 23:21 henry * [r805] : Less precision 2004-09-27 05:59 henry * [r804] : Tests work and pass 2004-09-27 05:34 henry * [r803] : Initial Add 2004-09-26 09:47 henry * [r802] : Finalised texture coordinate generation code. Tidied some code. 2004-09-26 09:46 henry * [r801] : Removed activeTextureID from initialisation list. 2004-09-26 09:45 henry * [r800] : Added an assert for a 0 maximum texture size. This is tripping some people up. 2004-09-18 11:25 henry * [r799] : Added demonstration of texture co-ordinate generation. 2004-09-18 11:24 henry * [r798] : Added texture co-ordinate generation. 2004-08-23 08:05 henry * [r797] : Added LineHeight function. 2004-08-23 08:03 henry * [r796] : Remove a superfluous semi-colon. 2004-08-23 07:18 henry * [r795] : Got rid fo the GL_TEXTURE_2D_BINDING_EXT call in FTTextureGlyph and replaced it with a static member. 2004-08-22 05:50 henry * [r794] : Removed unnecessary translates in the glyph rendering code. 2004-08-22 04:03 henry * [r793] : Removed out of date Code warrior project 2004-08-19 05:43 henry * [r792] : FaceSize now sets the error value. 2004-08-17 01:53 henry * [r791] : tweatked the font size 2004-08-17 01:51 henry * [r790] : Added docs 2004-08-17 01:46 henry * [r789] : Added note for CYGWIN tesselator define for v2.0.10 2004-08-16 06:56 henry * [r787] : Updated FTFont( *pBufferBytes, bufferSizeInBytes) documentation. 2004-08-16 06:54 henry * [r786] : Updated to 2.0.11 2004-08-16 06:25 henry * [r784] : Updated for 2.0.10 2004-08-16 06:22 henry * [r783] : Updated FTFont( *pBufferBytes, bufferSizeInBytes) documentation. 2004-08-16 06:09 henry * [r782] : Fixed a couple of tabs 2004-05-10 09:11 henry * [r781] : First add for buffer font stuff 2004-05-09 07:22 henry * [r780] : Changed signed to unsigned for glyph indices 2004-05-09 07:13 henry * [r779] : Updated for changes in FTCharmap 2004-05-09 07:09 henry * [r778] : Renamed functions for clarity 2004-05-04 10:38 henry * [r777] : Added __CYGWIN__ 2004-05-04 10:17 henry * [r776] : Renamed 2004-04-21 09:17 henry * [r774] : Update for 2.0.9 2004-04-20 20:55 henry * [r773] : includes now go in FTGL subdir 2004-04-20 20:50 henry * [r772] : Moved include to fix FT_OPEN_MEMORY # def for older freetype versions 2004-04-09 05:43 henry * [r770] : updated docs 2004-04-09 05:42 henry * [r769] : Added comment extra function 2004-04-09 05:29 henry * [r768] : Update for 2.0.8 2004-04-09 05:28 henry * [r767] : Not needed any more 2004-04-09 05:24 henry * [r766] : Updated for 2.0.8 2004-04-09 05:22 henry * [r765] : Added comments for new functions 2004-04-09 05:09 henry * [r764] : For 2.0.8 2004-04-09 04:08 henry * [r763] : Fixes for glyph to glyphSlot change 2004-04-09 04:01 henry * [r761] : Added symbol for front and rear facing 2004-04-09 03:51 henry * [r760] : Added symbol for front and rear facing 2004-01-22 08:11 henry * [r759] : Changed FTGLTextureFont to use FTVector for texture id list. 2003-11-02 21:40 henry * [r758] : Removed FTLayout.h 2003-10-20 02:48 henry * [r757] : Moved charmap list from FTCharmap to FTFont 2003-10-19 21:38 henry * [r756] : Moved charmap list function out of FTCharmap into FTFont 2003-10-19 21:16 henry * [r755] : Moved charmap list function out of FTCharmap into FTFont 2003-10-19 02:40 henry * [r754] : Can now get the list of supported charmaps for the font. 2003-10-11 03:41 henry * [r753] : FTCharToGlyphIndexMap::find no longer returns a pointer 2003-10-08 21:00 henry * [r752] : Delete charmap in destructor. 2003-10-04 04:58 henry * [r751] : Initial test before refactoring 2003-10-02 04:07 henry * [r750] : Test for outline or bitmap doesn't seem to matter. 2003-10-01 06:46 henry * [r747] test/FTBBox-Test.cpp: Now uses FT_Outline_Get_CBox where possible 2003-10-01 00:25 henry * [r746] : Minor change 2003-09-29 20:59 henry * [r745] test/FTBBox-Test.cpp: Added SetDepth function to FTBBox 2003-09-29 04:56 henry * [r744] : Changed from FT_Glyph to FT_GlyphSlot 2003-09-29 04:55 henry * [r743] : Tidied up test 2003-09-25 03:55 henry * [r741] test/FTBBox-Test.cpp: Changed to use FTGlyphSlot internally instead of FTGlyph 2003-09-24 22:13 henry * [r740] : Initial Add 2003-09-24 22:12 henry * [r739] : Fixed some error return values. 2003-09-24 22:05 henry * [r738] : Removed old char map function 2003-09-24 22:05 henry * [r737] : Removed old comments 2003-09-22 05:27 henry * [r736] : Refactored setUpFreetype function. 2003-09-22 02:11 henry * [r735] : Fixes for deprecated identifiers in 2.1.5 2003-09-21 22:36 henry * [r734] : Fixed FT_OPEN_MEMORY for 2.1.5 2003-09-21 01:43 henry * [r732] : Fixed for 2.1.5 2003-09-21 01:42 henry * [r731] : Fixed memory face error code 2003-09-21 01:42 henry * [r730] : Small change for VC.net 2003-09-19 23:37 henry * [r729] : Added a test for the freetype library version. 2003-09-19 23:35 henry * [r728] : Fixed a spelling mistake. 2003-08-30 23:24 henry * [r726] : Update for 2.0.7 2003-08-29 00:04 henry * [r723] : Removed FTSimpleLayout 2003-08-25 04:23 henry * [r721] : Updated the unix build scripts 2003-08-25 04:18 henry * [r720] : Updated unix build scripts 2003-08-25 03:31 henry * [r718] : Updated for 2.0.5 2003-08-25 03:02 henry * [r717] : Update for 2.0.5 2003-08-05 00:26 henry * [r716] : Refactored variable names 2003-07-23 09:06 henry * [r715] : Remove Font Table function. 2003-07-23 09:06 henry * [r714] : Fixed precision conversion 2003-07-18 10:13 henry * [r712] : Minor change 2003-07-16 10:18 henry * [r711] test/demo.cpp: Updated for new compiler 2003-07-16 10:17 henry * [r710] : Made a constant a float 2003-07-12 12:06 henry * [r709] : Removed inline directive 2003-07-12 12:06 henry * [r708] : Re-ordereds function for inlining 2003-06-08 01:21 henry * [r707] : Refactored FTGlyphContainer & FTCharmap 2003-06-08 01:09 henry * [r706] : Refactored FTGlyphContainer & FTCharmap. They now store FTGlyphs sequentially rather than by glyph index. 2003-06-08 01:08 henry * [r705] : Minor format change 2003-06-08 01:02 henry * [r704] : Minor format change 2003-06-03 04:02 henry * [r703] : Now takes an FTGL face not a Freetype fac 2003-06-03 04:01 henry * [r702] : Now takes an FTGL face not a Freetype fac Fixed docs Added glyphIndex function 2003-06-03 03:58 henry * [r701] : Minor format fix 2003-06-03 03:08 henry * [r700] : Moved FTCharmap into this class 2003-06-03 02:57 henry * [r699] : Removed FTCharmap from FTFace 2003-06-03 02:51 henry * [r698] : Added extra defines for GLUTesselatorFunction 2003-06-03 02:50 henry * [r697] : Removed FTCharmap member and associated methods 2003-06-03 02:44 henry * [r696] : Better variable name 2003-05-04 21:12 henry * [r695] : Changed for the new hinter in Freetype 2.1.4 2003-05-04 21:06 henry * [r694] : Added null size test in PixelsPerEm functions 2003-05-04 21:02 henry * [r693] : Changed unit tests for new hinter in Freetype 2.1.4 2003-05-04 20:59 henry * [r692] : Added test for broken contour tags 2003-05-04 20:54 henry * [r691] : Changed unit tests for new hinter in Freetype 2.1.4 2003-05-03 05:45 henry * [r690] : Changed MAC font path 2003-04-13 02:09 henry * [r680] : Fixed FTGLTextureFont resize bug 2003-04-12 01:57 henry * [r679] : Fix in FTGLTextureFont 2003-04-09 10:20 henry * [r677] : Updated for 2.03 2003-04-09 10:14 henry * [r675] : Added extra test for broken contour 2003-04-09 10:13 henry * [r674] : Fixed broken contour bug 2003-04-05 00:40 * [r661] : This commit was manufactured by cvs2svn to create branch 'FTGL_2_0_2b'. 2003-04-05 00:40 henry * [r659] include/FTList.h: Fixed formatting 2003-04-05 00:34 henry * [r658] docs/html.tar.gz: Updated for 2.02 2003-04-04 02:09 henry * [r657] HISTORY.txt, README.txt, TODO.txt, test/font_pack/README.txt: Updated for 2.02 2003-04-03 23:59 henry * [r656] src/FTExtrdGlyph.cpp: Made vectoriser a stack var and refactored variables 2003-04-02 23:47 henry * [r655] include/FTList.h, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp, src/FTVectoriser.cpp: Fixed memory leaks 2003-03-14 01:40 henry * [r653] README.txt, TODO.txt: Updated for 2.0.1 2003-03-13 06:01 henry * [r652] HISTORY.txt: Update 2.01 2003-03-13 00:40 ellers * [r651] win32_vcpp/README_WIN32.txt: (hopefully) changed newlines to DOS style) 2003-03-12 18:55 marcelo * [r649] unix/acinclude.m4, unix/aclocal.m4, unix/config.guess, unix/config.sub, unix/configure: Update autoconf stuff to incorporate GL detection fixes 2003-03-12 18:49 marcelo * [r648] unix/configure.ac, unix/m4/gl.m4: Fix problem with configure failing to find GL libraries because they are installed in the X11 tree 2003-03-12 11:44 marcelo * [r647] unix/src/Makefile: Fix blooper with include file installation; the include files were moved to 'include', I noticed, but forgot to update the Makefile 2003-03-06 10:30 marcelo * [r646] unix/src/Makefile: Get rid of annoying IRIX droppings on distclean 2003-03-06 10:22 marcelo * [r645] unix/docs/Makefile: Last minute change to get document generation working again on IRIX 2003-03-06 10:06 marcelo * [r644] unix/aclocal.m4, unix/configure: Update aclocal.m4 and configure script before release 2003-03-06 08:09 henry * [r642] HISTORY.txt: Minor changes 2003-03-05 21:25 henry * [r641] HISTORY.txt, README.txt, TODO.txt, demo/README.txt, mac/README.txt, test/README.txt, test/font_pack/README.txt: Version 2.0 release 2003-02-27 22:28 henry * [r640] src/FTFont.cpp, test/FTFont-Test.cpp: Fixed null string bug in BBox 2003-02-24 03:03 henry * [r639] test/README.txt, test/font_pack/README.txt: Updated for v2 release 2003-02-24 01:24 henry * [r638] test/README.txt, test/font_pack, test/font_pack/README.txt: Initial Add 2003-02-07 13:04 ellers * [r637] win32_vcpp/ftgl_demo/ftgl_demo.dsp, win32_vcpp/ftgl_demo/ftgl_demo_2.dsp, win32_vcpp/ftgl_dll/ftgl_dll.dsp, win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp: a few more minor tweaks to the project files 2003-02-07 12:58 ellers * [r636] win32_vcpp/ftgl.dsw, win32_vcpp/ftgl_demo/ftgl_demo.dsp, win32_vcpp/ftgl_demo/ftgl_demo_2.dsp, win32_vcpp/ftgl_dll/ftgl_dll.dsp, win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp, win32_vcpp/unit_tests/unit_tests.dsp: altered projects so unit tests will build with cppunit 2003-01-30 12:24 ellers * [r635] test/FTBBox-Test.cpp, test/FTCharmap-Test.cpp, test/FTMesh-Test.cpp, test/FTSize-Test.cpp, test/FTVectoriser-Test.cpp, test/mmgr.cpp, test/mmgr.h, win32_vcpp/ftgl.dsw, win32_vcpp/ftgl_demo/demo.cpp, win32_vcpp/ftgl_dll/ftgl_dll.dsp, win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp, win32_vcpp/unit_tests, win32_vcpp/unit_tests/unit_tests.dsp: updates for win32 build 2003-01-28 13:53 ellers * [r634] src/FTExtrdGlyph.cpp: minor update for win32 2003-01-28 13:52 ellers * [r633] win32_vcpp/ftgl.dsw, win32_vcpp/ftgl_demo/ftgl_demo.dsp, win32_vcpp/ftgl_demo/ftgl_demo_2.dsp, win32_vcpp/ftgl_dll/ftgl_dll.dsp, win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp: updated win32 project files 2003-01-20 13:58 marcelo * [r632] demo/FTGLDemo.cpp: Expect a fontfile on the command line, fall back to a default one on systems where a default is known -- else complain about the missing parameter. Come to think of it, I could use a PS font on IRIX. I'll look into that later. 2003-01-16 00:23 henry * [r631] src/FTVectoriser.cpp: Removed redundant () in preprocess 2003-01-14 16:13 marcelo * [r630] unix/acinclude.m4, unix/aclocal.m4, unix/configure, unix/m4/glut.m4: Add a couple of extra libraries usually required by GLUT 2003-01-14 16:09 marcelo * [r629] unix/demo/Makefile: Mantra: Link C++ programs with the C++ compiler 2003-01-14 16:08 marcelo * [r628] src/FTVectoriser.cpp: The parser in the IRIX C++ compiler has a bug and the result of: new (Type*)[size] is of type "Type*" instead of "Type**". Work arround it by typedef'ing TypeP which is just Type*. 2003-01-14 14:32 marcelo * [r627] unix/acinclude.m4, unix/aclocal.m4, unix/configure, unix/m4/glut.m4: Get ./configure to work with IRIX (and other systems with broken linkers) 2003-01-13 03:09 henry * [r626] extras/layout/FTICUFace.cpp, extras/layout/FTICUFace.h, extras/layout/FTLayoutFont.cpp, extras/layout/FTLayoutFont.h, extras/layout/LEFontInstance.h, test/FTlayout-Test.cpp: Integrating ICU 2003-01-12 21:27 marcelo * [r625] unix, unix/Make.conf.in, unix/Make.rules, unix/Makefile, unix/README.txt, unix/acinclude.m4, unix/aclocal.m4, unix/bootstrap, unix/config.guess, unix/config.sub, unix/configure, unix/configure.ac, unix/demo, unix/demo/Makefile, unix/docs, unix/docs/Makefile, unix/ftgl.pc.in, unix/install-sh, unix/ltmain.sh, unix/m4, unix/m4/cxx.m4, unix/m4/freetype2.m4, unix/m4/gl.m4, unix/m4/glut.m4, unix/src, unix/src/Makefile: Unified UNIX building system 2003-01-12 08:42 henry * [r623] extras, extras/layout, extras/layout/FTICUFace.h, extras/layout/FTLayoutFont.h: Layout stuff 2003-01-10 03:43 henry * [r622] mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj: Added layout test 2003-01-10 03:26 henry * [r621] test/FTlayout-Test.cpp: Starting future layout support tests 2003-01-10 03:26 henry * [r620] test/FTVectoriser-Test.cpp, test/Fontdefs.h: Adding fonts for future layout support tests 2003-01-10 03:25 henry * [r619] include/FTFace.h, src/FTFace.cpp, test/FTFace-Test.cpp: Trying to add table support 2003-01-10 01:47 henry * [r618] include/FTFace.h, include/FTSize.h, src/FTFace.cpp, src/FTSize.cpp, test/FTFace-Test.cpp, test/FTSize-Test.cpp: Added units per EM square 2003-01-09 09:25 henry * [r617] HISTORY.txt: added attach file from memory 2003-01-09 02:56 henry * [r616] src/FTFace.cpp: Fixed warning and kerning 2003-01-09 01:59 henry * [r615] test/FTBBox-Test.cpp, test/FTCharmap-Test.cpp, test/FTFace-Test.cpp, test/FTFont-Test.cpp, test/FTGlyphContainer-Test.cpp, test/FTLibrary-Test.cpp, test/FTList-Test.cpp, test/FTMesh-Test.cpp, test/FTPoint-Test.cpp, test/FTSize-Test.cpp, test/FTTesselation-Test.cpp, test/FTVector-Test.cpp, test/FTVectoriser-Test.cpp: Formatting changes 2003-01-08 23:32 henry * [r614] include/FTGLOutlineFont.h, include/FTGLPixmapFont.h: Updated doc 2003-01-08 23:13 henry * [r613] include/FTFont.h, include/FTGLExtrdFont.h: Updated doc 2003-01-08 23:10 henry * [r612] include/FTFont.h: Updated doc 2003-01-08 22:47 henry * [r611] include/FTFont.h: Updated doc 2003-01-08 22:42 henry * [r610] test/FTList-Test.cpp, test/FTMesh-Test.cpp, test/FTPoint-Test.cpp: Tidied up includes 2003-01-08 21:48 henry * [r609] test/arial_ttf.cpp: Replaced by HPGCalc 2003-01-08 21:46 henry * [r608] test/FTFace-Test.cpp, test/FTFont-Test.cpp, test/Fontdefs.h, test/HPGCalc_afm.cpp, test/HPGCalc_pfb.cpp: Implemented Attach from memory test 2003-01-08 19:13 henry * [r607] test/HPGCalc_afm.cpp, test/HPGCalc_pfb.cpp: Files for attch mem test 2003-01-08 09:02 henry * [r606] test/FTBBox-Test.cpp, test/FTFace-Test.cpp, test/FTFont-Test.cpp, test/FTSize-Test.cpp, test/FTVectoriser-Test.cpp, test/Fontdefs.h: Added Type1 file attach test 2003-01-08 04:24 henry * [r605] include/FTFace.h, include/FTFont.h, src/FTFace.cpp, src/FTFont.cpp, test/FTFace-Test.cpp, test/FTFont-Test.cpp: Added attach from memory function 2003-01-08 00:35 henry * [r604] HISTORY.txt, README.txt, license.txt: Impending autoconf and year 03 2003-01-06 04:11 henry * [r603] src/FTGlyphContainer.cpp: removed test in d_stor 2003-01-06 04:10 henry * [r602] src/FTFont.cpp: Minor change to BBox 2003-01-05 22:40 henry * [r601] test/FTFace-Test.cpp: Minor change 2002-12-31 04:47 henry * [r600] test/FTFont-Test.cpp: Change size test 2002-12-31 04:24 henry * [r599] HISTORY.txt, README.txt: Fixes to bitmap glyph alignment 2002-12-31 04:07 henry * [r598] include/FTBitmapGlyph.h, src/FTBitmapGlyph.cpp, src/FTGLBitmapFont.cpp, src/FTGLTextureFont.cpp, src/FTTextureGlyph.cpp: Fixed alignment issues for bitmap and texture glyphs 2002-12-21 09:11 henry * [r597] docs/html.tar.gz: No private structs 2002-12-21 09:09 henry * [r596] demo/FTGLDemo.cpp: Changed int to float in glRasterPos 2002-12-21 09:08 henry * [r595] HISTORY.txt: Delete lists 2002-12-21 07:32 henry * [r594] src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp: Delete the display list 2002-12-21 07:23 henry * [r593] include/FTGlyphContainer.h: Minor change 2002-12-21 07:23 henry * [r592] docs/ftgl_dox: Don't doc private classes 2002-12-21 07:19 henry * [r591] include/FTGlyphContainer.h: Fixed docs 2002-12-21 07:15 henry * [r590] include/FTList.h: Docs 2002-12-21 07:11 henry * [r589] src/FTGlyphContainer.cpp: Refactored variable names 2002-12-21 07:10 henry * [r588] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp: Refactored variable names 2002-12-21 05:18 henry * [r587] include/FTFace.h, src/FTFace.cpp: Updated docs and removed numberOfCharmaps member 2002-12-21 05:08 henry * [r586] include/FTFont.h, src/FTFont.cpp: Removed DoAdvance function 2002-12-21 03:24 henry * [r585] src/FTFont.cpp: Refactored BBox() 2002-12-20 22:23 henry * [r584] test/FTVector-Test.cpp: Started writing tests 2002-12-20 22:22 henry * [r583] test/FTMesh-Test.cpp: Changes for FTList 2002-12-20 22:22 henry * [r582] test/FTList-Test.cpp: Added testGetFront 2002-12-20 22:21 henry * [r581] test/FTLibrary-Test.cpp: Added TestError() 2002-12-20 22:21 henry * [r580] include/FTVectoriser.h, src/FTVectoriser.cpp, test/FTTesselation-Test.cpp: Added Mesh::Combine and changed tempPointList to FTList 2002-12-20 22:20 henry * [r579] test/FTGlyphContainer-Test.cpp: Change for FTFace 2002-12-20 22:19 henry * [r578] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp: Made Glyph() const 2002-12-20 22:18 henry * [r577] include/FTGLTextureFont.h, src/FTGLTextureFont.cpp: Removed comments and makeGlyphList function 2002-12-20 22:17 henry * [r576] include/FTGlyph.h: Made BBox() const 2002-12-20 22:17 henry * [r575] include/FTFont.h, src/FTFont.cpp: Removed maekGlyphList function and changes for FTFace 2002-12-20 22:13 henry * [r574] include/FTFace.h, src/FTFace.cpp, test/FTFace-Test.cpp: Removed Open functions. C_stors now open face 2002-12-20 10:26 henry * [r573] include/FTList.h: Finished 2002-12-20 10:26 henry * [r572] include/FTVector.h: Minor formatting 2002-12-20 10:18 henry * [r571] include/FTLibrary.h: Minor formatting and and made get library const 2002-12-20 10:17 henry * [r570] src/FTTextureGlyph.cpp: Minor formatting and removed comments 2002-12-20 10:16 henry * [r569] include/FTGLBitmapFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTSize.h: Minor formatting 2002-12-20 10:13 henry * [r568] include/FTCharmap.h: Changed protected to private 2002-12-19 10:31 henry * [r567] include/FTList.h, mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj, test/FTList-Test.cpp, test/FTVector-Test.cpp: Added FTList, FTListTest and FTVectorTest 2002-12-19 10:29 henry * [r566] test/FTMesh-Test.cpp, test/FTTesselation-Test.cpp, test/FTVectoriser-Test.cpp: More tests 2002-12-19 10:28 henry * [r565] test/FTFace-Test.cpp: Uncommented test 2002-12-19 10:28 henry * [r564] include/FTFace.h, src/FTFace.cpp: Made return value const 2002-12-19 10:27 henry * [r563] include/FTFont.h, src/FTFont.cpp: Refactored function names 2002-12-19 10:27 henry * [r562] include/FTVectoriser.h, src/FTVectoriser.cpp: Made return values const 2002-12-19 10:26 henry * [r561] include/FTVector.h: Removed comments and protected 2002-12-19 10:25 henry * [r560] include/FTLibrary.h, src/FTLibrary.cpp: Changed init function name 2002-12-19 10:25 henry * [r559] include/FTGLTextureFont.h, src/FTGLTextureFont.cpp: Changed vars to GLunit 2002-12-19 10:24 henry * [r558] src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp: Made some objects const 2002-12-19 10:22 henry * [r557] include/FTContour.h: Inlined some functions 2002-12-18 03:53 henry * [r556] include/FTContour.h, src/FTContour.cpp: Trying to simplify the constructor. 2002-12-18 02:13 henry * [r555] test/FTMesh-Test.cpp: Added test for glCombine 2002-12-18 01:30 henry * [r554] mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj: Fixed tests 2002-12-17 23:51 henry * [r553] test/FTBBox-Test.cpp, test/FTVectoriser-Test.cpp, test/Fontdefs.h: Fixed tests 2002-12-17 23:28 henry * [r552] test/FTBBox-Test.cpp, test/FTCharmap-Test.cpp, test/FTFace-Test.cpp, test/FTFont-Test.cpp, test/FTGlyphContainer-Test.cpp, test/FTSize-Test.cpp, test/FTVectoriser-Test.cpp, test/Fontdefs.h, test/arial_ttf.cpp: Moved all the constants into a header 2002-12-17 20:17 henry * [r551] mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj: Fixed paths 2002-12-17 20:02 henry * [r550] HISTORY.txt: Note about include directory 2002-12-17 09:15 henry * [r549] docs/ftgl_dox, docs/html.tar.gz: Added include dir 2002-12-17 09:15 henry * [r548] include/FTContour.h: Fix docs 2002-12-17 09:10 henry * [r547] demo/FTGLDemo.cpp, test/demo.cpp: Changed render to Render 2002-12-17 08:42 henry * [r546] mac/Includes/freetype/cache, mac/Includes/freetype/cache/ftccache.h, mac/Includes/freetype/cache/ftccmap.h, mac/Includes/freetype/cache/ftcglyph.h, mac/Includes/freetype/cache/ftcimage.h, mac/Includes/freetype/cache/ftcmanag.h, mac/Includes/freetype/cache/ftcsbits.h, mac/Includes/freetype/cache/ftlru.h, mac/Includes/freetype/config, mac/Includes/freetype/config/ftconfig.h, mac/Includes/freetype/config/ftheader.h, mac/Includes/freetype/config/ftmodule.h, mac/Includes/freetype/config/ftoption.h, mac/Includes/freetype/internal, mac/Includes/freetype/internal/autohint.h, mac/Includes/freetype/internal/cfftypes.h, mac/Includes/freetype/internal/fnttypes.h, mac/Includes/freetype/internal/ftcalc.h, mac/Includes/freetype/internal/ftdebug.h, mac/Includes/freetype/internal/ftdriver.h, mac/Includes/freetype/internal/ftextend.h, mac/Includes/freetype/internal/ftmemory.h, mac/Includes/freetype/internal/ftobjs.h, mac/Includes/freetype/internal/ftstream.h, mac/Includes/freetype/internal/internal.h, mac/Includes/freetype/internal/pcftypes.h, mac/Includes/freetype/internal/psaux.h, mac/Includes/freetype/internal/psglobal.h, mac/Includes/freetype/internal/pshints.h, mac/Includes/freetype/internal/psnames.h, mac/Includes/freetype/internal/sfnt.h, mac/Includes/freetype/internal/t1types.h, mac/Includes/freetype/internal/tttypes.h: Adding Unit tests 2002-12-17 08:40 henry * [r545] mac/FTGL.pbproj/project.pbxproj, mac/Includes/cppunit/extensions, mac/Includes/cppunit/extensions/AutoRegisterSuite.h, mac/Includes/cppunit/extensions/HelperMacros.h, mac/Includes/cppunit/extensions/Orthodox.h, mac/Includes/cppunit/extensions/RepeatedTest.h, mac/Includes/cppunit/extensions/TestDecorator.h, mac/Includes/cppunit/extensions/TestFactory.h, mac/Includes/cppunit/extensions/TestFactoryRegistry.h, mac/Includes/cppunit/extensions/TestSetUp.h, mac/Includes/cppunit/extensions/TestSuiteBuilder.h, mac/Includes/cppunit/extensions/TestSuiteFactory.h, mac/Includes/cppunit/extensions/TypeInfoHelper.h, mac/Includes/cppunit/ui, mac/Includes/cppunit/ui/text, mac/Includes/cppunit/ui/text/TestRunner.h: Adding unit tests 2002-12-17 08:35 henry * [r544] mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj, mac/Includes, mac/Includes/cppunit, mac/Includes/cppunit/Asserter.h, mac/Includes/cppunit/CompilerOutputter.h, mac/Includes/cppunit/Exception.h, mac/Includes/cppunit/NotEqualException.h, mac/Includes/cppunit/Outputter.h, mac/Includes/cppunit/Portability.h, mac/Includes/cppunit/SourceLine.h, mac/Includes/cppunit/SynchronizedObject.h, mac/Includes/cppunit/Test.h, mac/Includes/cppunit/TestAssert.h, mac/Includes/cppunit/TestCaller.h, mac/Includes/cppunit/TestCase.h, mac/Includes/cppunit/TestFailure.h, mac/Includes/cppunit/TestFixture.h, mac/Includes/cppunit/TestListener.h, mac/Includes/cppunit/TestResult.h, mac/Includes/cppunit/TestResultCollector.h, mac/Includes/cppunit/TestSucessListener.h, mac/Includes/cppunit/TestSuite.h, mac/Includes/cppunit/TextOutputter.h, mac/Includes/cppunit/TextTestProgressListener.h, mac/Includes/cppunit/TextTestResult.h, mac/Includes/cppunit/TextTestRunner.h, mac/Includes/cppunit/XmlOutputter.h, mac/Includes/cppunit/config-auto.h, mac/Includes/cppunit/config-bcb5.h, mac/Includes/cppunit/config-msvc6.h, mac/Includes/freetype, mac/Includes/freetype/freetype.h, mac/Includes/freetype/ftbbox.h, mac/Includes/freetype/ftcache.h, mac/Includes/freetype/ftchapters.h, mac/Includes/freetype/fterrors.h, mac/Includes/freetype/ftglyph.h, mac/Includes/freetype/ftimage.h, mac/Includes/freetype/ftlist.h, mac/Includes/freetype/ftmac.h, mac/Includes/freetype/ftmm.h, mac/Includes/freetype/ftmoderr.h, mac/Includes/freetype/ftmodule.h, mac/Includes/freetype/ftoutln.h, mac/Includes/freetype/ftrender.h, mac/Includes/freetype/ftsizes.h, mac/Includes/freetype/ftsnames.h, mac/Includes/freetype/ftsynth.h, mac/Includes/freetype/ftsystem.h, mac/Includes/freetype/fttrigon.h, mac/Includes/freetype/fttypes.h, mac/Includes/freetype/t1tables.h, mac/Includes/freetype/ttnameid.h, mac/Includes/freetype/tttables.h, mac/Includes/freetype/tttags.h, mac/Includes/ft2build.h, mac/Libraries, mac/Libraries/libcppunit.a, mac/Libraries/libfreetype.a: Adding unit tests 2002-12-17 08:21 henry * [r543] test/FTBBox-Test.cpp, test/FTCharmap-Test.cpp, test/FTContour-Test.cpp, test/FTFace-Test.cpp, test/FTFont-Test.cpp, test/FTGlyphContainer-Test.cpp, test/FTLibrary-Test.cpp, test/FTMesh-Test.cpp, test/FTPoint-Test.cpp, test/FTSize-Test.cpp, test/FTTesselation-Test.cpp, test/FTVectoriser-Test.cpp, test/TestMain.cpp, test/arial_ttf.cpp: Added unit tests 2002-12-17 08:18 henry * [r542] demo/FTGLDemo.cpp, test/demo.cpp: Changed mac font path to test directory 2002-12-17 04:44 henry * [r541] src/FTBitmapGlyph.cpp, src/FTPixmapGlyph.cpp, src/FTTextureGlyph.cpp: Fixed freetype render flag :) 2002-12-17 04:42 henry * [r540] include/FTBitmapGlyph.h, include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLTextureFont.h, include/FTGlyphContainer.h, src/FTBitmapGlyph.cpp, src/FTExtrdGlyph.cpp, src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLTextureFont.cpp, src/FTGlyphContainer.cpp, src/FTPixmapGlyph.cpp, src/FTTextureGlyph.cpp: Renamed render to Render 2002-12-17 04:37 henry * [r539] HISTORY.txt: More refactoring 2002-12-17 03:55 henry * [r538] mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj: Major refactoring to FTVectoriser and clients 2002-12-17 03:53 henry * [r537] include/FTVectoriser.h, src/FTVectoriser.cpp: Refactored to get rid of data memory buffers and function name tidy ups 2002-12-17 03:52 henry * [r536] src/FTPolyGlyph.cpp: Removed data memory buffer 2002-12-17 03:50 henry * [r535] src/FTOutlineGlyph.cpp: Changes in FTVectoriser and FTContour 2002-12-17 03:49 henry * [r534] src/FTExtrdGlyph.cpp: Removed data buffers. Now call into vectoriser 2002-12-17 03:46 henry * [r533] include/FTContour.h: Renamed 'Points' to 'PointCount' 2002-12-17 01:44 henry * [r532] include/FTBBox.h: Removed operator + 2002-12-17 01:33 henry * [r531] src/FTBBox.cpp: No loger needed. Replaced by += 2002-12-17 01:16 henry * [r530] src/FTExtrdGlyph.cpp: Removed redundant code and memory allocation 2002-12-17 01:05 henry * [r529] include/FTPoint.h: Added operator += 2002-12-16 23:25 henry * [r528] include/FTExtrdGlyph.h, src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp: Changes to the outline code in FTVectoriser 2002-12-16 23:24 henry * [r527] include/FTVectoriser.h, src/FTVectoriser.cpp: Made ProcessContours Private and removed GetOutline 2002-12-16 20:12 henry * [r526] include/FTVectoriser.h, src/FTVectoriser.cpp: Changes in FTContour 2002-12-16 20:11 henry * [r525] include/FTContour.h: Made pointList private and removed size() 2002-12-16 09:13 henry * [r524] docs/html.tar.gz: Reafctored *Font. Got rid of Open function 2002-12-16 08:53 henry * [r523] include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h: Updated the docs 2002-12-16 08:27 henry * [r522] HISTORY.txt, demo/FTGLDemo.cpp, include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, mac/FTGL.pbproj/henry.pbxuser, src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp, test/demo.cpp: Refactored FTFont to get rid of Open function 2002-12-16 03:46 henry * [r521] mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj: Refactoring FTContour 2002-12-16 00:40 henry * [r520] src/FTContour.cpp: Removed unused constants 2002-12-15 23:04 henry * [r519] include/FTContour.h: Updated comments 2002-12-15 23:02 henry * [r518] include/FTContour.h, src/FTContour.cpp: Unrolled evaluate curve 2002-12-15 22:04 henry * [r517] include/FTContour.h, src/FTContour.cpp: Refactored evaluate curve 2002-12-15 08:51 henry * [r516] include/FTContour.h, src/FTContour.cpp: Got rid of ctrlPtArray 2002-12-15 08:32 henry * [r515] docs/ftgl_dox, docs/html.tar.gz: Updated doxygen template 2002-12-15 08:23 henry * [r514] HISTORY.txt, mac/FTGL.pbproj/henry.pbxuser: FTcontour update 2002-12-15 08:20 henry * [r513] include/FTContour.h, src/FTContour.cpp: Removed contourPoint struct 2002-12-14 22:02 henry * [r512] include/FTContour.h: Removed conic and cubic functions 2002-12-14 22:01 henry * [r511] src/FTContour.cpp: Contour extraction is now one pass. The code is a bit ugly at this stage though. 2002-12-12 23:51 henry * [r510] docs/html.tar.gz: Refactored FTFont 2002-12-12 23:50 henry * [r509] include/FTGlyphContainer.h: Updated comments 2002-12-12 22:36 henry * [r508] mac/FTGL.pbproj/henry.pbxuser: update 2002-12-12 21:47 henry * [r507] include/FTFont.h, src/FTFont.cpp: Added CheckGlyph function 2002-12-12 21:46 henry * [r506] include/FTGLTextureFont.h: Made some members unsigned 2002-12-12 20:48 henry * [r505] include/FTFace.h, include/FTGlyphContainer.h, src/FTFace.cpp, src/FTGlyphContainer.cpp: Added GlyphCount accessor to FTFace 2002-12-12 20:46 henry * [r504] include/FTFont.h, src/FTFont.cpp, src/FTGLTextureFont.cpp: Pushed down numGlyph field 2002-12-12 06:12 henry * [r503] include/FTBitmapGlyph.h, include/FTGlyph.h, include/FTPixmapGlyph.h, include/FTTextureGlyph.h, src/FTPixmapGlyph.cpp, src/FTTextureGlyph.cpp: Got rid of numGreys and pushed down pos 2002-12-11 09:30 henry * [r502] HISTORY.txt: Glyph refactoring 2002-12-11 09:29 henry * [r501] src/FTFont.cpp: Minor change to bbox functions 2002-12-11 09:29 henry * [r500] include/FTBBox.h, src/FTBBox.cpp: Added another c_stor and operator += Fixed 'add' functions 2002-12-11 09:28 henry * [r499] include/FTExtrdGlyph.h, include/FTGlyph.h, include/FTOutlineGlyph.h, include/FTPolyGlyph.h, src/FTBitmapGlyph.cpp, src/FTExtrdGlyph.cpp, src/FTGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp, src/FTTextureGlyph.cpp: Removed redundant members. Moved BBox and advance to FTGlyph c_stor 2002-12-11 09:25 henry * [r498] src/FTGLTextureFont.cpp: Had to increase padding now that FTBBox uses floats. 2002-12-11 07:41 henry * [r497] include/FTVectoriser.h, src/FTVectoriser.cpp: Replaced contourList FTVector with an array. 2002-12-10 09:01 henry * [r496] src/FTContour.cpp, src/FTVectoriser.cpp: Minor fix 2002-12-10 08:48 henry * [r495] include/FTBBox.h: Changed size calculations to use floats 2002-12-10 08:38 henry * [r494] include/FTFont.h, include/FTSize.h, src/FTFont.cpp, src/FTGLTextureFont.cpp, src/FTSize.cpp: Changed size calculations to use floats 2002-12-08 09:39 henry * [r493] src/FTVectoriser.cpp: WIN32 function pointer typedef 2002-12-08 08:58 henry * [r492] HISTORY.txt: Refactored FTContour 2002-12-08 08:56 henry * [r491] include/FTVectoriser.h, src/FTVectoriser.cpp: Fixes for broken glyphs. Uses numberOfContours as a flag that the glyph is valid. 2002-12-08 07:01 henry * [r490] src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp: Minor tidy up 2002-12-08 06:57 henry * [r489] include/FTExtrdGlyph.h, include/FTOutlineGlyph.h, include/FTPolyGlyph.h, src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp: Made vectoriser a local variable 2002-12-08 06:51 henry * [r488] include/FTOutlineGlyph.h, src/FTOutlineGlyph.cpp: Removed an unnecessary memory allocation 2002-12-08 05:12 henry * [r487] docs/html.tar.gz, mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj: Updated for FTContour refactoring 2002-12-08 05:07 henry * [r486] include/FTVectoriser.h, src/FTVectoriser.cpp: Removed redundant member 2002-12-08 04:49 henry * [r485] include/FTContour.h: Removed freetype includes 2002-12-08 04:40 henry * [r484] include/FTVectoriser.h, src/FTVectoriser.cpp: Refactored FTContour - moved it into it's own file 2002-12-08 04:38 henry * [r483] src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp: Refactored FTContour 2002-12-08 04:37 henry * [r482] include/FTContour.h, src/FTContour.cpp: Moved from FTVectoriser to own file 2002-12-05 10:23 henry * [r481] src/FTVectoriser.cpp: Minor fix up 2002-12-05 09:33 henry * [r480] include/FTVectoriser.h, src/FTVectoriser.cpp: Refactored variables in Process() Changed Process to void Test in FTVectoriser c_stor 2002-12-05 06:47 henry * [r479] demo/FTGLDemo.cpp: Fixed path 2002-12-05 06:47 henry * [r478] include/FTVectoriser.h: Added docs 2002-12-05 06:46 henry * [r477] src/FTVectoriser.cpp: Refactored variable names 2002-12-05 06:11 henry * [r476] include/FTVectoriser.h, src/FTVectoriser.cpp: Refactored variable names Removed Point() Added docs 2002-12-05 06:01 henry * [r475] include/FTVectoriser.h: Fixed comments 2002-12-05 05:59 henry * [r474] include/FTGlyphContainer.h: Made numGlyphs unsigned 2002-12-04 09:02 henry * [r473] HISTORY.txt, docs/html.tar.gz: Updating for 141 2002-12-04 08:20 henry * [r472] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp: Error checking in Add Un-virtualised some functions Minor tidy ups 2002-12-04 07:03 henry * [r471] include/FTFont.h, include/FTGlyphContainer.h: Fixed documentation 2002-12-04 06:58 henry * [r470] include/FTFont.h: Fixed documentation 2002-12-04 06:21 henry * [r469] src/FTVectoriser.cpp: typedef for mips and linux 2002-12-04 06:19 henry * [r468] include/FTFont.h, src/FTFont.cpp: Error handling in Attach 2002-12-02 06:40 henry * [r467] docs/html.tar.gz: Preparing for 1.41 2002-12-02 06:35 henry * [r466] HISTORY.txt, TODO.txt, mac/FTGL.pbproj/henry.pbxuser: Getting ready for 1.41 2002-12-02 06:32 henry * [r465] demo/FTGLDemo.cpp: Rewriting to make it more 'correct' 2002-12-02 06:32 henry * [r464] src/FTSize.cpp: Minor bug fix 2002-12-02 06:31 henry * [r463] include/FTLibrary.h, src/FTLibrary.cpp: Renamed lib to library. Got rid of the version stuff. Unvirtualised some functions 2002-12-02 06:28 henry * [r462] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp: Got rid of the pre cache flag 2002-12-02 06:27 henry * [r461] src/FTGLTextureFont.cpp: Minor tidy up. 2002-12-02 06:27 henry * [r460] include/FTFont.h, src/FTFont.cpp: Fixed BBox null string bug. Better error handling. Got rid of pre cache flag. 2002-12-01 08:45 henry * [r459] test/demo.cpp: Added Idle function 2002-12-01 07:52 henry * [r458] src/FTFace.cpp, src/FTSize.cpp: Better error handling 2002-12-01 07:50 henry * [r457] include/FTCharmap.h, src/FTCharmap.cpp: Better error handling and remove platform/encoding function 2002-11-29 10:42 henry * [r456] mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj: FTBBox and FTPoint 2002-11-29 10:41 henry * [r455] mac/FTGL.pbproj/henry.pbxuser: FTBBox and FTPoint 2002-11-29 08:21 henry * [r454] include/FTFace.h, src/FTFace.cpp: Improved error handling 2002-11-29 08:20 henry * [r453] include/FTCharmap.h: Removed redundant include 2002-11-29 08:18 henry * [r452] include/FTBBox.h: Added Move and operator + 2002-11-29 08:13 henry * [r451] include/FTFont.h, src/FTFont.cpp: Got rid of Close() and improved som error handling 2002-11-29 07:58 henry * [r450] src/FTBBox.cpp: Operator + 2002-11-28 09:43 henry * [r449] src/FTBitmapGlyph.cpp: Added a static cast 2002-11-28 09:43 henry * [r448] include/FTFont.h, include/FTGLTextureFont.h: Got rid of inline for irix 2002-11-28 09:41 henry * [r447] include/FTCharToGlyphIndexMap.h: Changed cstdlib to stdlib.h for irix 2002-11-28 09:41 henry * [r446] src/FTFace.cpp: Set default values for kernAdvance 2002-11-28 09:40 henry * [r445] include/FTGlyph.h: Changed FT_Vector for FTPoint 2002-11-28 09:40 henry * [r444] src/FTGlyphContainer.cpp: Got rid of the tabs 2002-11-28 09:39 henry * [r443] src/FTVectoriser.cpp: Changed the gluTess callback function definitions 2002-11-28 08:23 henry * [r442] include/FTSize.h, include/FTVector.h, include/FTVectoriser.h: Changes to Documentation 2002-11-28 08:21 henry * [r441] include/FTBBox.h, include/FTCharmap.h, include/FTFace.h, include/FTFont.h, include/FTGLExtrdFont.h, include/FTLibrary.h, include/FTPoint.h, src/FTGLBitmapFont.cpp: Documentation Changes 2002-11-28 08:01 henry * [r440] demo/FTGLDemo.cpp: Removed some redundant code 2002-11-28 08:00 henry * [r439] include/FTBitmapGlyph.h, include/FTExtrdGlyph.h, include/FTGlyph.h, include/FTOutlineGlyph.h, include/FTPixmapGlyph.h, include/FTPolyGlyph.h, include/FTTextureGlyph.h, src/FTBitmapGlyph.cpp, src/FTExtrdGlyph.cpp, src/FTGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp, src/FTTextureGlyph.cpp: Changed FT_Vector to FTPoint 2002-11-27 07:47 henry * [r438] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp: Changes for FTPoint 2002-11-27 07:46 henry * [r437] src/FTGLBitmapFont.cpp, src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp: Changes to the glyph loading flags 2002-11-27 07:39 henry * [r436] include/FTFont.h, src/FTFont.cpp: Changes for FTPoint & FTBBox 2002-11-27 07:38 henry * [r435] include/FTFace.h, src/FTFace.cpp: Changes for FTPoint 2002-11-27 07:34 henry * [r434] include/FTVectoriser.h: Fixed an FTPoint 2002-11-27 07:12 henry * [r433] include/FTVectoriser.h, src/FTVectoriser.cpp: Moved FTPoint to it's own file 2002-11-27 06:35 henry * [r432] include/FTBBox.h, include/FTPoint.h, src/FTPoint.cpp: Moved these classes to there own files 2002-11-27 06:20 henry * [r431] include/FTFont.h, include/FTLibrary.h, include/FTVectoriser.h, src/FTExtrdGlyph.cpp, src/FTFont.cpp, src/FTGLExtrdFont.cpp, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp, src/FTVectoriser.cpp: Tidied up some float declarations 2002-11-23 09:04 henry * [r430] src/FTFace.cpp: Added cast to FT_New_Memory_Face 2002-11-23 09:02 henry * [r429] src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLTextureFont.cpp: Fixed PushAttrib call 2002-11-21 06:26 henry * [r428] src/FTTextureGlyph.cpp: Added glPixelStorei call to fix corrupt glyphs 2002-10-23 08:22 henry * [r426] test, test/demo.cpp, test/mmgr.cpp, test/mmgr.h, test/nommgr.h: Added test app 2002-10-23 08:19 henry * [r425] HISTORY.txt, README.txt, TODO.txt: Release 1.4 2002-10-23 08:07 henry * [r424] mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj: Updated for 1.4 2002-10-23 07:04 henry * [r423] src/FTGLPixmapFont.cpp, src/FTPixmapGlyph.cpp: Minor formatting and moved Push Attribs to the font 2002-10-23 07:04 henry * [r422] src/FTBitmapGlyph.cpp: Minor formatting 2002-08-28 09:46 henry * [r421] include/FTGLTextureFont.h, src/FTGLTextureFont.cpp: Reduced texture ID array size 2002-08-28 09:45 henry * [r420] HISTORY.txt: Added release date 2002-08-27 07:45 henry * [r419] HISTORY.txt, README.txt, TODO.txt: Updated for 1.4 2002-08-27 07:45 henry * [r418] docs/html.tar.gz: Updated dox 2002-08-27 07:13 henry * [r417] include/FTCharToGlyphIndexMap.h: Inlined the whole class 2002-08-27 07:12 henry * [r416] include/FTCharmap.h, include/FTExtrdGlyph.h, include/FTFace.h, include/FTFont.h, include/FTGLTextureFont.h, include/FTGlyphContainer.h, include/FTSize.h, include/FTVectoriser.h: Updated dox comments 2002-08-26 10:18 henry * [r415] include/FTVector.h: Updated to VTK latest 2002-08-26 10:17 henry * [r414] src/FTGlyphContainer.cpp, src/FTPixmapGlyph.cpp: Removed mmgr 2002-08-26 09:01 henry * [r413] include/FTBitmapGlyph.h: Made some ints unsigned 2002-08-26 08:57 henry * [r412] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp: Removed std::vector 2002-08-26 08:53 henry * [r411] src/FTPixmapGlyph.cpp: Added some braces 2002-08-26 08:51 henry * [r410] include/FTVectoriser.h: Updated comments 2002-08-26 08:49 henry * [r409] src/FTBitmapGlyph.cpp: Made some ints unsigned 2002-07-04 01:03 henry * [r408] include/FTFont.h: Added a comment about impicit conversions 2002-07-01 09:48 henry * [r407] src/FTTesselationVector.h: FTVector is now a template 2002-07-01 09:47 henry * [r406] src/FTContourVector.h, src/FTGlyphVector.h, src/FTPointVector.h: FTvector is now a template 2002-07-01 09:44 henry * [r405] include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h: Inlined private functions 2002-06-22 23:35 henry * [r404] include/FTVector.h, include/FTVectoriser.h: Made FTVector a template 2002-06-22 23:34 henry * [r403] include/FTFace.h, src/FTFace.cpp: Made charmap() const 2002-06-22 23:33 henry * [r402] include/FTFont.h, include/FTSize.h, src/FTFont.cpp, src/FTSize.cpp: Added accessors for point size 2002-06-21 08:32 henry * [r401] HISTORY.txt, README.txt, TODO.txt, mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj: Merged 1.32 into main branch 2002-06-21 08:30 henry * [r400] win32_vcpp/ftgl.dsw, win32_vcpp/ftgl_demo, win32_vcpp/ftgl_demo/demo.cpp, win32_vcpp/ftgl_demo/ftgl_demo.dsp, win32_vcpp/ftgl_demo/ftgl_demo_2.dsp, win32_vcpp/ftgl_dll, win32_vcpp/ftgl_dll/ftgl_dll.dsp, win32_vcpp/ftgl_static_lib, win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp: New VC porj 2002-06-21 08:30 henry * [r399] win32_vcpp, win32_vcpp/README_WIN32.txt: New VC proj 2002-06-21 08:29 henry * [r398] demo/README.txt, mac/README.txt: Merged 1.32 into 1.4 2002-06-21 08:23 henry * [r397] include/FTVectoriser.h: removed stl vector 2002-06-21 08:22 henry * [r396] demo/FTGLDemo.cpp: Added hash define for windows fonts 2002-06-21 08:22 henry * [r395] src/FTFace.cpp: Getting rid of magic numbers 2002-06-21 08:21 henry * [r394] include/FTCharToGlyphIndexMap.h, include/FTVector.h, src/FTContourVector.h, src/FTGlyphVector.h, src/FTPointVector.h, src/FTTesselationVector.h: Replacements for stl containers 2002-06-21 08:20 henry * [r393] include/FTCharmap.h, src/FTCharmap.cpp: Remove replaced with FTCharToGlyphIndexMap 2002-06-20 08:40 henry * [r392] license.txt: Added 2002 2002-06-20 08:22 henry * [r391] include/FTBitmapGlyph.h, include/FTCharmap.h, include/FTExtrdGlyph.h, include/FTFace.h, include/FTFont.h, include/FTGL.h, include/FTGLBitmapFont.h, include/FTGLExtrdFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, include/FTGlyph.h, include/FTGlyphContainer.h, include/FTLibrary.h, include/FTOutlineGlyph.h, include/FTPixmapGlyph.h, include/FTPolyGlyph.h, include/FTSize.h, include/FTTextureGlyph.h, include/FTVectoriser.h, src/FTBitmapGlyph.cpp, src/FTCharmap.cpp, src/FTExtrdGlyph.cpp, src/FTFace.cpp, src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp, src/FTGlyph.cpp, src/FTGlyphContainer.cpp, src/FTLibrary.cpp, src/FTOutlineGlyph.cpp, src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp, src/FTSize.cpp, src/FTTextureGlyph.cpp, src/FTVectoriser.cpp: Changes for VTK Removed tabs Removed mmgr Optimisations for loading pixel based fonts Minor changes 2002-06-12 08:56 henry * [r390] include/FTFace.h, include/FTFont.h, include/FTGL.h, src/FTFace.cpp, src/FTFont.cpp: Merged FTGL_1_3_2 2002-06-12 08:18 henry * [r389] src/FTGLTextureFont.cpp: Reformatted and merged with 1.32 2002-02-16 06:19 henry * [r369] mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj: Changed FTGLDemo to .cpp 2002-02-16 06:19 henry * [r368] src/FTGLBitmapFont.cpp: Removed FT_DoneGlyph and fix state stuff 2002-02-16 06:18 henry * [r367] src/FTGLPixmapFont.cpp, src/FTGLTextureFont.cpp: removed FT_Done_Glyph 2002-02-16 06:17 henry * [r366] README.txt: Added Ellers and Marcelo to contributors 2002-02-16 06:17 henry * [r365] src/FTPixmapGlyph.cpp: hardly worth mentioning 2002-02-16 06:15 henry * [r364] include/FTGlyph.h: Changed formatting 2002-02-16 06:14 henry * [r363] TODO.txt: Added glGet -> display list problem 2002-02-16 05:42 henry * [r362] demo/tb.h, demo/trackball.h: Added EXTERN "C" 2002-02-16 05:12 henry * [r360] demo/FTGLDemo.c, demo/FTGLDemo.cpp: Renamed from *.c to *.cpp 2002-02-16 00:04 henry * [r359] src/FTFont.cpp: Put glyphcontainer back in 2002-02-09 23:56 henry * [r358] docs/FTGL.html: Added an faq about missing freetype includes 2002-02-06 02:41 henry * [r357] src/FTGLPixmapFont.cpp: nothing 2002-02-06 02:40 henry * [r356] include/FTFont.h, src/FTFont.cpp: inlined the ascender and descender functions 2002-02-05 09:50 henry * [r355] docs/FTGL.html: a bit more 2002-02-02 01:48 henry * [r354] include/FTTextureGlyph.h, src/FTTextureGlyph.cpp: Removed redundant data and numGreys fields and changed render function slightly 2002-02-02 00:16 henry * [r353] src/FTBitmapGlyph.cpp, src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp, src/FTTextureGlyph.cpp: Removed FT_DoneGlyph and clean up delete [] 2002-02-02 00:15 henry * [r352] src/FTGLBitmapFont.cpp, src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp: Moved FT_Done_Glyph from FT*Glyph 2002-01-28 06:56 henry * [r346] docs/FTGL.html: Added note in font manager sample code about the inline static problem. 2002-01-28 06:24 henry * [r345] demo/FTGLDemo.c: Added comment about font path 2002-01-26 21:58 henry * [r342] README.txt, TODO.txt: Updated foe 1.3b5 2002-01-26 21:58 henry * [r341] HISTORY.txt: Updated for 1.3b5 2002-01-25 22:48 henry * [r340] include/FTFont.h: More comments 2002-01-25 22:34 henry * [r339] include/FTGLTextureFont.h: Updated comments 2002-01-25 22:34 henry * [r338] include/FTExtrdGlyph.h, src/FTExtrdGlyph.cpp: Removed some redundant members and made then local 2002-01-24 09:43 henry * [r337] src/FTExtrdGlyph.cpp: Removed the winding code. Reverted back to broken outline.flag. Glyph winding still broken!!! 2002-01-24 09:42 henry * [r336] include/FTVectoriser.h, src/FTVectoriser.cpp: Fixed compiler warnings (size_t) 2002-01-24 09:41 henry * [r335] src/FTPolyGlyph.cpp: Removed complier warnings 2002-01-24 09:40 henry * [r334] demo/FTGLDemo.c, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp: Set the correct state for font type 2002-01-12 00:38 henry * [r333] docs/FTGL.html: More work on docs 2002-01-10 07:14 henry * [r332] demo/FTGLDemo.c: Bbox now uses float 2002-01-09 20:54 henry * [r331] HISTORY.txt: Updated Jan 2002 2002-01-09 20:54 henry * [r330] src/FTBitmapGlyph.cpp, src/FTPixmapGlyph.cpp, src/FTTextureGlyph.cpp: Added a check for zero dimension bitmaps 2002-01-09 20:35 henry * [r329] include/FTFont.h, include/FTGlyph.h, src/FTFont.cpp: FTBbox now uses floats rather then ints 2002-01-09 20:34 henry * [r328] include/FTCharmap.h: Fixed up a comment 2002-01-09 20:34 henry * [r327] src/FTExtrdGlyph.cpp: Minor tidy up 2002-01-09 20:33 henry * [r326] src/FTGlyphContainer.cpp: More const stuff Replaced the for loop with a resize to fill the vector with null 2002-01-09 20:32 henry * [r325] include/FTGlyphContainer.h: More const stuff 2001-12-14 02:52 henry * [r324] src/FTExtrdGlyph.cpp: Added math.h header 2001-12-11 23:11 henry * [r323] demo/README.txt: Added compilation note 2001-12-11 23:04 henry * [r322] demo/tb.c: fixed glut header for OSX 2001-12-11 22:52 henry * [r320] README.txt, TODO.txt: 1.3b4 2001-12-11 22:46 henry * [r319] demo/README.txt: initial import 2001-12-11 03:56 henry * [r318] include/FTFont.h, src/FTFont.cpp: rejigged the advance and render functions to make them sleaner...not really 2001-12-11 03:55 henry * [r317] include/FTExtrdGlyph.h, include/FTOutlineGlyph.h, include/FTPolyGlyph.h, include/FTVectoriser.h, src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp, src/FTVectoriser.cpp: Replaced double with FTGL_DOUBLE typedef 2001-12-11 03:54 henry * [r316] HISTORY.txt: 1.3b4 2001-12-11 03:53 henry * [r315] src/FTCharmap.cpp, src/FTGLTextureFont.cpp: Tidied up includes 2001-12-11 03:42 henry * [r314] TODO.txt: Fixed FTExtrdGlyph bug OSX proj 2001-12-11 03:42 henry * [r313] demo/FTGLDemo.c: Tidy ups for release 1.3 2001-12-11 01:31 henry * [r312] mac/FTGL.pbproj, mac/FTGL.pbproj/henry.pbxuser, mac/FTGL.pbproj/project.pbxproj: initial import 2001-12-11 01:26 henry * [r311] mac/README.txt: Added a note about the linker problem when building freetype 2001-12-10 23:35 henry * [r310] demo/FTGLDemo.c: Added edit mode, labels and a bunch more 2001-12-10 21:53 henry * [r309] include/FTBitmapGlyph.h, include/FTCharmap.h, include/FTGlyph.h, include/FTGlyphContainer.h, include/FTPixmapGlyph.h, include/FTSize.h, include/FTTextureGlyph.h: Tidied up includes 2001-12-10 21:52 henry * [r308] include/FTLibrary.h: Clarified comment about init() 2001-12-10 21:35 henry * [r307] README.txt: Added site link about texture caching 2001-12-10 21:30 henry * [r306] src/FTBitmapGlyph.cpp, src/FTFace.cpp, src/FTGLBitmapFont.cpp, src/FTGLExtrdFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGlyph.cpp, src/FTGlyphContainer.cpp, src/FTLibrary.cpp, src/FTPixmapGlyph.cpp, src/FTSize.cpp, src/FTTextureGlyph.cpp: Added include for mmgr 2001-11-29 05:10 henry * [r305] include/FTExtrdGlyph.h, src/FTExtrdGlyph.cpp: Added Winding fuction to colc area for a full contour rather than part of one 2001-11-29 01:13 henry * [r304] include/FTGL.h: Added #define and a couple of typedefs for debugging 2001-11-29 01:12 henry * [r303] src/FTGLTextureFont.cpp: Added an include for mmgr 2001-11-29 01:12 henry * [r302] src/FTCharmap.cpp: Added include for mmgr 2001-11-28 23:04 henry * [r301] src/FTExtrdGlyph.cpp: Added a work around for a bug in freetype. Calcs the winding direction of the contour 2001-11-28 03:16 henry * [r300] TODO.txt: Added FTExtrdGlyph bug 2001-11-27 04:52 henry * [r299] include/FTVectoriser.h: Added a comment 2001-11-25 20:40 henry * [r298] src/FTExtrdGlyph.cpp, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp: Fixed the space bug AGAIN. 2001-11-15 05:19 henry * [r297] TODO.txt: Added a couple of bugs 2001-11-15 05:16 henry * [r296] docs/FTGL.html: Added a couple of web links 2001-11-15 05:14 henry * [r295] docs/FTGL.html: Added email discussion about sizes 2001-11-14 03:23 henry * [r294] demo/FTGLDemo.c: Enabled lighting for texture font 2001-11-13 20:10 henry * [r293] demo/FTGLDemo.c: Can now switch between font types. 2001-11-13 20:09 henry * [r292] docs/FTGL.html: Minor fixes, unix line endings 2001-11-13 05:45 henry * [r290] src/FTGLTextureFont.cpp: Fixed up the xOffset ( +padding) 2001-11-13 05:45 henry * [r289] include/FTFont.h: Added an empty virtual depth function 2001-11-13 01:53 henry * [r288] HISTORY.txt, README.txt, TODO.txt: Updated fro v1.3b3 2001-11-13 01:35 henry * [r287] demo/FTGLDemo.c: Added some comments 2001-11-12 23:38 henry * [r286] FTGL.jpg: turned into a gif and moved into the docs dir 2001-11-12 23:36 henry * [r285] mac/README.txt: updated for v1.3 2001-11-12 23:34 henry * [r284] mac/ftlib.prj: Updated for new texture font code and Extruded fonts 2001-11-12 22:28 henry * [r283] include/FTGLTextureFont.h, include/FTTextureGlyph.h, src/FTGLTextureFont.cpp, src/FTTextureGlyph.cpp: Refactored texture fonts to ba able to load glyphs on the fly...uses glTexSubImage2D. They are now more in line with the rest of the fonts. 2001-11-12 22:26 henry * [r282] src/FTFont.cpp: fix me 2001-11-12 04:14 henry * [r281] include/FTFont.h: Made MakeGlyphList() virtual again 2001-11-12 02:45 henry * [r280] src/FTPolyGlyph.cpp: Set the bounding box 2001-11-12 02:44 henry * [r279] src/FTTextureGlyph.cpp: Set the bounding box Tidied up some code 2001-11-12 02:44 henry * [r278] src/FTVectoriser.cpp: gluTesselation now feeds data to internal FTMesh class 2001-11-12 02:43 henry * [r277] include/FTVectoriser.h: changed ftPoint to use doubles and inlined a lot of stuff 2001-11-12 02:42 henry * [r276] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp: Added bounding box function 2001-11-12 02:41 henry * [r275] include/FTGlyph.h: Added FTBbox 2001-11-12 02:41 henry * [r274] include/FTOutlineGlyph.h, include/FTPolyGlyph.h: Changed type of glList 2001-11-12 02:40 henry * [r273] src/FTOutlineGlyph.cpp: Set the bounding box and re-order some operations 2001-11-12 02:39 henry * [r272] src/FTBitmapGlyph.cpp, src/FTPixmapGlyph.cpp: Set the bounding box 2001-11-12 02:38 henry * [r271] demo/FTGLDemo.c: Changed blend func 2001-11-12 02:34 henry * [r270] include/FTGL.h: Minor comments 2001-11-12 02:34 henry * [r269] src/FTFont.cpp: Added bounding box functions 2001-11-12 02:33 henry * [r268] include/FTFont.h: Added bounding box function un-virtualised some functions fixed comments 2001-11-12 00:00 henry * [r267] include/FTExtrdGlyph.h, include/FTGLExtrdFont.h, src/FTExtrdGlyph.cpp, src/FTGLExtrdFont.cpp: Extrusion code merged from 1.3beta2 2001-11-11 23:59 henry * [r266] demo, demo/FTGLDemo.c, demo/tb.c, demo/tb.h, demo/trackball.c, demo/trackball.h: Initial import of demo 2001-11-11 23:58 henry * [r265] docs/FTGL_1_3.gif, docs/images, docs/images/ftgldemo.jpg, docs/images/metrics.png: Initial import 2001-11-11 23:57 henry * [r264] docs/FTGL.html, docs/FTGL.txt: Changed to html from txt 2001-11-11 23:26 henry * [r263] cleanup: unix line endings.... 2001-11-08 21:05 henry * [r238] cleanup, docs/ftgl_dox: Unix line endings 2001-11-08 20:50 henry * [r237] HISTORY.txt, README.txt, TODO.txt: Updated for 1.21 2001-11-08 20:36 henry * [r236] src/FTBitmapGlyph.cpp, src/FTVectoriser.cpp: Minor fixes for windows warnings 2001-11-05 22:32 henry * [r222] include/FTPolyGlyph.h, include/FTVectoriser.h, src/FTPolyGlyph.cpp, src/FTVectoriser.cpp: Refactoring FTVectoriser & FTPolyGlyph to anable access to tessellation data 2001-11-05 22:02 henry * [r219] HISTORY.txt, README.txt, TODO.txt, docs/html.tar.gz: Updated for 1.2 2001-11-05 21:01 henry * [r218] README.txt: Removed the stuff about restricted sets of glyphs. It happens for free now:) 2001-11-05 21:00 henry * [r217] src/FTGLTextureFont.cpp: Fixed a bug that was overunning the glyph list 2001-11-05 20:59 henry * [r216] include/FTGLTextureFont.h: made MakeGlyphList virtual 2001-11-05 20:59 henry * [r215] src/FTGlyphContainer.cpp: Added a test for null pointers in the d_stor 2001-11-05 20:58 henry * [r214] TODO.txt: Added note about gluTessNormal 2001-11-05 20:58 henry * [r213] docs/FTGL.txt: More words of wisdom 2001-11-04 04:55 henry * [r212] include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, include/FTGlyphContainer.h, src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGlyphContainer.cpp: Unix line endings 2001-11-04 04:53 henry * [r211] include/FTGL.h: unix line endings 2001-11-04 04:33 henry * [r210] include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, include/FTGlyphContainer.h, src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp, src/FTGlyphContainer.cpp: Changes to allow glyphs to be loaded on the fly... MakeGlyphList is no longer pure virtual. New function MakeGlyph is pure virtual Open now has a flag for pre-cache GlyphContainer builds a list of null pointers advance and render functions check if glyph has been loaded and loads it if it has'nt 2001-11-02 01:18 henry * [r209] TODO.txt: Added note about padding 2001-11-02 01:17 henry * [r208] HISTORY.txt: Added 1.1 tag 2001-11-02 01:17 henry * [r207] include/FTGL.h: Got rid of non standard glext.h and replaced with defines 2001-11-01 20:07 henry * [r206] src/FTSize.cpp: Added brackets to clear Win32 warning 2001-11-01 20:05 henry * [r205] src/FTGLTextureFont.cpp: Added padding to size calculations 2001-10-31 02:00 henry * [r203] docs/html.tar.gz: Initial import. Archived to fix filename problem 2001-10-31 00:05 henry * [r202] HISTORY.txt, README.txt, TODO.txt: Updated for 1.1 2001-10-30 23:54 henry * [r201] mac/ftlib.prj: renamed the source files to .cpp 2001-10-30 23:23 henry * [r200] include/FTVectoriser.h, src/FTOutlineGlyph.cpp, src/FTPolyGlyph.cpp, src/FTVectoriser.cpp: Renamed functions in prep for extruded glyphs Ingest->Process Output->MakeOutline 2001-10-30 21:35 henry * [r199] docs/FTGL.txt: stuff 2001-10-30 21:30 henry * [r198] mac/README.txt: Fixed typos 2001-10-30 05:19 henry * [r197] docs/README.txt: Docs fixed so don't need this 2001-10-30 05:18 henry * [r196] docs/FTGL.txt: Initial import 2001-10-30 02:51 henry * [r195] src/FTCharmap.cpp: Fixed c_stor to ensure that a valid charmap is created 2001-10-29 20:09 henry * [r194] include/FTFont.h, include/FTGLTextureFont.h, include/FTGlyphContainer.h, include/FTTextureGlyph.h, src/FTGLTextureFont.cpp, src/FTGlyphContainer.cpp, src/FTTextureGlyph.cpp: Minor changes to fix some implicit type conversions 2001-10-28 04:23 henry * [r193] cleanup, docs/ftgl_dox: Initial import 2001-10-28 04:06 henry * [r192] src/FTGLTextureFont.cpp: Got rid of the static in FTTextureGlyph and tidied the code up 2001-10-28 04:06 henry * [r191] src/FTGLBitmapFont.cpp: Removed a couple of comments 2001-10-28 04:05 henry * [r190] include/FTTextureGlyph.h, src/FTTextureGlyph.cpp: Got rid of the static and moved the glBegin/glEnd pairs 2001-10-28 04:04 henry * [r189] include/FTGL.h: Added test for GL_TEXTURE_2D_BINDING_EXT and include for glext.h 2001-10-28 04:04 henry * [r188] mac/README.txt: Added note about STL 2001-10-26 02:42 henry * [r187] docs, docs/README.txt: Initial import 2001-10-25 23:11 henry * [r186] COPYING.txt, FTGL.jpg, license.txt, mac, mac/README.txt, mac/ftlib.prj: Initial import 2001-10-25 21:39 henry * [r184] HISTORY.txt, README.txt, TODO.txt: Updated for 1.01 2001-10-25 20:54 henry * [r183] src/FTGLTextureFont.cpp: Removed the glEnable( GL_TEXTURE_2D) call 2001-10-25 20:53 henry * [r182] include/FTTextureGlyph.h: Added a note about replacing activeTextureID 2001-10-25 04:33 henry * [r181] src/FTPolyGlyph.cpp: Removed the glu header 2001-10-25 04:32 henry * [r180] include/FTGL.h: Added the glu headers 2001-10-25 04:03 henry * [r179] src/FTCharmap.cpp, src/FTFace.cpp, src/FTGLTextureFont.cpp, src/FTSize.cpp, src/FTVectoriser.cpp: Re-ordered initialisation lists to keep project builder happy (MAC OSX) 2001-10-25 04:01 henry * [r178] include/FTFont.h: Made numGlyphs unsigned 2001-10-25 03:57 henry * [r177] include/FTGlyphContainer.h: Made the destructor virtual 2001-10-25 02:14 henry * [r176] include/FTGL.h: Changed include to allow for bloody Apple's new OpenGL on OSX 2001-10-25 02:01 henry * [r175] include/FTGLBitmapFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp: Removed redundant tempGlyph members 2001-10-24 21:21 henry * [r174] include/FTGlyphContainer.h, include/FTVectoriser.h: Fixing up the comments 2001-10-24 03:31 henry * [r172] HISTORY.txt, TODO.txt: Version 1.0 release 2001-10-24 03:31 henry * [r171] README.txt: Version 1.0 release Added note about glyphs 2001-10-23 03:05 henry * [r170] src/FTGLTextureFont.cpp: Enable texturing 2001-10-14 21:53 henry * [r169] include/FTVectoriser.h: Updated comments and removed redundant member vars 2001-10-14 21:52 henry * [r168] include/FTBitmapGlyph.h, include/FTCharmap.h, include/FTFace.h, include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, include/FTGlyph.h, include/FTGlyphContainer.h, include/FTLibrary.h, include/FTOutlineGlyph.h, include/FTPixmapGlyph.h, include/FTPolyGlyph.h, include/FTTextureGlyph.h: Updated comments 2001-10-10 22:03 henry * [r167] src/FTBitmapGlyph.cpp, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLTextureFont.cpp, src/FTLibrary.cpp, src/FTOutlineGlyph.cpp, src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp, src/FTTextureGlyph.cpp: Minor changes, mainly to includes, for the windows port 2001-10-10 22:01 henry * [r166] include/FTGL.h: Added the conditional compilation stuff for Windows DLL 2001-10-10 22:00 henry * [r165] include/FTCharmap.h: Added FTGL_EXPORT to class declaration for the windows port 2001-10-10 21:59 henry * [r164] include/FTBitmapGlyph.h, include/FTFace.h, include/FTFont.h, include/FTGLBitmapFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, include/FTGlyph.h, include/FTGlyphContainer.h, include/FTLibrary.h, include/FTOutlineGlyph.h, include/FTPixmapGlyph.h, include/FTPolyGlyph.h, include/FTSize.h, include/FTTextureGlyph.h: Added FTGL_EXPORT to class declarations for the windows port 2001-10-10 21:53 henry * [r163] include/FTVectoriser.h: Added FTGL_EXPORT for windows 2001-09-30 23:03 henry * [r162] src/FTVectorGlyph.cpp, src/FTVectorGlyph.h: Changed these to FTOutlineGlyph. Removed these files 2001-09-30 23:01 henry * [r160] include/FTOutlineGlyph.h, src/FTOutlineGlyph.cpp: These used to be FTVectorGlyph. Changed the name. 2001-09-30 23:00 henry * [r159] include/FTGL.h: Removed the redundant enums 2001-09-30 23:00 henry * [r158] src/FTFace.cpp: Clean up the FTCharmap 2001-09-30 22:59 henry * [r157] include/FTGLOutlineFont.h, src/FTGLOutlineFont.cpp: Changed FTVectorGlyph to FTOutlineGlyph 2001-09-30 22:57 henry * [r156] src/FTGLTextureFont.cpp: Changed std::memset to memset. Added using namespace std. This is for windows 2001-09-30 22:56 henry * [r155] src/FTPolyGlyph.cpp: Added CALLBACK to the gluTess callback function definitions. This for windows. 2001-09-30 22:53 henry * [r154] HISTORY.txt, README.txt, TODO.txt: Beta 7 Split ReadMe into README, HISTORY and TODO files 2001-09-27 01:41 henry * [r153] src/FTPolyGlyph.cpp: Added tessellation winding rules 2001-09-27 01:40 henry * [r152] src/FTVectoriser.cpp: Added a test for an empty point list when adding points to a contour. 2001-09-20 00:26 henry * [r150] README.txt: Beta 6 release 2001-09-20 00:22 henry * [r149] include/FTFont.h, src/FTFont.cpp: Removed redundant code. Added comments for Advancs() 2001-09-19 05:00 henry * [r148] README.txt: Implemented advance width function for strings 2001-09-19 04:54 henry * [r147] include/FTFont.h, include/FTGlyphContainer.h, src/FTFont.cpp, src/FTGlyphContainer.cpp: Added functions to calc the advance width of a string 2001-09-19 04:54 henry * [r146] src/FTTextureGlyph.cpp: Minor changes 2001-09-19 01:50 henry * [r145] include/FTGlyph.h: Added accessor function for advance width 2001-09-17 22:53 henry * [r144] include/FTCharmap.h, src/FTCharmap.cpp: Set the default encoding 2001-09-17 21:02 henry * [r143] README.txt: Implemented and profiled new FTCharmap class 2001-09-17 21:00 henry * [r142] src/FTSize.cpp: Minor change to CharSize func 2001-09-17 21:00 henry * [r141] include/FTGlyph.h, src/FTGlyph.cpp: Comment changes 2001-09-17 20:59 henry * [r140] include/FTFace.h, src/FTFace.cpp: Implemented FTCharmap class 2001-09-17 20:58 henry * [r139] include/FTCharmap.h, src/FTCharmap.cpp: Initial revision 2001-09-16 21:54 henry * [r138] README.txt: Updated for BETA 6 2001-09-16 21:52 henry * [r137] include/FTGLBitmapFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp: Updated for changes in *Glyph classes. Added unicode render function. Updated comments 2001-09-16 21:50 henry * [r136] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp: Added error code (err) to initialisation list 2001-09-16 21:49 henry * [r135] include/FTBitmapGlyph.h, include/FTPixmapGlyph.h, include/FTPolyGlyph.h, include/FTTextureGlyph.h, src/FTBitmapGlyph.cpp, src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp, src/FTTextureGlyph.cpp, src/FTVectorGlyph.cpp, src/FTVectorGlyph.h: Removed glyph index parameter from c_stor (see FTGlyph) and updated comments 2001-09-16 21:31 henry * [r134] include/FTVectoriser.h, src/FTVectoriser.cpp: Minor tidy ups 2001-09-16 21:30 henry * [r133] include/FTSize.h, src/FTSize.cpp: Updated comments. Added err and ftface to initialosation list 2001-09-16 21:29 henry * [r132] src/FTFace.cpp, src/FTLibrary.cpp: Added error code (err) to initialisation list 2001-09-16 21:28 henry * [r131] include/FTFont.h, src/FTFont.cpp: Updated comments and added a unicode render function 2001-09-16 21:27 henry * [r130] include/FTGlyph.h, src/FTGlyph.cpp: removed the glyphIndex member 2001-09-14 01:13 henry * [r129] README.txt: Updated for changes made while in the UK 2001-09-14 01:11 henry * [r128] src/FTGLTextureFont.cpp: Added FIXME comment for max number of textures 2001-09-14 00:42 henry * [r127] src/FTPolyGlyph.cpp, src/FTVectorGlyph.cpp: The freetype glyph is now disposed of correctly after initialsation 2001-09-14 00:40 henry * [r126] src/FTFace.cpp: Changed the order in which things are cleaned up when this object is destroyed. 2001-09-14 00:39 henry * [r125] src/FTFont.cpp: No longer call face.close(). FTFace is responsible for closing the face. 2001-09-14 00:38 henry * [r124] include/FTFont.h: Added more comments 2001-09-14 00:37 henry * [r123] src/FTGlyph.cpp: Removed FT_Done_Glyph from the d_tor. Glyph disposal is done immediately after the glyph is processed. 2001-08-29 04:33 henry * [r121] README.txt: Updated for beta 5 2001-08-29 01:07 henry * [r120] src/FTPolyGlyph.cpp, src/FTVectorGlyph.cpp: Removed the redundant pos.x in Render() 2001-08-28 23:04 henry * [r119] include/FTFace.h, src/FTFace.cpp: Moved the list of valid encoding symbols from the .cc to .h so it appears in the docs. 2001-08-28 22:53 henry * [r118] src/FTPolyGlyph.cpp, src/FTVectorGlyph.cpp, src/FTVectoriser.cpp: Fixed a bug in FTVectoriser::Ingest() that caused non printing glyphs ( eg spaces) to be ignored 2001-08-28 05:09 henry * [r117] README.txt: Updated for beta 5 2001-08-28 05:09 henry * [r116] src/FTBitmapGlyph.cpp, src/FTPixmapGlyph.cpp, src/FTTextureGlyph.cpp: Fixed the test for an invalid glyph format 2001-08-28 05:09 henry * [r115] src/FTPolyGlyph.cpp: reversed the test for glyph format = outline 2001-08-28 05:07 henry * [r114] src/FTVectorGlyph.cpp: Reversed the test for glyph format == oultline 2001-08-28 01:47 henry * [r113] src/FTVectoriser.cpp: Removed redundant static_cast() 2001-08-28 01:12 henry * [r112] include/FTFont.h, include/FTSize.h: Fixed comments 2001-08-27 23:01 henry * [r111] include/FTFont.h: Updated comments 2001-08-27 22:03 henry * [r110] src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp: If we get a NULL FT_Glyph we now report an error. 2001-08-27 21:40 henry * [r109] src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp: Added a check for a NULL glyph 2001-08-27 21:32 henry * [r108] include/FTFace.h, src/FTFace.cpp, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp: Changed the return type of FTFace::Glyph() from a reference to a pointer so I can return NULL on failure. 2001-08-27 21:29 henry * [r107] include/FTBitmapGlyph.h, include/FTGlyph.h, include/FTPixmapGlyph.h, include/FTTextureGlyph.h: Minor change. Changed arg name in Render() 2001-08-27 03:33 henry * [r106] README.txt: Updated for beta 5 2001-08-27 03:16 henry * [r105] include/FTGlyphContainer.h: Started to add comments 2001-08-27 03:15 henry * [r104] src/FTGlyph.cpp: Minor change to FIXME comment 2001-08-27 03:15 henry * [r103] include/FTGlyph.h, include/FTLibrary.h: Updated comments 2001-08-27 03:11 henry * [r102] src/FTPixmapGlyph.cpp: Static cast float to unsigned char in bitmap code 2001-08-27 03:10 henry * [r101] src/FTPolyGlyph.cpp: update to reflect change in contourFlag in FTVectoriser 2001-08-27 00:57 henry * [r100] include/FTVectoriser.h, src/FTVectoriser.cpp: Changed the args for FTContour::AddPoint() to float to get rid of warning. Also make more sense. 2001-08-26 22:53 henry * [r99] src/FTFace.cpp: Fixed a bug in the kerning code. Dims are in 1/64 pixels. 2001-08-26 22:30 henry * [r98] src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp: Removed the numGlyphs hack 2001-08-26 22:28 henry * [r97] include/FTVectoriser.h: Made contourFlag private and added accessor function 2001-08-24 02:18 henry * [r96] include/FTFace.h, include/FTFont.h, include/FTGlyph.h, include/FTLibrary.h, include/FTSize.h: Added JavaDoc comments 2001-08-24 02:17 henry * [r95] src/FTLibrary.cpp: Minor format change 2001-08-24 02:17 henry * [r94] src/FTFace.cpp: Added error checking in charSize(). Inserted some code comments to remind me how to set the encoding properly 2001-08-24 02:16 henry * [r93] src/FTBitmapGlyph.cpp, src/FTGlyphContainer.cpp, src/FTPixmapGlyph.cpp: Minor changes to comments 2001-08-24 02:06 henry * [r92] include/FTVectoriser.h, src/FTVectoriser.cpp: Made some magic numbers into constants 2001-08-22 22:58 henry * [r91] src/FTPolyGlyph.cpp, src/FTTextureGlyph.cpp, src/FTVectorGlyph.cpp: Fixed the positional stuff in render(). Added leftside bearing offset. 2001-08-22 03:40 henry * [r90] README.txt: Added profiling notes, updated todos. 2001-08-22 03:40 henry * [r89] include/FTSize.h, src/FTSize.cpp: Changed the return types for the size function to int 2001-08-21 03:33 henry * [r88] src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp: Glyphs are know retrieved from the FTFace object rather than with direct freetype calls. 2001-08-21 03:20 henry * [r87] src/FTFace.cpp: return type for CharIndex() made unsigned int 2001-08-20 22:51 henry * [r86] include/FTBitmapGlyph.h, include/FTFace.h, include/FTFont.h, include/FTGLTextureFont.h, include/FTGlyph.h, include/FTGlyphContainer.h, include/FTPixmapGlyph.h, include/FTPolyGlyph.h, include/FTSize.h, include/FTTextureGlyph.h, src/FTBitmapGlyph.cpp, src/FTFace.cpp, src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp, src/FTGlyph.cpp, src/FTGlyphContainer.cpp, src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp, src/FTSize.cpp, src/FTTextureGlyph.cpp, src/FTVectorGlyph.cpp, src/FTVectorGlyph.h: Started being more strict with types eg integer indices and sizes are now unsigned. 2001-08-20 22:36 henry * [r85] include/FTFace.h, src/FTFace.cpp: Added Glyph function 2001-08-20 21:44 henry * [r84] include/FTLibrary.h, src/FTGLTextureFont.cpp: Gerards fixes to compile under Linux 2001-08-19 22:49 henry * [r83] README.txt: Updated for beta 4 2001-08-19 22:43 henry * [r82] include/FTGLTextureFont.h, include/FTTextureGlyph.h, src/FTGLTextureFont.cpp, src/FTTextureGlyph.cpp: Major change to enable multiple textures. If all the glyphs for a given face and size don't fit within the max texture size we now create as many textures as required and switch automatically when rendering. 2001-08-19 22:40 henry * [r81] include/FTSize.h, src/FTSize.cpp: Changed the size stuff to use floats rather than ints. Global height and width is now calculated using the bbox 2001-08-19 22:34 henry * [r80] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp: This now uses FTFace function rather than calling freetype directly...better encapsulation and may allow future caching. 2001-08-19 22:32 henry * [r79] include/FTFont.h, src/FTFont.cpp: Updated to reflect changes in FTFace & FTGlyphContainer 2001-08-19 22:31 henry * [r78] include/FTFace.h, src/FTFace.cpp: Implemented charmap, CharIndex and kernAdvance functions. These are now wrappers for the freetype functions and the rest of FTGL should not call freetype directly. 2001-08-19 22:20 henry * [r77] include/FTVectoriser.h: removed the unused loop struct. 2001-08-16 06:15 henry * [r76] src/FTGLPolygonFont.cpp: Changed the mode in FT_Load_Glyph() 2001-08-16 06:14 henry * [r75] src/FTGLOutlineFont.cpp: Changed the mode in FT_load_Glyph() Changed the blend function in render() 2001-08-12 22:05 henry * [r74] README.txt: Added TODO about sizes 2001-08-09 02:49 henry * [r73] src/FTPolyGlyph.cpp: Found memory leak in glCombine 2001-08-09 02:30 henry * [r72] README.txt: Result of memory testing, found a leak in FTPolyGlyph 2001-08-08 01:33 henry * [r70] README.txt: Updated for BETA 3 2001-08-08 01:33 henry * [r69] include/FTFont.h, src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGlyphContainer.cpp: Changes to the way charmaps are handled 2001-08-08 01:32 henry * [r68] src/FTPolyGlyph.cpp, src/FTVectorGlyph.cpp: render() does not draw'invalid' glyphs 2001-08-08 01:30 henry * [r67] include/FTGLTextureFont.h, src/FTGLTextureFont.cpp: Changes to the charmap handling and fixed TextureSize() 2001-08-07 21:32 henry * [r66] src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp: Tidied up the error stuff 2001-08-07 21:30 henry * [r65] src/FTGLTextureFont.cpp: Tidied up the error stuff and got rid of some redundant code. Added a note about glyph bounding boxes 2001-08-07 21:28 henry * [r64] src/FTGlyphContainer.cpp: Added a note about kerning modes 2001-08-07 21:28 henry * [r63] include/FTFont.h, src/FTFont.cpp: Minor tidy ups. Tidied up the error stuff 2001-08-07 21:26 henry * [r62] src/FTFace.cpp: Tidied up the err stuff 2001-08-07 21:25 henry * [r61] include/FTLibrary.h, src/FTLibrary.cpp: Added Error() stuff 2001-08-07 21:24 henry * [r60] src/FTPolyGlyph.cpp: Added comment about winding rules 2001-08-07 21:21 henry * [r59] include/FTSize.h, src/FTSize.cpp: Added Error(). Minor Tidy ups Added Underline()...doesn't work yet 2001-08-07 01:03 henry * [r58] include/FTGLOutlineFont.h, src/FTGLOutlineFont.cpp: Added a render function to set LINE_SMOOTH for anti aliased lines 2001-08-07 01:02 henry * [r57] include/FTGLPixmapFont.h, src/FTGLPixmapFont.cpp: Added a render function to set the alpha blend mode 2001-08-07 01:02 henry * [r56] src/FTPixmapGlyph.cpp: Now gets the current color and create the glyph pixmap based on that. 2001-08-07 01:00 henry * [r55] include/FTGLBitmapFont.h, src/FTGLBitmapFont.cpp: Added a render function to set the pixelStore stuff previously set by the bitmap glyph 2001-08-07 00:59 henry * [r54] src/FTBitmapGlyph.cpp: Moved the pixelStore stuff to BitmapFont 2001-08-06 21:01 henry * [r53] README.txt: Fixed char > 127 bug. Added TODO about Unicode. Added link to interesting website 2001-08-06 20:57 henry * [r52] src/FTFont.cpp: Changed char* to unsigend char* to fix bug when displaying chars >127 2001-08-06 05:46 henry * [r51] include/FTGLTextureFont.h: Changed types for IRIX 2001-08-06 05:43 henry * [r50] src/FTBitmapGlyph.cpp, src/FTGLTextureFont.cpp, src/FTPixmapGlyph.cpp, src/FTPolyGlyph.cpp, src/FTTextureGlyph.cpp, src/FTVectorGlyph.cpp: Added GL to openGL include paths 2001-08-06 04:29 henry * [r49] include/FTVectoriser.h: Added using namespace std 2001-08-05 22:35 henry * [r47] README.txt: Updated for BETA 2 2001-08-05 22:29 henry * [r46] README.txt: Added Description. Added TODOs. Comments about charSize problem. 2001-08-05 22:28 henry * [r45] include/FTVectoriser.h, src/FTVectoriser.cpp: const rampage:) added next2 to curve code 2001-08-05 22:22 henry * [r44] src/FTVectorGlyph.cpp, src/FTVectorGlyph.h: Made render() arg const. delete contourList 2001-08-05 22:21 henry * [r43] include/FTGLOutlineFont.h, src/FTGLOutlineFont.cpp: Minor tidy ups 2001-08-05 22:16 henry * [r42] include/FTPixmapGlyph.h, src/FTPixmapGlyph.cpp: Initialisation list. Made render() arg const. 2001-08-05 22:15 henry * [r41] include/FTPolyGlyph.h, src/FTPolyGlyph.cpp: Made render() arg const. Minor tidy ups 2001-08-05 21:46 henry * [r40] src/FTGLPolygonFont.cpp: Minor tidy ups 2001-08-05 21:44 henry * [r39] include/FTTextureGlyph.h, src/FTTextureGlyph.cpp: Made render() arg const. Initialisation list. 2001-08-05 21:43 henry * [r38] include/FTGLTextureFont.h, src/FTGLTextureFont.cpp: Made return type of render() void. Initialisation list. TextureSize() complete 2001-08-05 21:41 henry * [r37] include/FTGlyphContainer.h, src/FTGlyphContainer.cpp: Added FT_Error member. Minor tidy ups and fixed automatic variable warning in render() 2001-08-05 21:39 henry * [r36] include/FTGlyph.h, src/FTGlyph.cpp: Minor tidy ups and made render() arg const 2001-08-05 21:39 henry * [r35] include/FTFont.h, src/FTFont.cpp: Minor tidy ups and fixed a couple of compiler warnings 2001-08-05 21:37 henry * [r34] include/FTFace.h, src/FTFace.cpp: Added FT_Error member and accessor function. Minor tidy ups 2001-08-05 21:35 henry * [r33] include/FTBitmapGlyph.h, src/FTBitmapGlyph.cpp: Made render() arg const 2001-08-05 21:34 henry * [r32] include/FTGLBitmapFont.h, include/FTGLPixmapFont.h, include/FTLibrary.h, src/FTGLBitmapFont.cpp, src/FTGLPixmapFont.cpp, src/FTLibrary.cpp: Minor tidy ups 2001-08-02 23:41 henry * [r31] README.txt: Added some TODO stuff 2001-08-02 23:00 henry * [r29] README.txt: Polygon fonts now work. BETA release 1.0b1 2001-08-02 22:59 henry * [r28] include/FTGLPolygonFont.h, include/FTPolyGlyph.h, src/FTGLPolygonFont.cpp, src/FTPolyGlyph.cpp: Polygon fonts now work. 2001-08-02 21:52 henry * [r27] include/FTVectoriser.h, src/FTVectoriser.cpp: Made the ftPoint struct an external class and added some helper functions eg operator != Got rid of ftLoop, it's not needed now that I've tidied up the curve parsing code (which fixed the Vivaldi Q bug) Minor code tidy ups. 2001-08-02 21:49 henry * [r26] src/FTVectorGlyph.cpp, src/FTVectorGlyph.h: Changed the cord data from floats to doubles...trying to debug the glutess stuff in FTPolyGlyph!! 2001-08-02 21:47 henry * [r25] README.txt: Added a future section. Fixed the Vivaldi Q bug 2001-08-01 23:00 henry * [r24] README.txt: Updated for changes to FTVectorGlyph. 2001-08-01 22:58 henry * [r23] src/FTVectorGlyph.cpp, src/FTVectorGlyph.h: Removed the include and some debug code. Changed the render code to use glDisplayList. There was NO performance improvement but it will make it the same as FTPolyGlyph. Now uses glTranslate for the pen pos, again to make it the same as FTPolyGlyph. Changes because of the changes tp FTPOINT in FTVectoriser. 2001-08-01 22:56 henry * [r22] include/FTVectoriser.h, src/FTVectoriser.cpp: Made the FTPOINT type a struct of 3 floats rather than a PAIR to make it compatible with gluTess. Made bValues[][] a private member rather than local to evaluateCurve() 2001-08-01 05:27 henry * [r21] include/FTVectoriser.h, src/FTVectorGlyph.cpp, src/FTVectorGlyph.h, src/FTVectoriser.cpp: Spilt the FTVectoriser & FTContour stuff out of FTVectorGlyph. Made some minor changes to the curve code. 2001-08-01 04:28 henry * [r20] src/FTVectorGlyph.cpp, src/FTVectorGlyph.h: Removed stdio include and used arg in deCasteljau function declaration 2001-08-01 04:22 henry * [r19] README.txt: Updated now that vectorglyphs now work. 2001-08-01 04:21 henry * [r18] src/FTVectorGlyph.cpp, src/FTVectorGlyph.h: First commit of working code 2001-08-01 04:20 henry * [r17] src/FTTextureGlyph.cpp: removed a comment 2001-08-01 04:19 henry * [r16] src/FTGLTextureFont.cpp: Added code to calculate the min texture size 2001-08-01 04:17 henry * [r15] include/FTGLOutlineFont.h, src/FTGLOutlineFont.cpp: Updated for FTVectorGlyph 2001-07-30 04:49 henry * [r14] README.txt: Added raster position comment to todo 2001-07-30 04:48 henry * [r13] src/FTPixmapGlyph.cpp: Fixing the position stuff 2001-07-30 04:47 henry * [r12] src/FTBitmapGlyph.cpp: Fixing the psosition stuff 2001-07-30 02:29 henry * [r11] README.txt: Raster position changes. TextureGlyph working but not finished 2001-07-30 02:24 henry * [r10] include/FTBitmapGlyph.h, include/FTFont.h, include/FTGLTextureFont.h, include/FTGlyphContainer.h, include/FTPixmapGlyph.h, include/FTTextureGlyph.h, src/FTBitmapGlyph.cpp, src/FTFont.cpp, src/FTGLTextureFont.cpp, src/FTGlyphContainer.cpp, src/FTPixmapGlyph.cpp, src/FTTextureGlyph.cpp: Rewrote the way the raster positon is set. The position is now kept in an FT_Vector called pen and pas into the glyphs, rather than the glyph calculating it's on raster position. 2001-07-30 01:08 henry * [r9] include/FTGlyph.h: render() now takes a reference 2001-07-30 01:07 henry * [r8] src/FTSize.cpp: Return values now scaled correctly 2001-07-27 04:28 henry * [r7] include/FTFont.h: Made all methods virtual 2001-07-26 05:19 henry * [r6] README.txt: Update for changes to FTSize 2001-07-26 05:18 henry * [r5] include/FTSize.h, src/FTSize.cpp: Added assignment of FT_Size attribute and added Height and Width methods 2001-07-26 05:11 henry * [r3] README.txt, include, include/FTBitmapGlyph.h, include/FTFace.h, include/FTFont.h, include/FTGL.h, include/FTGLBitmapFont.h, include/FTGLOutlineFont.h, include/FTGLPixmapFont.h, include/FTGLPolygonFont.h, include/FTGLTextureFont.h, include/FTGlyph.h, include/FTGlyphContainer.h, include/FTLibrary.h, include/FTPixmapGlyph.h, include/FTSize.h, include/FTTextureGlyph.h, src, src/FTBitmapGlyph.cpp, src/FTFace.cpp, src/FTFont.cpp, src/FTGLBitmapFont.cpp, src/FTGLOutlineFont.cpp, src/FTGLPixmapFont.cpp, src/FTGLPolygonFont.cpp, src/FTGLTextureFont.cpp, src/FTGlyph.cpp, src/FTGlyphContainer.cpp, src/FTLibrary.cpp, src/FTPixmapGlyph.cpp, src/FTSize.cpp, src/FTTextureGlyph.cpp, src/FTVectorGlyph.cpp, src/FTVectorGlyph.h: This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches. 2001-07-26 05:11 * [r1] .: New repository initialized by cvs2svn. ftgl-2.1.3~rc5/Makefile.in0000644000175000017500000005442211024231635012253 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(srcdir)/ftgl.pc.in $(top_srcdir)/configure .auto/compile \ .auto/config.guess .auto/config.sub .auto/depcomp \ .auto/install-sh .auto/ltmain.sh .auto/missing AUTHORS COPYING \ ChangeLog INSTALL NEWS TODO ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/cxx.m4 $(top_srcdir)/m4/font.m4 \ $(top_srcdir)/m4/freetype2.m4 $(top_srcdir)/m4/gl.m4 \ $(top_srcdir)/m4/glut.m4 $(top_srcdir)/m4/pkg.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = ftgl.pc SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(pkgconfigdir)" pkgconfigDATA_INSTALL = $(INSTALL_DATA) DATA = $(pkgconfig_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d $(distdir) \ || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr $(distdir); }; } DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 $(distdir).zip GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CONVERT = @CONVERT@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CPPUNIT_CFLAGS = @CPPUNIT_CFLAGS@ CPPUNIT_LIBS = @CPPUNIT_LIBS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DOXYGEN = @DOXYGEN@ DSYMUTIL = @DSYMUTIL@ DVIPS = @DVIPS@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EPSTOPDF = @EPSTOPDF@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FRAMEWORK_OPENGL = @FRAMEWORK_OPENGL@ FT2_CFLAGS = @FT2_CFLAGS@ FT2_CONFIG = @FT2_CONFIG@ FT2_LIBS = @FT2_LIBS@ GLUT_CFLAGS = @GLUT_CFLAGS@ GLUT_LIBS = @GLUT_LIBS@ GL_CFLAGS = @GL_CFLAGS@ GL_LIBS = @GL_LIBS@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ KPSEWHICH = @KPSEWHICH@ LATEX = @LATEX@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_MAJOR = @LT_MAJOR@ LT_MICRO = @LT_MICRO@ LT_MINOR = @LT_MINOR@ LT_VERSION = @LT_VERSION@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = src test demo docs DIST_SUBDIRS = $(SUBDIRS) msvc pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = ftgl.pc DISTCLEANFILES = ftgl.pc EXTRA_DIST = \ AUTHORS \ BUGS \ COPYING \ ChangeLog \ INSTALL \ NEWS \ README \ TODO \ autogen.sh \ configure.ac \ ftgl.pc.in \ m4 \ $(NULL) # Upload documentation DOC = docs/html docs/latex/ftgl.pdf HOST = ftgl.sf.net DIR = /home/groups/f/ft/ftgl/htdocs/ NULL = all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ cd $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) cd $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) cd $(top_srcdir) && $(AUTOHEADER) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 ftgl.pc: $(top_builddir)/config.status $(srcdir)/ftgl.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" @list='$(pkgconfig_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(pkgconfigDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgconfigdir)/$$f'"; \ $(pkgconfigDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgconfigdir)/$$f"; \ done uninstall-pkgconfigDATA: @$(NORMAL_UNINSTALL) @list='$(pkgconfig_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(pkgconfigdir)/$$f'"; \ rm -f "$(DESTDIR)$(pkgconfigdir)/$$f"; \ done # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d $(distdir) || mkdir $(distdir) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ am__remove_distdir=: \ am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ done -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && cd $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(DATA) config.h all-local installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(pkgconfigdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr \ distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive info: info-recursive info-am: install-data-am: install-pkgconfigDATA install-dvi: install-dvi-recursive install-exec-am: install-html: install-html-recursive install-info: install-info-recursive install-man: install-pdf: install-pdf-recursive install-ps: install-ps-recursive installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-pkgconfigDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ install-strip .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am all-local am--refresh check check-am clean \ clean-generic clean-libtool ctags ctags-recursive dist \ dist-all dist-bzip2 dist-gzip dist-lzma dist-shar dist-tarZ \ dist-zip distcheck distclean distclean-generic distclean-hdr \ distclean-libtool distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-pkgconfigDATA install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am uninstall-pkgconfigDATA # Print out an informative summary. all-local: @$(ECHO) "Done." @$(ECHO) @if test "x$(MAKECMDGOALS)" = "xall-am" -o "x$(.TARGETS)" = "xall-am" -o "x$(MAKECMDGOALS)" = "x" -o "x$(.TARGETS)" = "x" ; then \ $(ECHO) "---" ;\ $(ECHO) "Run 'make install' to begin installation into $(prefix)" ;\ fi @$(ECHO) upload-doc: tar cz $(DOC) | ssh $(HOST) "cd $(DIR) && rm -Rf $(DOC) && tar xvz" # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ftgl-2.1.3~rc5/BUGS0000644000175000017500000000145311021201372010655 00000000000000BUGS ==== * FTGLTextureFonts can't be used inside display lists. This because the glGet call to check the current texture id can't be used in a display list. It is only a valid call when the list is compiled and is ignore after that. * The texture co-ords in the Texture Font may be wrong for non scalable fonts. * /usr/share/fonts/truetype/ttf-larabie-deco/let_seat.ttf has issues with the outset position (glyph "u"). /usr/share/fonts/truetype/ttf-larabie-straight/teenlite.ttf has the same problem but it depends the glyph size. * /usr/share/fonts/truetype/ttf-larabie-straight/primer.ttf has filling issues. * The content of textured quads are properly antialiased but their edges remain blocky because there is no possible interpolation. Maybe adding a 1-pixel border would help. ftgl-2.1.3~rc5/AUTHORS0000644000175000017500000000213511023224112011237 00000000000000 -*- coding: utf-8 -*- Original author: Henry Maddocks http://homepages.paradise.net.nz/henryj/ Contributors: Jed Soane (Bezier curve code) Gérard Lanois (demo, Linux port, extrusion code, gltt maintainance) Matthias Kretz (Linux port) Andrew Ellerton (Windows port) Max Rheiner (Windows port) Sébastien Barré (containers and optimisations) Marcelo E. Magallon (original autoconf, bug fixes) Robert Bell (pixmap font modifications) Sam Hocevar (build system, new maintainer) Éric Beets (C bindings) Christopher Sean Morrison (bug fixes, new maintainer) Jeff Myers (JeffM2501) (Windows fixes) Daniel Remenak (Windows fixes) Portions derived from ConvertUTF.c Copyright (C) 2001-2004 Unicode, Inc. Bug fixes: Robert Osfield Markku Rontu Mark A. Fox Patrick Rogers Kai Huettemann FTGL was inspired by gltt, Copyright (C) 1998-1999 Stephane Rehel (http://gltt.sourceforge.net) ftgl-2.1.3~rc5/TODO0000644000175000017500000000147411023210717010672 00000000000000TODO ==== * select face ie italic, bold etc * Multiple sizes * Optimise performance and mem usage. * Use the Freetype Cache mechanism. FTC_xxx * Multiple Masters * String Cache or string chunks * Provide an interface to access the point data for outlines and polygon meshes. Part way there with new vectoriser. * Have a look at improving the algorthm for making curves. Maybe a distance metric might be the way to go so that rather than having 5 polylines (0.2 step) for every curve, adjust the fineness for the length of the curve. But then you should also test the angle of the tangents as well. Jed's new bezier stuff. * Guard classes - vectoriser * Move the init code out of the glyph constructors into an init function so that they can return errors. * Get rid of frontPointList and backPointList! ftgl-2.1.3~rc5/configure.ac0000644000175000017500000000760311024220503012463 00000000000000dnl Minimum version of autoconf required. Should coincide with the dnl setting in the autogen.sh script. AC_PREREQ(2.58) AC_INIT(FTGL, 2.1.3~rc5, [sam@zoy.org], ftgl) AC_CONFIG_SRCDIR(src/FTPoint.cpp) AC_CONFIG_AUX_DIR(.auto) AM_INIT_AUTOMAKE([1.6 no-define dist-zip dist-bzip2]) AM_CONFIG_HEADER(config.h) FTGL_PROG_CXX LT_MAJOR="2" LT_MINOR="1" LT_MICRO="3" AC_SUBST(LT_MAJOR) AC_SUBST(LT_MINOR) AC_SUBST(LT_MICRO) LT_VERSION="$LT_MAJOR:$LT_MINOR:$LT_MICRO" AC_SUBST(LT_VERSION) AC_PROG_LIBTOOL AC_PROG_INSTALL # Checks for typedefs, structures, and compiler characteristics. dnl These don't mix with C++ dnl AC_C_CONST dnl AC_C_INLINE AM_PROG_CC_C_O # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADER([stdlib.h]) # Check for system functions AC_CHECK_FUNCS(wcsdup) AC_CHECK_FUNCS(strndup) # Checks for libraries. AC_PATH_X AC_CHECK_FT2([9.0.3],[], [AC_MSG_ERROR([FreeType2 is required to compile this library])]) AC_PATH_XTRA FTGL_CHECK_GL FTGL_CHECK_GLUT FTGL_CHECK_FONT PKG_CHECK_MODULES(CPPUNIT, cppunit, [CPPUNIT="yes"], [CPPUNIT="no"]) AC_MSG_RESULT($CPPUNIT) AM_CONDITIONAL(HAVE_CPPUNIT, test "x$CPPUNIT" != "xno") dnl search the include directory (required for non-srcdir builds). dnl should come after the system services checks otherwise headers dnl may conflict. CPPFLAGS="$CPPFLAGS -I\${top_srcdir}/src" # Warning flags CPPFLAGS="${CPPFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wshadow -Wsign-compare" CFLAGS="${CFLAGS} -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs" # Build HTML documentatin? AC_PATH_PROG(DOXYGEN, doxygen, no) AM_CONDITIONAL(HAVE_DOXYGEN, test "x$DOXYGEN" != "xno") # Build PDF documentation? AC_PATH_PROG(LATEX, pdflatex, no) AC_PATH_PROG(KPSEWHICH, kpsewhich, no) AC_PATH_PROG(DVIPS, dvips, no) AC_PATH_PROG(CONVERT, convert, no) AC_PATH_PROG(EPSTOPDF, epstopdf, no) if test "${DVIPS}" = "no" -o "${KPSEWHICH}" = "no" -o "${EPSTOPDF}" = "no" \ -o "${CONVERT}" = "no"; then LATEX="no" fi if test "x${LATEX}" != "xno"; then AC_MSG_CHECKING(for a4.sty and a4wide.sty) if "${KPSEWHICH}" a4.sty >/dev/null 2>&1; then if "${KPSEWHICH}" a4wide.sty >/dev/null 2>&1; then AC_MSG_RESULT(yes) else LATEX="no" AC_MSG_RESULT(no) fi else LATEX="no" AC_MSG_RESULT(no) fi fi AM_CONDITIONAL(HAVE_LATEX, test "x${LATEX}" != "xno") AC_CONFIG_FILES([ ftgl.pc ]) AC_CONFIG_FILES([ Makefile demo/Makefile docs/Makefile docs/doxygen.cfg msvc/Makefile src/Makefile test/Makefile ]) AC_OUTPUT dnl dnl Expand the variables for summary reporting dnl prefix=`eval "echo $prefix"` prefix=`eval "echo $prefix"` bindir=`eval "echo $bindir"` bindir=`eval "echo $bindir"` sysconfdir=`eval "echo $sysconfdir"` sysconfdir=`eval "echo $sysconfdir"` mandir=`eval "echo $mandir"` mandir=`eval "echo $mandir"` datadir=`eval "echo $datadir"` datadir=`eval "echo $datadir"` AC_MSG_RESULT([Done.]) AC_MSG_RESULT([]) AC_MSG_RESULT([FTGL configured with the following settings:]) AC_MSG_RESULT([]) AC_MSG_RESULT([ Prefix: ${prefix}]) AC_MSG_RESULT([ Binaries: ${bindir}]) AC_MSG_RESULT([Configuration files: ${sysconfdir}]) AC_MSG_RESULT([ Data files: ${datadir}]) AC_MSG_RESULT([]) AC_MSG_RESULT([CC = ${CC}]) AC_MSG_RESULT([CXX = ${CXX}]) if test "x$CFLAGS" != "x" ; then AC_MSG_RESULT([CFLAGS = ${CFLAGS}]) fi if test "x$CXXFLAGS" != "x" ; then AC_MSG_RESULT([CXXFLAGS = ${CXXFLAGS}]) fi if test "x$CPPFLAGS" != "x" ; then AC_MSG_RESULT([CPPFLAGS = ${CPPFLAGS}]) fi if test "x$LDFLAGS" != "x" ; then AC_MSG_RESULT([LDFLAGS = ${LDFLAGS}]) fi if test "x$LIBS" != "x" ; then AC_MSG_RESULT([LIBS = ${LIBS}]) fi AC_MSG_RESULT([]) AC_MSG_RESULT([---]) AC_MSG_RESULT([$0 complete, type 'make' to begin building]) AC_MSG_RESULT([]) # Local Variables: # tab-width: 8 # mode: autoconf # sh-indentation: 2 # sh-basic-offset: 2 # indent-tabs-mode: t # End: # ex: shiftwidth=2 tabstop=8 ftgl-2.1.3~rc5/autogen.sh0000755000175000017500000013013711005627226012211 00000000000000#!/bin/sh # a u t o g e n . s h # # Copyright (c) 2005-2007 United States Government as represented by # the U.S. Army Research Laboratory. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # 2. Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials provided # with the distribution. # # 3. The name of the author may not be used to endorse or promote # products derived from this software without specific prior written # permission. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE # GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ### # # Script for automatically preparing the sources for compilation by # performing the myrid of necessary steps. The script attempts to # detect proper version support, and outputs warnings about particular # systems that have autotool peculiarities. # # Basically, if everything is set up and installed correctly, the # script will validate that minimum versions of the GNU Build System # tools are installed, account for several common configuration # issues, and then simply run autoreconf for you. # # If autoreconf fails, which can happen for many valid configurations, # this script proceeds to run manual preparation steps effectively # providing a POSIX shell script (mostly complete) reimplementation of # autoreconf. # # The AUTORECONF, AUTOCONF, AUTOMAKE, LIBTOOLIZE, ACLOCAL, AUTOHEADER # environment variables and corresponding _OPTIONS variables (e.g. # AUTORECONF_OPTIONS) may be used to override the default automatic # detection behaviors. Similarly the _VERSION variables will override # the minimum required version numbers. # # Examples: # # To obtain help on usage: # ./autogen.sh --help # # To obtain verbose output: # ./autogen.sh --verbose # # To skip autoreconf and prepare manually: # AUTORECONF=false ./autogen.sh # # To verbosely try running with an older (unsupported) autoconf: # AUTOCONF_VERSION=2.50 ./autogen.sh --verbose # # Author: Christopher Sean Morrison # ###################################################################### # set to minimum acceptible version of autoconf if [ "x$AUTOCONF_VERSION" = "x" ] ; then AUTOCONF_VERSION=2.58 fi # set to minimum acceptible version of automake if [ "x$AUTOMAKE_VERSION" = "x" ] ; then AUTOMAKE_VERSION=1.6.0 fi # set to minimum acceptible version of libtool if [ "x$LIBTOOL_VERSION" = "x" ] ; then LIBTOOL_VERSION=1.4.2 fi ################## # ident function # ################## ident ( ) { # extract copyright from header __copyright="`grep Copyright $AUTOGEN_SH | head -${HEAD_N}1 | awk '{print $4}'`" if [ "x$__copyright" = "x" ] ; then __copyright="`date +%Y`" fi # extract version from CVS Id string __id="$Id: autogen.sh 17015 2008-04-19 07:59:21Z dtremenak $" __version="`echo $__id | sed 's/.*\([0-9][0-9][0-9][0-9]\)[-\/]\([0-9][0-9]\)[-\/]\([0-9][0-9]\).*/\1\2\3/'`" if [ "x$__version" = "x" ] ; then __version="" fi echo "autogen.sh build preparation script by Christopher Sean Morrison" echo "revised 3-clause BSD-style license, copyright (c) $__copyright" echo "script version $__version, ISO/IEC 9945 POSIX shell script" } ################## # USAGE FUNCTION # ################## usage ( ) { echo "Usage: $AUTOGEN_SH [-h|--help] [-v|--verbose] [-q|--quiet] [--version]" echo " --help Help on $NAME_OF_AUTOGEN usage" echo " --verbose Verbose progress output" echo " --quiet Quiet suppressed progress output" echo " --version Only perform GNU Build System version checks" echo echo "Description: This script will validate that minimum versions of the" echo "GNU Build System tools are installed and then run autoreconf for you." echo "Should autoreconf fail, manual preparation steps will be run" echo "potentially accounting for several common preparation issues. The" echo "AUTORECONF, AUTOCONF, AUTOMAKE, LIBTOOLIZE, ACLOCAL, AUTOHEADER," echo "PROJECT, & CONFIGURE environment variables and corresponding _OPTIONS" echo "variables (e.g. AUTORECONF_OPTIONS) may be used to override the" echo "default automatic detection behavior." echo ident return 0 } ########################## # VERSION_ERROR FUNCTION # ########################## version_error ( ) { if [ "x$1" = "x" ] ; then echo "INTERNAL ERROR: version_error was not provided a version" exit 1 fi if [ "x$2" = "x" ] ; then echo "INTERNAL ERROR: version_error was not provided an application name" exit 1 fi $ECHO $ECHO "ERROR: To prepare the ${PROJECT} build system from scratch," $ECHO " at least version $1 of $2 must be installed." $ECHO $ECHO "$NAME_OF_AUTOGEN does not need to be run on the same machine that will" $ECHO "run configure or make. Either the GNU Autotools will need to be installed" $ECHO "or upgraded on this system, or $NAME_OF_AUTOGEN must be run on the source" $ECHO "code on another system and then transferred to here. -- Cheers!" $ECHO } ########################## # VERSION_CHECK FUNCTION # ########################## version_check ( ) { if [ "x$1" = "x" ] ; then echo "INTERNAL ERROR: version_check was not provided a minimum version" exit 1 fi _min="$1" if [ "x$2" = "x" ] ; then echo "INTERNAL ERROR: version check was not provided a comparison version" exit 1 fi _cur="$2" # needed to handle versions like 1.10 and 1.4-p6 _min="`echo ${_min}. | sed 's/[^0-9]/./g' | sed 's/\.\././g'`" _cur="`echo ${_cur}. | sed 's/[^0-9]/./g' | sed 's/\.\././g'`" _min_major="`echo $_min | cut -d. -f1`" _min_minor="`echo $_min | cut -d. -f2`" _min_patch="`echo $_min | cut -d. -f3`" _cur_major="`echo $_cur | cut -d. -f1`" _cur_minor="`echo $_cur | cut -d. -f2`" _cur_patch="`echo $_cur | cut -d. -f3`" if [ "x$_min_major" = "x" ] ; then _min_major=0 fi if [ "x$_min_minor" = "x" ] ; then _min_minor=0 fi if [ "x$_min_patch" = "x" ] ; then _min_patch=0 fi if [ "x$_cur_minor" = "x" ] ; then _cur_major=0 fi if [ "x$_cur_minor" = "x" ] ; then _cur_minor=0 fi if [ "x$_cur_patch" = "x" ] ; then _cur_patch=0 fi $VERBOSE_ECHO "Checking if ${_cur_major}.${_cur_minor}.${_cur_patch} is greater than ${_min_major}.${_min_minor}.${_min_patch}" if [ $_min_major -lt $_cur_major ] ; then return 0 elif [ $_min_major -eq $_cur_major ] ; then if [ $_min_minor -lt $_cur_minor ] ; then return 0 elif [ $_min_minor -eq $_cur_minor ] ; then if [ $_min_patch -lt $_cur_patch ] ; then return 0 elif [ $_min_patch -eq $_cur_patch ] ; then return 0 fi fi fi return 1 } ###################################### # LOCATE_CONFIGURE_TEMPLATE FUNCTION # ###################################### locate_configure_template ( ) { _pwd="`pwd`" if test -f "./configure.ac" ; then echo "./configure.ac" elif test -f "./configure.in" ; then echo "./configure.in" elif test -f "$_pwd/configure.ac" ; then echo "$_pwd/configure.ac" elif test -f "$_pwd/configure.in" ; then echo "$_pwd/configure.in" elif test -f "$PATH_TO_AUTOGEN/configure.ac" ; then echo "$PATH_TO_AUTOGEN/configure.ac" elif test -f "$PATH_TO_AUTOGEN/configure.in" ; then echo "$PATH_TO_AUTOGEN/configure.in" fi } ################## # argument check # ################## ARGS="$*" PATH_TO_AUTOGEN="`dirname $0`" NAME_OF_AUTOGEN="`basename $0`" AUTOGEN_SH="$PATH_TO_AUTOGEN/$NAME_OF_AUTOGEN" LIBTOOL_M4="${PATH_TO_AUTOGEN}/misc/libtool.m4" if [ "x$HELP" = "x" ] ; then HELP=no fi if [ "x$QUIET" = "x" ] ; then QUIET=no fi if [ "x$VERBOSE" = "x" ] ; then VERBOSE=no fi if [ "x$VERSION_ONLY" = "x" ] ; then VERSION_ONLY=no fi if [ "x$AUTORECONF_OPTIONS" = "x" ] ; then AUTORECONF_OPTIONS="-i -f" fi if [ "x$AUTOCONF_OPTIONS" = "x" ] ; then AUTOCONF_OPTIONS="-f" fi if [ "x$AUTOMAKE_OPTIONS" = "x" ] ; then AUTOMAKE_OPTIONS="-a -c -f" fi ALT_AUTOMAKE_OPTIONS="-a -c" if [ "x$LIBTOOLIZE_OPTIONS" = "x" ] ; then LIBTOOLIZE_OPTIONS="--automake -c -f" fi ALT_LIBTOOLIZE_OPTIONS="--automake --copy --force" if [ "x$ACLOCAL_OPTIONS" = "x" ] ; then ACLOCAL_OPTIONS="" fi if [ "x$AUTOHEADER_OPTIONS" = "x" ] ; then AUTOHEADER_OPTIONS="" fi for arg in $ARGS ; do case "x$arg" in x--help) HELP=yes ;; x-[hH]) HELP=yes ;; x--quiet) QUIET=yes ;; x-[qQ]) QUIET=yes ;; x--verbose) VERBOSE=yes ;; x-[vV]) VERBOSE=yes ;; x--version) VERSION_ONLY=yes ;; *) echo "Unknown option: $arg" echo usage exit 1 ;; esac done ##################### # environment check # ##################### # sanity check before recursions potentially begin if [ ! -f "$AUTOGEN_SH" ] ; then echo "INTERNAL ERROR: $AUTOGEN_SH does not exist" if [ ! "x$0" = "x$AUTOGEN_SH" ] ; then echo "INTERNAL ERROR: dirname/basename inconsistency: $0 != $AUTOGEN_SH" fi exit 1 fi # force locale setting to C so things like date output as expected LC_ALL=C # commands that this script expects for __cmd in echo head tail pwd ; do echo "test" | $__cmd > /dev/null 2>&1 if [ $? != 0 ] ; then echo "INTERNAL ERROR: '${__cmd}' command is required" exit 2 fi done echo "test" | grep "test" > /dev/null 2>&1 if test ! x$? = x0 ; then echo "INTERNAL ERROR: grep command is required" exit 1 fi echo "test" | sed "s/test/test/" > /dev/null 2>&1 if test ! x$? = x0 ; then echo "INTERNAL ERROR: sed command is required" exit 1 fi # determine the behavior of echo case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in *c*,-n*) ECHO_N= ECHO_C=' ' ECHO_T=' ' ;; *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; *) ECHO_N= ECHO_C='\c' ECHO_T= ;; esac # determine the behavior of head case "x`echo 'head' | head -n 1 2>&1`" in *xhead*) HEAD_N="n " ;; *) HEAD_N="" ;; esac # determine the behavior of tail case "x`echo 'tail' | tail -n 1 2>&1`" in *xtail*) TAIL_N="n " ;; *) TAIL_N="" ;; esac VERBOSE_ECHO=: ECHO=: if [ "x$QUIET" = "xyes" ] ; then if [ "x$VERBOSE" = "xyes" ] ; then echo "Verbose output quelled by quiet option. Further output disabled." fi else ECHO=echo if [ "x$VERBOSE" = "xyes" ] ; then echo "Verbose output enabled" VERBOSE_ECHO=echo fi fi # allow a recursive run to disable further recursions if [ "x$RUN_RECURSIVE" = "x" ] ; then RUN_RECURSIVE=yes fi ################################################ # check for help arg and bypass version checks # ################################################ if [ "x`echo $ARGS | sed 's/.*[hH][eE][lL][pP].*/help/'`" = "xhelp" ] ; then HELP=yes fi if [ "x$HELP" = "xyes" ] ; then usage $ECHO "---" $ECHO "Help was requested. No preparation or configuration will be performed." exit 0 fi ####################### # set up signal traps # ####################### untrap_abnormal ( ) { for sig in 1 2 13 15; do trap - $sig done } # do this cleanup whenever we exit. trap ' # start from the root if test -d "$START_PATH" ; then cd "$START_PATH" fi # restore/delete backup files if test "x$PFC_INIT" = "x1" ; then recursive_restore fi ' 0 # trap SIGHUP (1), SIGINT (2), SIGPIPE (13), SIGTERM (15) for sig in 1 2 13 15; do trap ' $ECHO "" $ECHO "Aborting $NAME_OF_AUTOGEN: caught signal '$sig'" # start from the root if test -d "$START_PATH" ; then cd "$START_PATH" fi # clean up on abnormal exit $VERBOSE_ECHO "rm -rf autom4te.cache" rm -rf autom4te.cache if test -f "acinclude.m4.$$.backup" ; then $VERBOSE_ECHO "cat acinclude.m4.$$.backup > acinclude.m4" chmod u+w acinclude.m4 cat acinclude.m4.$$.backup > acinclude.m4 $VERBOSE_ECHO "rm -f acinclude.m4.$$.backup" rm -f acinclude.m4.$$.backup fi { (exit 1); exit 1; } ' $sig done ############################# # look for a configure file # ############################# if [ "x$CONFIGURE" = "x" ] ; then CONFIGURE="`locate_configure_template`" if [ ! "x$CONFIGURE" = "x" ] ; then $VERBOSE_ECHO "Found a configure template: $CONFIGURE" fi else $ECHO "Using CONFIGURE environment variable override: $CONFIGURE" fi if [ "x$CONFIGURE" = "x" ] ; then if [ "x$VERSION_ONLY" = "xyes" ] ; then CONFIGURE=/dev/null else $ECHO $ECHO "A configure.ac or configure.in file could not be located implying" $ECHO "that the GNU Build System is at least not used in this directory. In" $ECHO "any case, there is nothing to do here without one of those files." $ECHO $ECHO "ERROR: No configure.in or configure.ac file found in `pwd`" exit 1 fi fi #################### # get project name # #################### if [ "x$PROJECT" = "x" ] ; then PROJECT="`grep AC_INIT $CONFIGURE | grep -v '.*#.*AC_INIT' | tail -${TAIL_N}1 | sed 's/^[ ]*AC_INIT(\([^,)]*\).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`" if [ "x$PROJECT" = "xAC_INIT" ] ; then # projects might be using the older/deprecated arg-less AC_INIT .. look for AM_INIT_AUTOMAKE instead PROJECT="`grep AM_INIT_AUTOMAKE $CONFIGURE | grep -v '.*#.*AM_INIT_AUTOMAKE' | tail -${TAIL_N}1 | sed 's/^[ ]*AM_INIT_AUTOMAKE(\([^,)]*\).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`" fi if [ "x$PROJECT" = "xAM_INIT_AUTOMAKE" ] ; then PROJECT="project" fi if [ "x$PROJECT" = "x" ] ; then PROJECT="project" fi else $ECHO "Using PROJECT environment variable override: $PROJECT" fi $ECHO "Preparing the $PROJECT build system...please wait" $ECHO ######################## # check for autoreconf # ######################## HAVE_AUTORECONF=no if [ "x$AUTORECONF" = "x" ] ; then for AUTORECONF in autoreconf ; do $VERBOSE_ECHO "Checking autoreconf version: $AUTORECONF --version" $AUTORECONF --version > /dev/null 2>&1 if [ $? = 0 ] ; then HAVE_AUTORECONF=yes break fi done else HAVE_AUTORECONF=yes $ECHO "Using AUTORECONF environment variable override: $AUTORECONF" fi ########################## # autoconf version check # ########################## _acfound=no if [ "x$AUTOCONF" = "x" ] ; then for AUTOCONF in autoconf ; do $VERBOSE_ECHO "Checking autoconf version: $AUTOCONF --version" $AUTOCONF --version > /dev/null 2>&1 if [ $? = 0 ] ; then _acfound=yes break fi done else _acfound=yes $ECHO "Using AUTOCONF environment variable override: $AUTOCONF" fi _report_error=no if [ ! "x$_acfound" = "xyes" ] ; then $ECHO "ERROR: Unable to locate GNU Autoconf." _report_error=yes else _version="`$AUTOCONF --version | head -${HEAD_N}1 | sed 's/[^0-9]*\([0-9\.][0-9\.]*\)/\1/'`" if [ "x$_version" = "x" ] ; then _version="0.0.0" fi $ECHO "Found GNU Autoconf version $_version" version_check "$AUTOCONF_VERSION" "$_version" if [ $? -ne 0 ] ; then _report_error=yes fi fi if [ "x$_report_error" = "xyes" ] ; then version_error "$AUTOCONF_VERSION" "GNU Autoconf" exit 1 fi ########################## # automake version check # ########################## _amfound=no if [ "x$AUTOMAKE" = "x" ] ; then for AUTOMAKE in automake ; do $VERBOSE_ECHO "Checking automake version: $AUTOMAKE --version" $AUTOMAKE --version > /dev/null 2>&1 if [ $? = 0 ] ; then _amfound=yes break fi done else _amfound=yes $ECHO "Using AUTOMAKE environment variable override: $AUTOMAKE" fi _report_error=no if [ ! "x$_amfound" = "xyes" ] ; then $ECHO $ECHO "ERROR: Unable to locate GNU Automake." _report_error=yes else _version="`$AUTOMAKE --version | head -${HEAD_N}1 | sed 's/[^0-9]*\([0-9\.][0-9\.]*\)/\1/'`" if [ "x$_version" = "x" ] ; then _version="0.0.0" fi $ECHO "Found GNU Automake version $_version" version_check "$AUTOMAKE_VERSION" "$_version" if [ $? -ne 0 ] ; then _report_error=yes fi fi if [ "x$_report_error" = "xyes" ] ; then version_error "$AUTOMAKE_VERSION" "GNU Automake" exit 1 fi ######################## # check for libtoolize # ######################## HAVE_LIBTOOLIZE=yes HAVE_ALT_LIBTOOLIZE=no _ltfound=no if [ "x$LIBTOOLIZE" = "x" ] ; then LIBTOOLIZE=libtoolize $VERBOSE_ECHO "Checking libtoolize version: $LIBTOOLIZE --version" $LIBTOOLIZE --version > /dev/null 2>&1 if [ ! $? = 0 ] ; then HAVE_LIBTOOLIZE=no $ECHO if [ "x$HAVE_AUTORECONF" = "xno" ] ; then $ECHO "Warning: libtoolize does not appear to be available." else $ECHO "Warning: libtoolize does not appear to be available. This means that" $ECHO "the automatic build preparation via autoreconf will probably not work." $ECHO "Preparing the build by running each step individually, however, should" $ECHO "work and will be done automatically for you if autoreconf fails." fi # look for some alternates for tool in glibtoolize libtoolize15 libtoolize14 libtoolize13 ; do $VERBOSE_ECHO "Checking libtoolize alternate: $tool --version" _glibtoolize="`$tool --version > /dev/null 2>&1`" if [ $? = 0 ] ; then $VERBOSE_ECHO "Found $tool --version" _glti="`which $tool`" if [ "x$_glti" = "x" ] ; then $VERBOSE_ECHO "Cannot find $tool with which" continue; fi if test ! -f "$_glti" ; then $VERBOSE_ECHO "Cannot use $tool, $_glti is not a file" continue; fi _gltidir="`dirname $_glti`" if [ "x$_gltidir" = "x" ] ; then $VERBOSE_ECHO "Cannot find $tool path with dirname of $_glti" continue; fi if test ! -d "$_gltidir" ; then $VERBOSE_ECHO "Cannot use $tool, $_gltidir is not a directory" continue; fi HAVE_ALT_LIBTOOLIZE=yes LIBTOOLIZE="$tool" $ECHO $ECHO "Fortunately, $tool was found which means that your system may simply" $ECHO "have a non-standard or incomplete GNU Autotools install. If you have" $ECHO "sufficient system access, it may be possible to quell this warning by" $ECHO "running:" $ECHO sudo -V > /dev/null 2>&1 if [ $? = 0 ] ; then $ECHO " sudo ln -s $_glti $_gltidir/libtoolize" $ECHO else $ECHO " ln -s $_glti $_gltidir/libtoolize" $ECHO $ECHO "Run that as root or with proper permissions to the $_gltidir directory" $ECHO fi _ltfound=yes break fi done else _ltfound=yes fi else _ltfound=yes $ECHO "Using LIBTOOLIZE environment variable override: $LIBTOOLIZE" fi ############################ # libtoolize version check # ############################ _report_error=no if [ ! "x$_ltfound" = "xyes" ] ; then $ECHO $ECHO "ERROR: Unable to locate GNU Libtool." _report_error=yes else _version="`$LIBTOOLIZE --version | head -${HEAD_N}1 | sed 's/[^0-9]*\([0-9\.][0-9\.]*\)/\1/'`" if [ "x$_version" = "x" ] ; then _version="0.0.0" fi $ECHO "Found GNU Libtool version $_version" version_check "$LIBTOOL_VERSION" "$_version" if [ $? -ne 0 ] ; then _report_error=yes fi fi if [ "x$_report_error" = "xyes" ] ; then version_error "$LIBTOOL_VERSION" "GNU Libtool" exit 1 fi ##################### # check for aclocal # ##################### if [ "x$ACLOCAL" = "x" ] ; then for ACLOCAL in aclocal ; do $VERBOSE_ECHO "Checking aclocal version: $ACLOCAL --version" $ACLOCAL --version > /dev/null 2>&1 if [ $? = 0 ] ; then break fi done else $ECHO "Using ACLOCAL environment variable override: $ACLOCAL" fi ######################## # check for autoheader # ######################## if [ "x$AUTOHEADER" = "x" ] ; then for AUTOHEADER in autoheader ; do $VERBOSE_ECHO "Checking autoheader version: $AUTOHEADER --version" $AUTOHEADER --version > /dev/null 2>&1 if [ $? = 0 ] ; then break fi done else $ECHO "Using AUTOHEADER environment variable override: $AUTOHEADER" fi ######################### # check if version only # ######################### $VERBOSE_ECHO "Checking whether to only output version information" if [ "x$VERSION_ONLY" = "xyes" ] ; then $ECHO ident $ECHO "---" $ECHO "Version requested. No preparation or configuration will be performed." exit 0 fi ################################# # PROTECT_FROM_CLOBBER FUNCTION # ################################# protect_from_clobber ( ) { PFC_INIT=1 # protect COPYING & INSTALL from overwrite by automake. the # automake force option will (inappropriately) ignore the existing # contents of a COPYING and/or INSTALL files (depending on the # version) instead of just forcing *missing* files like it does # for AUTHORS, NEWS, and README. this is broken but extremely # prevalent behavior, so we protect against it by keeping a backup # of the file that can later be restored. if test -f COPYING ; then if test -f COPYING.$$.protect_from_automake.backup ; then $VERBOSE_ECHO "Already backed up COPYING in `pwd`" else $VERBOSE_ECHO "Backing up COPYING in `pwd`" $VERBOSE_ECHO "cp -p COPYING COPYING.$$.protect_from_automake.backup" cp -p COPYING COPYING.$$.protect_from_automake.backup fi fi if test -f INSTALL ; then if test -f INSTALL.$$.protect_from_automake.backup ; then $VERBOSE_ECHO "Already backed up INSTALL in `pwd`" else $VERBOSE_ECHO "Backing up INSTALL in `pwd`" $VERBOSE_ECHO "cp -p INSTALL INSTALL.$$.protect_from_automake.backup" cp -p INSTALL INSTALL.$$.protect_from_automake.backup fi fi } ############################## # RECURSIVE_PROTECT FUNCTION # ############################## recursive_protect ( ) { # for projects using recursive configure, run the build # preparation steps for the subdirectories. this function assumes # START_PATH was set to pwd before recursion begins so that # relative paths work. # git 'r done, protect COPYING and INSTALL from being clobbered protect_from_clobber if test -d autom4te.cache ; then $VERBOSE_ECHO "Found an autom4te.cache directory, deleting it" $VERBOSE_ECHO "rm -rf autom4te.cache" rm -rf autom4te.cache fi # find configure template _configure="`locate_configure_template`" if [ "x$_configure" = "x" ] ; then return fi # $VERBOSE_ECHO "Looking for configure template found `pwd`/$_configure" # look for subdirs # $VERBOSE_ECHO "Looking for subdirs in `pwd`" _det_config_subdirs="`grep AC_CONFIG_SUBDIRS $_configure | grep -v '.*#.*AC_CONFIG_SUBDIRS' | sed 's/^[ ]*AC_CONFIG_SUBDIRS(\(.*\)).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`" CHECK_DIRS="" for dir in $_det_config_subdirs ; do if test -d "`pwd`/$dir" ; then CHECK_DIRS="$CHECK_DIRS \"`pwd`/$dir\"" fi done # process subdirs if [ ! "x$CHECK_DIRS" = "x" ] ; then $VERBOSE_ECHO "Recursively scanning the following directories:" $VERBOSE_ECHO " $CHECK_DIRS" for dir in $CHECK_DIRS ; do $VERBOSE_ECHO "Protecting files from automake in $dir" cd "$START_PATH" eval "cd $dir" # recursively git 'r done recursive_protect done fi } # end of recursive_protect ############################# # RESTORE_CLOBBERED FUNCION # ############################# restore_clobbered ( ) { # The automake (and autoreconf by extension) -f/--force-missing # option may overwrite COPYING and INSTALL even if they do exist. # Here we restore the files if necessary. spacer=no # COPYING if test -f COPYING.$$.protect_from_automake.backup ; then if test -f COPYING ; then # compare entire content, restore if needed if test "x`cat COPYING`" != "x`cat COPYING.$$.protect_from_automake.backup`" ; then if test "x$spacer" = "xno" ; then $VERBOSE_ECHO spacer=yes fi # restore the backup $VERBOSE_ECHO "Restoring COPYING from backup (automake -f likely clobbered it)" $VERBOSE_ECHO "rm -f COPYING" rm -f COPYING $VERBOSE_ECHO "mv COPYING.$$.protect_from_automake.backup COPYING" mv COPYING.$$.protect_from_automake.backup COPYING fi # check contents elif test -f COPYING.$$.protect_from_automake.backup ; then $VERBOSE_ECHO "mv COPYING.$$.protect_from_automake.backup COPYING" mv COPYING.$$.protect_from_automake.backup COPYING fi # -f COPYING # just in case $VERBOSE_ECHO "rm -f COPYING.$$.protect_from_automake.backup" rm -f COPYING.$$.protect_from_automake.backup fi # -f COPYING.$$.protect_from_automake.backup # INSTALL if test -f INSTALL.$$.protect_from_automake.backup ; then if test -f INSTALL ; then # compare entire content, restore if needed if test "x`cat INSTALL`" != "x`cat INSTALL.$$.protect_from_automake.backup`" ; then if test "x$spacer" = "xno" ; then $VERBOSE_ECHO spacer=yes fi # restore the backup $VERBOSE_ECHO "Restoring INSTALL from backup (automake -f likely clobbered it)" $VERBOSE_ECHO "rm -f INSTALL" rm -f INSTALL $VERBOSE_ECHO "mv INSTALL.$$.protect_from_automake.backup INSTALL" mv INSTALL.$$.protect_from_automake.backup INSTALL fi # check contents elif test -f INSTALL.$$.protect_from_automake.backup ; then $VERBOSE_ECHO "mv INSTALL.$$.protect_from_automake.backup INSTALL" mv INSTALL.$$.protect_from_automake.backup INSTALL fi # -f INSTALL # just in case $VERBOSE_ECHO "rm -f INSTALL.$$.protect_from_automake.backup" rm -f INSTALL.$$.protect_from_automake.backup fi # -f INSTALL.$$.protect_from_automake.backup CONFIGURE="`locate_configure_template`" if [ "x$CONFIGURE" = "x" ] ; then return fi _aux_dir="`grep AC_CONFIG_AUX_DIR $CONFIGURE | grep -v '.*#.*AC_CONFIG_AUX_DIR' | tail -${TAIL_N}1 | sed 's/^[ ]*AC_CONFIG_AUX_DIR(\(.*\)).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`" if test ! -d "$_aux_dir" ; then _aux_dir=. fi for file in config.guess config.sub ltmain.sh ; do if test -f "${_aux_dir}/${file}" ; then $VERBOSE_ECHO "rm -f \"${_aux_dir}/${file}.backup\"" rm -f "${_aux_dir}/${file}.backup" fi done } # end of restore_clobbered ############################## # RECURSIVE_RESTORE FUNCTION # ############################## recursive_restore ( ) { # restore COPYING and INSTALL from backup if they were clobbered # for each directory recursively. # git 'r undone restore_clobbered # find configure template _configure="`locate_configure_template`" if [ "x$_configure" = "x" ] ; then return fi # look for subdirs _det_config_subdirs="`grep AC_CONFIG_SUBDIRS $_configure | grep -v '.*#.*AC_CONFIG_SUBDIRS' | sed 's/^[ ]*AC_CONFIG_SUBDIRS(\(.*\)).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`" CHECK_DIRS="" for dir in $_det_config_subdirs ; do if test -d "`pwd`/$dir" ; then CHECK_DIRS="$CHECK_DIRS \"`pwd`/$dir\"" fi done # process subdirs if [ ! "x$CHECK_DIRS" = "x" ] ; then $VERBOSE_ECHO "Recursively scanning the following directories:" $VERBOSE_ECHO " $CHECK_DIRS" for dir in $CHECK_DIRS ; do $VERBOSE_ECHO "Checking files for automake damage in $dir" cd "$START_PATH" eval "cd $dir" # recursively git 'r undone recursive_restore done fi } # end of recursive_restore ####################### # INITIALIZE FUNCTION # ####################### initialize ( ) { # this routine performs a variety of directory-specific # initializations. some are sanity checks, some are preventive, # and some are necessary setup detection. # # this function sets: # CONFIGURE # SEARCH_DIRS # CONFIG_SUBDIRS ################################## # check for a configure template # ################################## CONFIGURE="`locate_configure_template`" if [ "x$CONFIGURE" = "x" ] ; then $ECHO $ECHO "A configure.ac or configure.in file could not be located implying" $ECHO "that the GNU Build System is at least not used in this directory. In" $ECHO "any case, there is nothing to do here without one of those files." $ECHO $ECHO "ERROR: No configure.in or configure.ac file found in `pwd`" exit 1 fi ##################### # detect an aux dir # ##################### _aux_dir="`grep AC_CONFIG_AUX_DIR $CONFIGURE | grep -v '.*#.*AC_CONFIG_AUX_DIR' | tail -${TAIL_N}1 | sed 's/^[ ]*AC_CONFIG_AUX_DIR(\(.*\)).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`" if test ! -d "$_aux_dir" ; then _aux_dir=. else $VERBOSE_ECHO "Detected auxillary directory: $_aux_dir" fi ################################ # detect a recursive configure # ################################ CONFIG_SUBDIRS="" _det_config_subdirs="`grep AC_CONFIG_SUBDIRS $CONFIGURE | grep -v '.*#.*AC_CONFIG_SUBDIRS' | sed 's/^[ ]*AC_CONFIG_SUBDIRS(\(.*\)).*/\1/' | sed 's/.*\[\(.*\)\].*/\1/'`" for dir in $_det_config_subdirs ; do if test -d "`pwd`/$dir" ; then $VERBOSE_ECHO "Detected recursive configure directory: `pwd`/$dir" CONFIG_SUBDIRS="$CONFIG_SUBDIRS `pwd`/$dir" fi done ########################################## # make sure certain required files exist # ########################################## for file in AUTHORS COPYING ChangeLog INSTALL NEWS README ; do if test ! -f $file ; then $VERBOSE_ECHO "Touching ${file} since it does not exist" touch $file fi done ################################################## # make sure certain generated files do not exist # ################################################## for file in config.guess config.sub ltmain.sh ; do if test -f "${_aux_dir}/${file}" ; then $VERBOSE_ECHO "mv -f \"${_aux_dir}/${file}\" \"${_aux_dir}/${file}.backup\"" mv -f "${_aux_dir}/${file}" "${_aux_dir}/${file}.backup" fi done ############################ # search alternate m4 dirs # ############################ SEARCH_DIRS="" for dir in m4 ; do if [ -d $dir ] ; then $VERBOSE_ECHO "Found extra aclocal search directory: $dir" SEARCH_DIRS="$SEARCH_DIRS -I $dir" fi done ###################################### # remove any previous build products # ###################################### if test -d autom4te.cache ; then $VERBOSE_ECHO "Found an autom4te.cache directory, deleting it" $VERBOSE_ECHO "rm -rf autom4te.cache" rm -rf autom4te.cache fi # tcl/tk (and probably others) have a customized aclocal.m4, so can't delete it # if test -f aclocal.m4 ; then # $VERBOSE_ECHO "Found an aclocal.m4 file, deleting it" # $VERBOSE_ECHO "rm -f aclocal.m4" # rm -f aclocal.m4 # fi } # end of initialize() ############## # initialize # ############## # stash path START_PATH="`pwd`" # Before running autoreconf or manual steps, some prep detection work # is necessary or useful. Only needs to occur once per directory, but # does need to traverse the entire subconfigure hierarchy to protect # files from being clobbered even by autoreconf. recursive_protect # start from where we started cd "$START_PATH" # get ready to process initialize ############################################ # prepare build via autoreconf or manually # ############################################ reconfigure_manually=no if [ "x$HAVE_AUTORECONF" = "xyes" ] ; then $ECHO $ECHO $ECHO_N "Automatically preparing build ... $ECHO_C" $VERBOSE_ECHO "$AUTORECONF $SEARCH_DIRS $AUTORECONF_OPTIONS" autoreconf_output="`$AUTORECONF $SEARCH_DIRS $AUTORECONF_OPTIONS 2>&1`" ret=$? $VERBOSE_ECHO "$autoreconf_output" if [ ! $ret = 0 ] ; then if [ "x$HAVE_ALT_LIBTOOLIZE" = "xyes" ] ; then if [ ! "x`echo \"$autoreconf_output\" | grep libtoolize | grep \"No such file or directory\"`" = "x" ] ; then $ECHO $ECHO "Warning: autoreconf failed but due to what is usually a common libtool" $ECHO "misconfiguration issue. This problem is encountered on systems that" $ECHO "have installed libtoolize under a different name without providing a" $ECHO "symbolic link or without setting the LIBTOOLIZE environment variable." $ECHO $ECHO "Restarting the preparation steps with LIBTOOLIZE set to $LIBTOOLIZE" export LIBTOOLIZE RUN_RECURSIVE=no export RUN_RECURSIVE untrap_abnormal $VERBOSE_ECHO sh $AUTOGEN_SH "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9" sh "$AUTOGEN_SH" "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9" exit $? fi fi $ECHO "Warning: $AUTORECONF failed" if test -f ltmain.sh ; then $ECHO "libtoolize being run by autoreconf is not creating ltmain.sh in the auxillary directory like it should" fi $ECHO "Attempting to run the preparation steps individually" reconfigure_manually=yes fi else reconfigure_manually=yes fi ############################ # LIBTOOL_FAILURE FUNCTION # ############################ libtool_failure ( ) { # libtool is rather error-prone in comparison to the other # autotools and this routine attempts to compensate for some # common failures. the output after a libtoolize failure is # parsed for an error related to AC_PROG_LIBTOOL and if found, we # attempt to inject a project-provided libtool.m4 file. _autoconf_output="$1" if [ "x$RUN_RECURSIVE" = "xno" ] ; then # we already tried the libtool.m4, don't try again return 1 fi if test -f "$LIBTOOL_M4" ; then found_libtool="`$ECHO $_autoconf_output | grep AC_PROG_LIBTOOL`" if test ! "x$found_libtool" = "x" ; then if test -f acinclude.m4 ; then rm -f acinclude.m4.$$.backup $VERBOSE_ECHO "cat acinclude.m4 > acinclude.m4.$$.backup" cat acinclude.m4 > acinclude.m4.$$.backup fi $VERBOSE_ECHO "cat \"$LIBTOOL_M4\" >> acinclude.m4" chmod u+w acinclude.m4 cat "$LIBTOOL_M4" >> acinclude.m4 # don't keep doing this RUN_RECURSIVE=no export RUN_RECURSIVE untrap_abnormal $ECHO $ECHO "Restarting the preparation steps with libtool macros in acinclude.m4" $VERBOSE_ECHO sh $AUTOGEN_SH "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9" sh "$AUTOGEN_SH" "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9" exit $? fi fi } ########################### # MANUAL_AUTOGEN FUNCTION # ########################### manual_autogen ( ) { ################################################## # Manual preparation steps taken are as follows: # # aclocal [-I m4] # # libtoolize --automake -c -f # # aclocal [-I m4] # # autoconf -f # # autoheader # # automake -a -c -f # ################################################## ########### # aclocal # ########### $VERBOSE_ECHO "$ACLOCAL $SEARCH_DIRS $ACLOCAL_OPTIONS" aclocal_output="`$ACLOCAL $SEARCH_DIRS $ACLOCAL_OPTIONS 2>&1`" ret=$? $VERBOSE_ECHO "$aclocal_output" if [ ! $ret = 0 ] ; then $ECHO "ERROR: $ACLOCAL failed" && exit 2 ; fi ############## # libtoolize # ############## need_libtoolize=no for feature in AC_PROG_LIBTOOL LT_INIT ; do $VERBOSE_ECHO "Searching for $feature in $CONFIGURE" found="`grep \"^$feature.*\" $CONFIGURE`" if [ ! "x$found" = "x" ] ; then need_libtoolize=yes break fi done if [ "x$need_libtoolize" = "xyes" ] ; then if [ "x$HAVE_LIBTOOLIZE" = "xyes" ] ; then $VERBOSE_ECHO "$LIBTOOLIZE $LIBTOOLIZE_OPTIONS" libtoolize_output="`$LIBTOOLIZE $LIBTOOLIZE_OPTIONS 2>&1`" ret=$? $VERBOSE_ECHO "$libtoolize_output" if [ ! $ret = 0 ] ; then $ECHO "ERROR: $LIBTOOLIZE failed" && exit 2 ; fi else if [ "x$HAVE_ALT_LIBTOOLIZE" = "xyes" ] ; then $VERBOSE_ECHO "$LIBTOOLIZE $ALT_LIBTOOLIZE_OPTIONS" libtoolize_output="`$LIBTOOLIZE $ALT_LIBTOOLIZE_OPTIONS 2>&1`" ret=$? $VERBOSE_ECHO "$libtoolize_output" if [ ! $ret = 0 ] ; then $ECHO "ERROR: $LIBTOOLIZE failed" && exit 2 ; fi fi fi ########### # aclocal # ########### # re-run again as instructed by libtoolize $VERBOSE_ECHO "$ACLOCAL $SEARCH_DIRS $ACLOCAL_OPTIONS" aclocal_output="`$ACLOCAL $SEARCH_DIRS $ACLOCAL_OPTIONS 2>&1`" ret=$? $VERBOSE_ECHO "$aclocal_output" # libtoolize might put ltmain.sh in the wrong place if test -f ltmain.sh ; then if test ! -f "${_aux_dir}/ltmain.sh" ; then $ECHO $ECHO "Warning: $LIBTOOLIZE is creating ltmain.sh in the wrong directory" $ECHO $ECHO "Fortunately, the problem can be worked around by simply copying the" $ECHO "file to the appropriate location (${_aux_dir}/). This has been done for you." $ECHO $VERBOSE_ECHO "cp -p ltmain.sh \"${_aux_dir}/ltmain.sh\"" cp -p ltmain.sh "${_aux_dir}/ltmain.sh" $ECHO $ECHO_N "Continuing build preparation ... $ECHO_C" fi fi # ltmain.sh fi # need_libtoolize ############ # autoconf # ############ $VERBOSE_ECHO $VERBOSE_ECHO "$AUTOCONF $AUTOCONF_OPTIONS" autoconf_output="`$AUTOCONF $AUTOCONF_OPTIONS 2>&1`" ret=$? $VERBOSE_ECHO "$autoconf_output" if [ ! $ret = 0 ] ; then # retry without the -f and check for usage of macros that are too new ac2_59_macros="AC_C_RESTRICT AC_INCLUDES_DEFAULT AC_LANG_ASSERT AC_LANG_WERROR AS_SET_CATFILE" ac2_55_macros="AC_COMPILER_IFELSE AC_FUNC_MBRTOWC AC_HEADER_STDBOOL AC_LANG_CONFTEST AC_LANG_SOURCE AC_LANG_PROGRAM AC_LANG_CALL AC_LANG_FUNC_TRY_LINK AC_MSG_FAILURE AC_PREPROC_IFELSE" ac2_54_macros="AC_C_BACKSLASH_A AC_CONFIG_LIBOBJ_DIR AC_GNU_SOURCE AC_PROG_EGREP AC_PROG_FGREP AC_REPLACE_FNMATCH AC_FUNC_FNMATCH_GNU AC_FUNC_REALLOC AC_TYPE_MBSTATE_T" macros_to_search="" ac_major="`echo ${AUTOCONF_VERSION}. | cut -d. -f1 | sed 's/[^0-9]//g'`" ac_minor="`echo ${AUTOCONF_VERSION}. | cut -d. -f2 | sed 's/[^0-9]//g'`" if [ $ac_major -lt 2 ] ; then macros_to_search="$ac2_59_macros $ac2_55_macros $ac2_54_macros" else if [ $ac_minor -lt 54 ] ; then macros_to_search="$ac2_59_macros $ac2_55_macros $ac2_54_macros" elif [ $ac_minor -lt 55 ] ; then macros_to_search="$ac2_59_macros $ac2_55_macros" elif [ $ac_minor -lt 59 ] ; then macros_to_search="$ac2_59_macros" fi fi configure_ac_macros=__none__ for feature in $macros_to_search ; do $VERBOSE_ECHO "Searching for $feature in $CONFIGURE" found="`grep \"^$feature.*\" $CONFIGURE`" if [ ! "x$found" = "x" ] ; then if [ "x$configure_ac_macros" = "x__none__" ] ; then configure_ac_macros="$feature" else configure_ac_macros="$feature $configure_ac_macros" fi fi done if [ ! "x$configure_ac_macros" = "x__none__" ] ; then $ECHO $ECHO "Warning: Unsupported macros were found in $CONFIGURE" $ECHO $ECHO "The `echo $CONFIGURE | basename` file was scanned in order to determine if any" $ECHO "unsupported macros are used that exceed the minimum version" $ECHO "settings specified within this file. As such, the following macros" $ECHO "should be removed from configure.ac or the version numbers in this" $ECHO "file should be increased:" $ECHO $ECHO "$configure_ac_macros" $ECHO $ECHO $ECHO_N "Ignorantly continuing build preparation ... $ECHO_C" fi ################### # autoconf, retry # ################### $VERBOSE_ECHO $VERBOSE_ECHO "$AUTOCONF" autoconf_output="`$AUTOCONF 2>&1`" ret=$? $VERBOSE_ECHO "$autoconf_output" if [ ! $ret = 0 ] ; then # test if libtool is busted libtool_failure "$autoconf_output" # let the user know what went wrong cat < * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTVector__ #define __FTVector__ #include "FTGL/ftgl.h" /** * Provides a non-STL alternative to the STL vector */ template class FTVector { public: typedef FT_VECTOR_ITEM_TYPE value_type; typedef value_type& reference; typedef const value_type& const_reference; typedef value_type* iterator; typedef const value_type* const_iterator; typedef size_t size_type; FTVector() { Capacity = Size = 0; Items = 0; } virtual ~FTVector() { clear(); } FTVector& operator =(const FTVector& v) { reserve(v.capacity()); iterator ptr = begin(); const_iterator vbegin = v.begin(); const_iterator vend = v.end(); while(vbegin != vend) { *ptr++ = *vbegin++; } Size = v.size(); return *this; } size_type size() const { return Size; } size_type capacity() const { return Capacity; } iterator begin() { return Items; } const_iterator begin() const { return Items; } iterator end() { return begin() + size(); } const_iterator end() const { return begin() + size(); } bool empty() const { return size() == 0; } reference operator [](size_type pos) { return(*(begin() + pos)); } const_reference operator [](size_type pos) const { return *(begin() + pos); } void clear() { if(Capacity) { delete [] Items; Capacity = Size = 0; Items = 0; } } void reserve(size_type n) { if(capacity() < n) { expand(n); } } void push_back(const value_type& x) { if(size() == capacity()) { expand(); } (*this)[size()] = x; ++Size; } void resize(size_type n, value_type x) { if(n == size()) { return; } reserve(n); iterator ibegin, iend; if(n >= Size) { ibegin = this->end(); iend = this->begin() + n; } else { ibegin = this->begin() + n; iend = this->end(); } while(ibegin != iend) { *ibegin++ = x; } Size = n; } private: void expand(size_type capacity_hint = 0) { size_type new_capacity = (capacity() == 0) ? 256 : capacity() * 2; if(capacity_hint) { while(new_capacity < capacity_hint) { new_capacity *= 2; } } value_type *new_items = new value_type[new_capacity]; iterator ibegin = this->begin(); iterator iend = this->end(); value_type *ptr = new_items; while(ibegin != iend) { *ptr++ = *ibegin++; } if(Capacity) { delete [] Items; } Items = new_items; Capacity = new_capacity; } size_type Capacity; size_type Size; value_type* Items; }; #endif // __FTVector__ ftgl-2.1.3~rc5/src/FTList.h0000644000175000017500000000630211006143072012302 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTList__ #define __FTList__ #include "FTGL/ftgl.h" /** * Provides a non-STL alternative to the STL list */ template class FTList { public: typedef FT_LIST_ITEM_TYPE value_type; typedef value_type& reference; typedef const value_type& const_reference; typedef size_t size_type; /** * Constructor */ FTList() : listSize(0), tail(0) { tail = NULL; head = new Node; } /** * Destructor */ ~FTList() { Node* next; for(Node *walk = head; walk; walk = next) { next = walk->next; delete walk; } } /** * Get the number of items in the list */ size_type size() const { return listSize; } /** * Add an item to the end of the list */ void push_back(const value_type& item) { Node* node = new Node(item); if(head->next == NULL) { head->next = node; } if(tail) { tail->next = node; } tail = node; ++listSize; } /** * Get the item at the front of the list */ reference front() const { return head->next->payload; } /** * Get the item at the end of the list */ reference back() const { return tail->payload; } private: struct Node { Node() : next(NULL) {} Node(const value_type& item) : next(NULL) { payload = item; } Node* next; value_type payload; }; size_type listSize; Node* head; Node* tail; }; #endif // __FTList__ ftgl-2.1.3~rc5/src/FTFont/0000777000175000017500000000000011024234670012214 500000000000000ftgl-2.1.3~rc5/src/FTFont/FTBitmapFont.cpp0000644000175000017500000000577711023223547015151 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTBitmapFontImpl.h" // // FTBitmapFont // FTBitmapFont::FTBitmapFont(char const *fontFilePath) : FTFont(new FTBitmapFontImpl(this, fontFilePath)) {} FTBitmapFont::FTBitmapFont(unsigned char const *pBufferBytes, size_t bufferSizeInBytes) : FTFont(new FTBitmapFontImpl(this, pBufferBytes, bufferSizeInBytes)) {} FTBitmapFont::~FTBitmapFont() {} FTGlyph* FTBitmapFont::MakeGlyph(FT_GlyphSlot ftGlyph) { return new FTBitmapGlyph(ftGlyph); } // // FTBitmapFontImpl // template inline FTPoint FTBitmapFontImpl::RenderI(const T* string, const int len, FTPoint position, FTPoint spacing, int renderMode) { // Protect GL_BLEND glPushAttrib(GL_COLOR_BUFFER_BIT); // Protect glPixelStorei() calls (also in FTBitmapGlyphImpl::RenderImpl) glPushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT); glPixelStorei(GL_UNPACK_LSB_FIRST, GL_FALSE); glPixelStorei(GL_UNPACK_ALIGNMENT, 1); glDisable(GL_BLEND); FTPoint tmp = FTFontImpl::Render(string, len, position, spacing, renderMode); glPopClientAttrib(); glPopAttrib(); return tmp; } FTPoint FTBitmapFontImpl::Render(const char * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return RenderI(string, len, position, spacing, renderMode); } FTPoint FTBitmapFontImpl::Render(const wchar_t * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return RenderI(string, len, position, spacing, renderMode); } ftgl-2.1.3~rc5/src/FTFont/FTTextureFontImpl.h0000644000175000017500000001100511023224001015623 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTTextureFontImpl__ #define __FTTextureFontImpl__ #include "FTFontImpl.h" #include "FTVector.h" class FTTextureGlyph; class FTTextureFontImpl : public FTFontImpl { friend class FTTextureFont; protected: FTTextureFontImpl(FTFont *ftFont, const char* fontFilePath); FTTextureFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes); virtual ~FTTextureFontImpl(); /** * Set the char size for the current face. * * @param size the face size in points (1/72 inch) * @param res the resolution of the target device. * @return true if size was set correctly */ virtual bool FaceSize(const unsigned int size, const unsigned int res = 72); virtual FTPoint Render(const char *s, const int len, FTPoint position, FTPoint spacing, int renderMode); virtual FTPoint Render(const wchar_t *s, const int len, FTPoint position, FTPoint spacing, int renderMode); private: /** * Create an FTTextureGlyph object for the base class. */ FTGlyph* MakeGlyphImpl(FT_GlyphSlot ftGlyph); /** * Get the size of a block of memory required to layout the glyphs * * Calculates a width and height based on the glyph sizes and the * number of glyphs. It over estimates. */ inline void CalculateTextureSize(); /** * Creates a 'blank' OpenGL texture object. * * The format is GL_ALPHA and the params are * GL_TEXTURE_WRAP_S = GL_CLAMP * GL_TEXTURE_WRAP_T = GL_CLAMP * GL_TEXTURE_MAG_FILTER = GL_LINEAR * GL_TEXTURE_MIN_FILTER = GL_LINEAR * Note that mipmapping is NOT used */ inline GLuint CreateTexture(); /** * The maximum texture dimension on this OpenGL implemetation */ GLsizei maximumGLTextureSize; /** * The minimum texture width required to hold the glyphs */ GLsizei textureWidth; /** * The minimum texture height required to hold the glyphs */ GLsizei textureHeight; /** *An array of texture ids */ FTVector textureIDList; /** * The max height for glyphs in the current font */ int glyphHeight; /** * The max width for glyphs in the current font */ int glyphWidth; /** * A value to be added to the height and width to ensure that * glyphs don't overlap in the texture */ unsigned int padding; /** * */ unsigned int numGlyphs; /** */ unsigned int remGlyphs; /** */ int xOffset; /** */ int yOffset; /* Internal generic Render() implementation */ template inline FTPoint RenderI(const T *s, const int len, FTPoint position, FTPoint spacing, int mode); }; #endif // __FTTextureFontImpl__ ftgl-2.1.3~rc5/src/FTFont/FTBufferFontImpl.h0000644000175000017500000000541211023223240015405 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTBufferFontImpl__ #define __FTBufferFontImpl__ #include "FTFontImpl.h" class FTGlyph; class FTBuffer; class FTBufferFontImpl : public FTFontImpl { friend class FTBufferFont; protected: FTBufferFontImpl(FTFont *ftFont, const char* fontFilePath); FTBufferFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes); virtual ~FTBufferFontImpl(); virtual FTPoint Render(const char *s, const int len, FTPoint position, FTPoint spacing, int renderMode); virtual FTPoint Render(const wchar_t *s, const int len, FTPoint position, FTPoint spacing, int renderMode); virtual bool FaceSize(const unsigned int size, const unsigned int res); private: /** * Create an FTBufferGlyph object for the base class. */ FTGlyph* MakeGlyphImpl(FT_GlyphSlot ftGlyph); /* Internal generic Render() implementation */ template inline FTPoint RenderI(const T *s, const int len, FTPoint position, FTPoint spacing, int mode); /* Pixel buffer */ FTBuffer *buffer; static const int BUFFER_CACHE_SIZE = 16; /* Texture IDs */ GLuint idCache[BUFFER_CACHE_SIZE]; void *stringCache[BUFFER_CACHE_SIZE]; FTBBox bboxCache[BUFFER_CACHE_SIZE]; FTPoint advanceCache[BUFFER_CACHE_SIZE]; int lastString; }; #endif // __FTBufferFontImpl__ ftgl-2.1.3~rc5/src/FTFont/FTExtrudeFontImpl.h0000644000175000017500000000510511023223774015627 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTExtrudeFontImpl__ #define __FTExtrudeFontImpl__ #include "FTFontImpl.h" class FTGlyph; class FTExtrudeFontImpl : public FTFontImpl { friend class FTExtrudeFont; protected: FTExtrudeFontImpl(FTFont *ftFont, const char* fontFilePath); FTExtrudeFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes); /** * Set the extrusion distance for the font. * * @param d The extrusion distance. */ virtual void Depth(float d) { depth = d; } /** * Set the outset distance for the font. Only implemented by * FTOutlineFont, FTPolygonFont and FTExtrudeFont * * @param o The outset distance. */ virtual void Outset(float o) { front = back = o; } /** * Set the outset distance for the font. Only implemented by * FTExtrudeFont * * @param f The front outset distance. * @param b The back outset distance. */ virtual void Outset(float f, float b) { front = f; back = b; } private: /** * The extrusion distance for the font. */ float depth; /** * The outset distance (front and back) for the font. */ float front, back; }; #endif // __FTExtrudeFontImpl__ ftgl-2.1.3~rc5/src/FTFont/FTFont.cpp0000644000175000017500000002601711023223557014003 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTInternals.h" #include "FTUnicode.h" #include "FTFontImpl.h" #include "FTBitmapFontImpl.h" #include "FTExtrudeFontImpl.h" #include "FTOutlineFontImpl.h" #include "FTPixmapFontImpl.h" #include "FTPolygonFontImpl.h" #include "FTTextureFontImpl.h" #include "FTGlyphContainer.h" #include "FTFace.h" // // FTFont // FTFont::FTFont(char const *fontFilePath) { impl = new FTFontImpl(this, fontFilePath); } FTFont::FTFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes) { impl = new FTFontImpl(this, pBufferBytes, bufferSizeInBytes); } FTFont::FTFont(FTFontImpl *pImpl) { impl = pImpl; } FTFont::~FTFont() { delete impl; } bool FTFont::Attach(const char* fontFilePath) { return impl->Attach(fontFilePath); } bool FTFont::Attach(const unsigned char *pBufferBytes, size_t bufferSizeInBytes) { return impl->Attach(pBufferBytes, bufferSizeInBytes); } bool FTFont::FaceSize(const unsigned int size, const unsigned int res) { return impl->FaceSize(size, res); } unsigned int FTFont::FaceSize() const { return impl->FaceSize(); } void FTFont::Depth(float depth) { return impl->Depth(depth); } void FTFont::Outset(float outset) { return impl->Outset(outset); } void FTFont::Outset(float front, float back) { return impl->Outset(front, back); } void FTFont::GlyphLoadFlags(FT_Int flags) { return impl->GlyphLoadFlags(flags); } bool FTFont::CharMap(FT_Encoding encoding) { return impl->CharMap(encoding); } unsigned int FTFont::CharMapCount() const { return impl->CharMapCount(); } FT_Encoding* FTFont::CharMapList() { return impl->CharMapList(); } void FTFont::UseDisplayList(bool useList) { return impl->UseDisplayList(useList); } float FTFont::Ascender() const { return impl->Ascender(); } float FTFont::Descender() const { return impl->Descender(); } float FTFont::LineHeight() const { return impl->LineHeight(); } FTPoint FTFont::Render(const char * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return impl->Render(string, len, position, spacing, renderMode); } FTPoint FTFont::Render(const wchar_t * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return impl->Render(string, len, position, spacing, renderMode); } float FTFont::Advance(const char * string, const int len, FTPoint spacing) { return impl->Advance(string, len, spacing); } float FTFont::Advance(const wchar_t * string, const int len, FTPoint spacing) { return impl->Advance(string, len, spacing); } FTBBox FTFont::BBox(const char *string, const int len, FTPoint position, FTPoint spacing) { return impl->BBox(string, len, position, spacing); } FTBBox FTFont::BBox(const wchar_t *string, const int len, FTPoint position, FTPoint spacing) { return impl->BBox(string, len, position, spacing); } FT_Error FTFont::Error() const { return impl->err; } // // FTFontImpl // FTFontImpl::FTFontImpl(FTFont *ftFont, char const *fontFilePath) : face(fontFilePath), useDisplayLists(true), load_flags(FT_LOAD_DEFAULT), intf(ftFont), glyphList(0) { err = face.Error(); if(err == 0) { glyphList = new FTGlyphContainer(&face); } } FTFontImpl::FTFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : face(pBufferBytes, bufferSizeInBytes), useDisplayLists(true), load_flags(FT_LOAD_DEFAULT), intf(ftFont), glyphList(0) { err = face.Error(); if(err == 0) { glyphList = new FTGlyphContainer(&face); } } FTFontImpl::~FTFontImpl() { if(glyphList) { delete glyphList; } } bool FTFontImpl::Attach(const char* fontFilePath) { if(!face.Attach(fontFilePath)) { err = face.Error(); return false; } err = 0; return true; } bool FTFontImpl::Attach(const unsigned char *pBufferBytes, size_t bufferSizeInBytes) { if(!face.Attach(pBufferBytes, bufferSizeInBytes)) { err = face.Error(); return false; } err = 0; return true; } bool FTFontImpl::FaceSize(const unsigned int size, const unsigned int res) { if(glyphList != NULL) { delete glyphList; glyphList = NULL; } charSize = face.Size(size, res); err = face.Error(); if(err != 0) { return false; } glyphList = new FTGlyphContainer(&face); return true; } unsigned int FTFontImpl::FaceSize() const { return charSize.CharSize(); } void FTFontImpl::Depth(float depth) { ; } void FTFontImpl::Outset(float outset) { ; } void FTFontImpl::Outset(float front, float back) { ; } void FTFontImpl::GlyphLoadFlags(FT_Int flags) { load_flags = flags; } bool FTFontImpl::CharMap(FT_Encoding encoding) { bool result = glyphList->CharMap(encoding); err = glyphList->Error(); return result; } unsigned int FTFontImpl::CharMapCount() const { return face.CharMapCount(); } FT_Encoding* FTFontImpl::CharMapList() { return face.CharMapList(); } void FTFontImpl::UseDisplayList(bool useList) { useDisplayLists = useList; } float FTFontImpl::Ascender() const { return charSize.Ascender(); } float FTFontImpl::Descender() const { return charSize.Descender(); } float FTFontImpl::LineHeight() const { return charSize.Height(); } template inline FTBBox FTFontImpl::BBoxI(const T* string, const int len, FTPoint position, FTPoint spacing) { FTBBox totalBBox; /* Only compute the bounds if string is non-empty. */ if(string && ('\0' != string[0])) { // for multibyte - we can't rely on sizeof(T) == character FTUnicodeStringItr ustr(string); unsigned int thisChar = *ustr++; unsigned int nextChar = *ustr; if(CheckGlyph(thisChar)) { totalBBox = glyphList->BBox(thisChar); totalBBox += position; position += FTPoint(glyphList->Advance(thisChar, nextChar), 0.0); } /* Expand totalBox by each glyph in string */ for(int i = 1; (len < 0 && *ustr) || (len >= 0 && i < len); i++) { thisChar = *ustr++; nextChar = *ustr; if(CheckGlyph(thisChar)) { position += spacing; FTBBox tempBBox = glyphList->BBox(thisChar); tempBBox += position; totalBBox |= tempBBox; position += FTPoint(glyphList->Advance(thisChar, nextChar), 0.0); } } } return totalBBox; } FTBBox FTFontImpl::BBox(const char *string, const int len, FTPoint position, FTPoint spacing) { /* The chars need to be unsigned because they are cast to int later */ return BBoxI((const unsigned char *)string, len, position, spacing); } FTBBox FTFontImpl::BBox(const wchar_t *string, const int len, FTPoint position, FTPoint spacing) { return BBoxI(string, len, position, spacing); } template inline float FTFontImpl::AdvanceI(const T* string, const int len, FTPoint spacing) { float advance = 0.0f; FTUnicodeStringItr ustr(string); for(int i = 0; (len < 0 && *ustr) || (len >= 0 && i < len); i++) { unsigned int thisChar = *ustr++; unsigned int nextChar = *ustr; if(CheckGlyph(thisChar)) { advance += glyphList->Advance(thisChar, nextChar); } if(nextChar) { advance += spacing.Xf(); } } return advance; } float FTFontImpl::Advance(const char* string, const int len, FTPoint spacing) { /* The chars need to be unsigned because they are cast to int later */ return AdvanceI((const unsigned char *)string, len, spacing); } float FTFontImpl::Advance(const wchar_t* string, const int len, FTPoint spacing) { return AdvanceI(string, len, spacing); } template inline FTPoint FTFontImpl::RenderI(const T* string, const int len, FTPoint position, FTPoint spacing, int renderMode) { // for multibyte - we can't rely on sizeof(T) == character FTUnicodeStringItr ustr(string); for(int i = 0; (len < 0 && *ustr) || (len >= 0 && i < len); i++) { unsigned int thisChar = *ustr++; unsigned int nextChar = *ustr; if(CheckGlyph(thisChar)) { position += glyphList->Render(thisChar, nextChar, position, renderMode); } if(nextChar) { position += spacing; } } return position; } FTPoint FTFontImpl::Render(const char * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return RenderI((const unsigned char *)string, len, position, spacing, renderMode); } FTPoint FTFontImpl::Render(const wchar_t * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return RenderI(string, len, position, spacing, renderMode); } bool FTFontImpl::CheckGlyph(const unsigned int characterCode) { if(glyphList->Glyph(characterCode)) { return true; } unsigned int glyphIndex = glyphList->FontIndex(characterCode); FT_GlyphSlot ftSlot = face.Glyph(glyphIndex, load_flags); if(!ftSlot) { err = face.Error(); return false; } FTGlyph* tempGlyph = intf->MakeGlyph(ftSlot); if(!tempGlyph) { if(0 == err) { err = 0x13; } return false; } glyphList->Add(tempGlyph, characterCode); return true; } ftgl-2.1.3~rc5/src/FTFont/FTBufferFont.cpp0000644000175000017500000002265111024170703015130 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTBufferFontImpl.h" // // FTBufferFont // FTBufferFont::FTBufferFont(char const *fontFilePath) : FTFont(new FTBufferFontImpl(this, fontFilePath)) {} FTBufferFont::FTBufferFont(unsigned char const *pBufferBytes, size_t bufferSizeInBytes) : FTFont(new FTBufferFontImpl(this, pBufferBytes, bufferSizeInBytes)) {} FTBufferFont::~FTBufferFont() {} FTGlyph* FTBufferFont::MakeGlyph(FT_GlyphSlot ftGlyph) { FTBufferFontImpl *myimpl = dynamic_cast(impl); if(!myimpl) { return NULL; } return myimpl->MakeGlyphImpl(ftGlyph); } // // FTBufferFontImpl // FTBufferFontImpl::FTBufferFontImpl(FTFont *ftFont, const char* fontFilePath) : FTFontImpl(ftFont, fontFilePath), buffer(new FTBuffer()) { load_flags = FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP; glGenTextures(BUFFER_CACHE_SIZE, idCache); for(int i = 0; i < BUFFER_CACHE_SIZE; i++) { stringCache[i] = NULL; glBindTexture(GL_TEXTURE_2D, idCache[i]); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); } lastString = 0; } FTBufferFontImpl::FTBufferFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFontImpl(ftFont, pBufferBytes, bufferSizeInBytes), buffer(new FTBuffer()) { load_flags = FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP; glGenTextures(BUFFER_CACHE_SIZE, idCache); for(int i = 0; i < BUFFER_CACHE_SIZE; i++) { stringCache[i] = NULL; glBindTexture(GL_TEXTURE_2D, idCache[i]); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); } lastString = 0; } FTBufferFontImpl::~FTBufferFontImpl() { glDeleteTextures(BUFFER_CACHE_SIZE, idCache); for(int i = 0; i < BUFFER_CACHE_SIZE; i++) { if(stringCache[i]) { free(stringCache[i]); } } delete buffer; } FTGlyph* FTBufferFontImpl::MakeGlyphImpl(FT_GlyphSlot ftGlyph) { return new FTBufferGlyph(ftGlyph, buffer); } bool FTBufferFontImpl::FaceSize(const unsigned int size, const unsigned int res) { for(int i = 0; i < BUFFER_CACHE_SIZE; i++) { if(stringCache[i]) { free(stringCache[i]); stringCache[i] = NULL; } } return FTFontImpl::FaceSize(size, res); } static inline GLuint NextPowerOf2(GLuint in) { in -= 1; in |= in >> 16; in |= in >> 8; in |= in >> 4; in |= in >> 2; in |= in >> 1; return in + 1; } inline int StringCompare(void const *a, char const *b, int len) { return len < 0 ? strcmp((char const *)a, b) : strncmp((char const *)a, b, len); } inline int StringCompare(void const *a, wchar_t const *b, int len) { return len < 0 ? wcscmp((wchar_t const *)a, b) : wcsncmp((wchar_t const *)a, b, len); } inline char *StringCopy(char const *s, int len) { if(len < 0) { return strdup(s); } else { #ifdef HAVE_STRNDUP return strndup(s, len); #else char *s2 = (char*)malloc(len + 1); memcpy(s2, s, len); s2[len] = 0; return s2; #endif } } inline wchar_t *StringCopy(wchar_t const *s, int len) { if(len < 0) { #if defined HAVE_WCSDUP return wcsdup(s); #else len = (int)wcslen(s); #endif } wchar_t *s2 = (wchar_t *)malloc((len + 1) * sizeof(wchar_t)); memcpy(s2, s, len * sizeof(wchar_t)); s2[len] = 0; return s2; } template inline FTPoint FTBufferFontImpl::RenderI(const T* string, const int len, FTPoint position, FTPoint spacing, int renderMode) { const float padding = 3.0f; int width, height, texWidth, texHeight; int cacheIndex = -1; bool inCache = false; // Protect blending functions, GL_BLEND and GL_TEXTURE_2D glPushAttrib(GL_COLOR_BUFFER_BIT | GL_ENABLE_BIT); // Protect glPixelStorei() calls glPushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT); glEnable(GL_BLEND); glEnable(GL_TEXTURE_2D); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); // GL_ONE // Search whether the string is already in a texture we uploaded for(int n = 0; n < BUFFER_CACHE_SIZE; n++) { int i = (lastString + n + BUFFER_CACHE_SIZE) % BUFFER_CACHE_SIZE; if(stringCache[i] && !StringCompare(stringCache[i], string, len)) { cacheIndex = i; inCache = true; break; } } // If the string was not found, we need to put it in the cache and compute // its new bounding box. if(!inCache) { // FIXME: this cache is not very efficient. We should first expire // strings that are not used very often. cacheIndex = lastString; lastString = (lastString + 1) % BUFFER_CACHE_SIZE; if(stringCache[cacheIndex]) { free(stringCache[cacheIndex]); } // FIXME: only the first N bytes are copied; we want the first N chars. stringCache[cacheIndex] = StringCopy(string, len); bboxCache[cacheIndex] = BBox(string, len, FTPoint(), spacing); } FTBBox bbox = bboxCache[cacheIndex]; width = static_cast(bbox.Upper().X() - bbox.Lower().X() + padding + padding + 0.5); height = static_cast(bbox.Upper().Y() - bbox.Lower().Y() + padding + padding + 0.5); texWidth = NextPowerOf2(width); texHeight = NextPowerOf2(height); glBindTexture(GL_TEXTURE_2D, idCache[cacheIndex]); // If the string was not found, we need to render the text in a new // texture buffer, then upload it to the OpenGL layer. if(!inCache) { buffer->Size(texWidth, texHeight); buffer->Pos(FTPoint(padding, padding) - bbox.Lower()); advanceCache[cacheIndex] = FTFontImpl::Render(string, len, FTPoint(), spacing, renderMode); glBindTexture(GL_TEXTURE_2D, idCache[cacheIndex]); glPixelStorei(GL_UNPACK_LSB_FIRST, GL_FALSE); glPixelStorei(GL_UNPACK_ROW_LENGTH, 0); glPixelStorei(GL_UNPACK_ALIGNMENT, 1); /* TODO: use glTexSubImage2D later? */ glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, texWidth, texHeight, 0, GL_ALPHA, GL_UNSIGNED_BYTE, (GLvoid *)buffer->Pixels()); buffer->Size(0, 0); } FTPoint low = position + bbox.Lower(); FTPoint up = position + bbox.Upper(); glBegin(GL_QUADS); glNormal3f(0.0f, 0.0f, 1.0f); glTexCoord2f(padding / texWidth, (texHeight - height + padding) / texHeight); glVertex2f(low.Xf(), up.Yf()); glTexCoord2f(padding / texWidth, (texHeight - padding) / texHeight); glVertex2f(low.Xf(), low.Yf()); glTexCoord2f((width - padding) / texWidth, (texHeight - padding) / texHeight); glVertex2f(up.Xf(), low.Yf()); glTexCoord2f((width - padding) / texWidth, (texHeight - height + padding) / texHeight); glVertex2f(up.Xf(), up.Yf()); glEnd(); glPopClientAttrib(); glPopAttrib(); return position + advanceCache[cacheIndex]; } FTPoint FTBufferFontImpl::Render(const char * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return RenderI(string, len, position, spacing, renderMode); } FTPoint FTBufferFontImpl::Render(const wchar_t * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return RenderI(string, len, position, spacing, renderMode); } ftgl-2.1.3~rc5/src/FTFont/FTPolygonFontImpl.h0000644000175000017500000000400211023224000015610 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTPolygonFontImpl__ #define __FTPolygonFontImpl__ #include "FTFontImpl.h" class FTGlyph; class FTPolygonFontImpl : public FTFontImpl { friend class FTPolygonFont; protected: FTPolygonFontImpl(FTFont *ftFont, const char* fontFilePath); FTPolygonFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes); /** * Set the outset distance for the font. Only implemented by * FTOutlineFont, FTPolygonFont and FTExtrudeFont * * @param depth The outset distance. */ virtual void Outset(float o) { outset = o; } private: /** * The outset distance (front and back) for the font. */ float outset; }; #endif // __FTPolygonFontImpl__ ftgl-2.1.3~rc5/src/FTFont/FTOutlineFontImpl.h0000644000175000017500000000506011023223776015630 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTOutlineFontImpl__ #define __FTOutlineFontImpl__ #include "FTFontImpl.h" class FTGlyph; class FTOutlineFontImpl : public FTFontImpl { friend class FTOutlineFont; protected: FTOutlineFontImpl(FTFont *ftFont, const char* fontFilePath); FTOutlineFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes); /** * Set the outset distance for the font. Only implemented by * FTOutlineFont, FTPolygonFont and FTExtrudeFont * * @param outset The outset distance. */ virtual void Outset(float o) { outset = o; } virtual FTPoint Render(const char *s, const int len, FTPoint position, FTPoint spacing, int renderMode); virtual FTPoint Render(const wchar_t *s, const int len, FTPoint position, FTPoint spacing, int renderMode); private: /** * The outset distance for the font. */ float outset; /* Internal generic Render() implementation */ template inline FTPoint RenderI(const T *s, const int len, FTPoint position, FTPoint spacing, int mode); }; #endif // __FTOutlineFontImpl__ ftgl-2.1.3~rc5/src/FTFont/FTFontGlue.cpp0000644000175000017500000001701011023223565014610 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Éric Beets * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTInternals.h" static const FTPoint static_ftpoint; static const FTBBox static_ftbbox; FTGL_BEGIN_C_DECLS #define C_TOR(cname, cargs, cxxname, cxxarg, cxxtype) \ FTGLfont* cname cargs \ { \ cxxname *f = new cxxname cxxarg; \ if(f->Error()) \ { \ delete f; \ return NULL; \ } \ FTGLfont *ftgl = (FTGLfont *)malloc(sizeof(FTGLfont)); \ ftgl->ptr = f; \ ftgl->type = cxxtype; \ return ftgl; \ } // FTBitmapFont::FTBitmapFont(); C_TOR(ftglCreateBitmapFont, (const char *fontname), FTBitmapFont, (fontname), FONT_BITMAP); // FTBufferFont::FTBufferFont(); C_TOR(ftglCreateBufferFont, (const char *fontname), FTBufferFont, (fontname), FONT_BUFFER); // FTExtrudeFont::FTExtrudeFont(); C_TOR(ftglCreateExtrudeFont, (const char *fontname), FTExtrudeFont, (fontname), FONT_EXTRUDE); // FTOutlineFont::FTOutlineFont(); C_TOR(ftglCreateOutlineFont, (const char *fontname), FTOutlineFont, (fontname), FONT_OUTLINE); // FTPixmapFont::FTPixmapFont(); C_TOR(ftglCreatePixmapFont, (const char *fontname), FTPixmapFont, (fontname), FONT_PIXMAP); // FTPolygonFont::FTPolygonFont(); C_TOR(ftglCreatePolygonFont, (const char *fontname), FTPolygonFont, (fontname), FONT_POLYGON); // FTTextureFont::FTTextureFont(); C_TOR(ftglCreateTextureFont, (const char *fontname), FTTextureFont, (fontname), FONT_TEXTURE); // FTCustomFont::FTCustomFont(); class FTCustomFont : public FTFont { public: FTCustomFont(char const *fontFilePath, void *p, FTGLglyph * (*makeglyph) (FT_GlyphSlot, void *)) : FTFont(fontFilePath), data(p), makeglyphCallback(makeglyph) {} ~FTCustomFont() {} FTGlyph* MakeGlyph(FT_GlyphSlot slot) { FTGLglyph *g = makeglyphCallback(slot, data); FTGlyph *glyph = g->ptr; // XXX: we no longer need g, and no one will free it for us. Not // very elegant, and we need to make sure no one else will try to // use it. free(g); return glyph; } private: void *data; FTGLglyph *(*makeglyphCallback) (FT_GlyphSlot, void *); }; C_TOR(ftglCreateCustomFont, (char const *fontFilePath, void *data, FTGLglyph * (*makeglyphCallback) (FT_GlyphSlot, void *)), FTCustomFont, (fontFilePath, data, makeglyphCallback), FONT_CUSTOM); #define C_FUN(cret, cname, cargs, cxxerr, cxxname, cxxarg) \ cret cname cargs \ { \ if(!f || !f->ptr) \ { \ fprintf(stderr, "FTGL warning: NULL pointer in %s\n", #cname); \ cxxerr; \ } \ return f->ptr->cxxname cxxarg; \ } // FTFont::~FTFont(); void ftglDestroyFont(FTGLfont *f) { if(!f || !f->ptr) { fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__); return; } delete f->ptr; free(f); } // bool FTFont::Attach(const char* fontFilePath); C_FUN(int, ftglAttachFile, (FTGLfont *f, const char* path), return 0, Attach, (path)); // bool FTFont::Attach(const unsigned char *pBufferBytes, // size_t bufferSizeInBytes); C_FUN(int, ftglAttachData, (FTGLfont *f, const unsigned char *p, size_t s), return 0, Attach, (p, s)); // void FTFont::GlyphLoadFlags(FT_Int flags); C_FUN(void, ftglSetFontGlyphLoadFlags, (FTGLfont *f, FT_Int flags), return, GlyphLoadFlags, (flags)); // bool FTFont::CharMap(FT_Encoding encoding); C_FUN(int, ftglSetFontCharMap, (FTGLfont *f, FT_Encoding enc), return 0, CharMap, (enc)); // unsigned int FTFont::CharMapCount(); C_FUN(unsigned int, ftglGetFontCharMapCount, (FTGLfont *f), return 0, CharMapCount, ()); // FT_Encoding* FTFont::CharMapList(); C_FUN(FT_Encoding *, ftglGetFontCharMapList, (FTGLfont* f), return NULL, CharMapList, ()); // virtual bool FTFont::FaceSize(const unsigned int size, // const unsigned int res = 72); C_FUN(int, ftglSetFontFaceSize, (FTGLfont *f, unsigned int s, unsigned int r), return 0, FaceSize, (s, r > 0 ? r : 72)); // unsigned int FTFont::FaceSize() const; // XXX: need to call FaceSize() as FTFont::FaceSize() because of FTGLTexture C_FUN(unsigned int, ftglGetFontFaceSize, (FTGLfont *f), return 0, FTFont::FaceSize, ()); // virtual void FTFont::Depth(float depth); C_FUN(void, ftglSetFontDepth, (FTGLfont *f, float d), return, Depth, (d)); // virtual void FTFont::Outset(float front, float back); C_FUN(void, ftglSetFontOutset, (FTGLfont *f, float front, float back), return, FTFont::Outset, (front, back)); // void FTFont::UseDisplayList(bool useList); C_FUN(void, ftglSetFontDisplayList, (FTGLfont *f, int l), return, UseDisplayList, (l != 0)); // float FTFont::Ascender() const; C_FUN(float, ftglGetFontAscender, (FTGLfont *f), return 0.f, Ascender, ()); // float FTFont::Descender() const; C_FUN(float, ftglGetFontDescender, (FTGLfont *f), return 0.f, Descender, ()); // float FTFont::LineHeight() const; C_FUN(float, ftglGetFontLineHeight, (FTGLfont *f), return 0.f, LineHeight, ()); // void FTFont::BBox(const char* string, float& llx, float& lly, float& llz, // float& urx, float& ury, float& urz); extern "C++" { C_FUN(static FTBBox, _ftglGetFontBBox, (FTGLfont *f, char const *s, int len), return static_ftbbox, BBox, (s, len)); } void ftglGetFontBBox(FTGLfont *f, const char* s, int len, float c[6]) { FTBBox ret = _ftglGetFontBBox(f, s, len); FTPoint lower = ret.Lower(), upper = ret.Upper(); c[0] = lower.Xf(); c[1] = lower.Yf(); c[2] = lower.Zf(); c[3] = upper.Xf(); c[4] = upper.Yf(); c[5] = upper.Zf(); } // float FTFont::Advance(const char* string); C_FUN(float, ftglGetFontAdvance, (FTGLfont *f, char const *s), return 0.0, Advance, (s)); // virtual void Render(const char* string, int renderMode); extern "C++" { C_FUN(static FTPoint, _ftglRenderFont, (FTGLfont *f, char const *s, int len, FTPoint pos, FTPoint spacing, int mode), return static_ftpoint, Render, (s, len, pos, spacing, mode)); } void ftglRenderFont(FTGLfont *f, const char *s, int mode) { _ftglRenderFont(f, s, -1, FTPoint(), FTPoint(), mode); } // FT_Error FTFont::Error() const; C_FUN(FT_Error, ftglGetFontError, (FTGLfont *f), return -1, Error, ()); FTGL_END_C_DECLS ftgl-2.1.3~rc5/src/FTFont/FTExtrudeFont.cpp0000644000175000017500000000503311023223555015335 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTExtrudeFontImpl.h" // // FTExtrudeFont // FTExtrudeFont::FTExtrudeFont(char const *fontFilePath) : FTFont(new FTExtrudeFontImpl(this, fontFilePath)) {} FTExtrudeFont::FTExtrudeFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFont(new FTExtrudeFontImpl(this, pBufferBytes, bufferSizeInBytes)) {} FTExtrudeFont::~FTExtrudeFont() {} FTGlyph* FTExtrudeFont::MakeGlyph(FT_GlyphSlot ftGlyph) { FTExtrudeFontImpl *myimpl = dynamic_cast(impl); if(!myimpl) { return NULL; } return new FTExtrudeGlyph(ftGlyph, myimpl->depth, myimpl->front, myimpl->back, myimpl->useDisplayLists); } // // FTExtrudeFontImpl // FTExtrudeFontImpl::FTExtrudeFontImpl(FTFont *ftFont, const char* fontFilePath) : FTFontImpl(ftFont, fontFilePath), depth(0.0f), front(0.0f), back(0.0f) { load_flags = FT_LOAD_NO_HINTING; } FTExtrudeFontImpl::FTExtrudeFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFontImpl(ftFont, pBufferBytes, bufferSizeInBytes), depth(0.0f), front(0.0f), back(0.0f) { load_flags = FT_LOAD_NO_HINTING; } ftgl-2.1.3~rc5/src/FTFont/FTPolygonFont.cpp0000644000175000017500000000471711023223573015354 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTPolygonFontImpl.h" // // FTPolygonFont // FTPolygonFont::FTPolygonFont(char const *fontFilePath) : FTFont(new FTPolygonFontImpl(this, fontFilePath)) {} FTPolygonFont::FTPolygonFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFont(new FTPolygonFontImpl(this, pBufferBytes, bufferSizeInBytes)) {} FTPolygonFont::~FTPolygonFont() {} FTGlyph* FTPolygonFont::MakeGlyph(FT_GlyphSlot ftGlyph) { FTPolygonFontImpl *myimpl = dynamic_cast(impl); if(!myimpl) { return NULL; } return new FTPolygonGlyph(ftGlyph, myimpl->outset, myimpl->useDisplayLists); } // // FTPolygonFontImpl // FTPolygonFontImpl::FTPolygonFontImpl(FTFont *ftFont, const char* fontFilePath) : FTFontImpl(ftFont, fontFilePath), outset(0.0f) { load_flags = FT_LOAD_NO_HINTING; } FTPolygonFontImpl::FTPolygonFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFontImpl(ftFont, pBufferBytes, bufferSizeInBytes), outset(0.0f) { load_flags = FT_LOAD_NO_HINTING; } ftgl-2.1.3~rc5/src/FTFont/FTBitmapFontImpl.h0000644000175000017500000000447611023223773015434 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTBitmapFontImpl__ #define __FTBitmapFontImpl__ #include "FTFontImpl.h" class FTGlyph; class FTBitmapFontImpl : public FTFontImpl { friend class FTBitmapFont; protected: FTBitmapFontImpl(FTFont *ftFont, const char* fontFilePath) : FTFontImpl(ftFont, fontFilePath) {}; FTBitmapFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFontImpl(ftFont, pBufferBytes, bufferSizeInBytes) {}; virtual FTPoint Render(const char *s, const int len, FTPoint position, FTPoint spacing, int renderMode); virtual FTPoint Render(const wchar_t *s, const int len, FTPoint position, FTPoint spacing, int renderMode); private: /* Internal generic Render() implementation */ template inline FTPoint RenderI(const T *s, const int len, FTPoint position, FTPoint spacing, int mode); }; #endif // __FTBitmapFontImpl__ ftgl-2.1.3~rc5/src/FTFont/FTPixmapFontImpl.h0000644000175000017500000000430711023223777015453 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTPixmapFontImpl__ #define __FTPixmapFontImpl__ #include "FTFontImpl.h" class FTGlyph; class FTPixmapFontImpl : public FTFontImpl { friend class FTPixmapFont; protected: FTPixmapFontImpl(FTFont *ftFont, const char* fontFilePath); FTPixmapFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes); virtual FTPoint Render(const char *s, const int len, FTPoint position, FTPoint spacing, int renderMode); virtual FTPoint Render(const wchar_t *s, const int len, FTPoint position, FTPoint spacing, int renderMode); private: /* Internal generic Render() implementation */ template inline FTPoint RenderI(const T *s, const int len, FTPoint position, FTPoint spacing, int mode); }; #endif // __FTPixmapFontImpl__ ftgl-2.1.3~rc5/src/FTFont/FTOutlineFont.cpp0000644000175000017500000000733211023223567015343 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTOutlineFontImpl.h" // // FTOutlineFont // FTOutlineFont::FTOutlineFont(char const *fontFilePath) : FTFont(new FTOutlineFontImpl(this, fontFilePath)) {} FTOutlineFont::FTOutlineFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFont(new FTOutlineFontImpl(this, pBufferBytes, bufferSizeInBytes)) {} FTOutlineFont::~FTOutlineFont() {} FTGlyph* FTOutlineFont::MakeGlyph(FT_GlyphSlot ftGlyph) { FTOutlineFontImpl *myimpl = dynamic_cast(impl); if(!myimpl) { return NULL; } return new FTOutlineGlyph(ftGlyph, myimpl->outset, myimpl->useDisplayLists); } // // FTOutlineFontImpl // FTOutlineFontImpl::FTOutlineFontImpl(FTFont *ftFont, const char* fontFilePath) : FTFontImpl(ftFont, fontFilePath), outset(0.0f) { load_flags = FT_LOAD_NO_HINTING; } FTOutlineFontImpl::FTOutlineFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFontImpl(ftFont, pBufferBytes, bufferSizeInBytes), outset(0.0f) { load_flags = FT_LOAD_NO_HINTING; } template inline FTPoint FTOutlineFontImpl::RenderI(const T* string, const int len, FTPoint position, FTPoint spacing, int renderMode) { // Protect GL_TEXTURE_2D, glHint(), GL_LINE_SMOOTH and blending functions glPushAttrib(GL_ENABLE_BIT | GL_HINT_BIT | GL_LINE_BIT | GL_COLOR_BUFFER_BIT); glDisable(GL_TEXTURE_2D); glEnable(GL_LINE_SMOOTH); glHint(GL_LINE_SMOOTH_HINT, GL_DONT_CARE); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); // GL_ONE FTPoint tmp = FTFontImpl::Render(string, len, position, spacing, renderMode); glPopAttrib(); return tmp; } FTPoint FTOutlineFontImpl::Render(const char * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return RenderI(string, len, position, spacing, renderMode); } FTPoint FTOutlineFontImpl::Render(const wchar_t * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return RenderI(string, len, position, spacing, renderMode); } ftgl-2.1.3~rc5/src/FTFont/FTPixmapFont.cpp0000644000175000017500000000753711023223571015164 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTPixmapFontImpl.h" // // FTPixmapFont // FTPixmapFont::FTPixmapFont(char const *fontFilePath) : FTFont(new FTPixmapFontImpl(this, fontFilePath)) {} FTPixmapFont::FTPixmapFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFont(new FTPixmapFontImpl(this, pBufferBytes, bufferSizeInBytes)) {} FTPixmapFont::~FTPixmapFont() {} FTGlyph* FTPixmapFont::MakeGlyph(FT_GlyphSlot ftGlyph) { return new FTPixmapGlyph(ftGlyph); } // // FTPixmapFontImpl // FTPixmapFontImpl::FTPixmapFontImpl(FTFont *ftFont, const char* fontFilePath) : FTFontImpl(ftFont, fontFilePath) { load_flags = FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP; } FTPixmapFontImpl::FTPixmapFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFontImpl(ftFont, pBufferBytes, bufferSizeInBytes) { load_flags = FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP; } template inline FTPoint FTPixmapFontImpl::RenderI(const T* string, const int len, FTPoint position, FTPoint spacing, int renderMode) { // Protect GL_TEXTURE_2D and GL_BLEND, glPixelTransferf(), and blending // functions. glPushAttrib(GL_ENABLE_BIT | GL_PIXEL_MODE_BIT | GL_COLOR_BUFFER_BIT); // Protect glPixelStorei() calls (made by FTPixmapGlyphImpl::RenderImpl). glPushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glDisable(GL_TEXTURE_2D); GLfloat ftglColour[4]; glGetFloatv(GL_CURRENT_RASTER_COLOR, ftglColour); glPixelTransferf(GL_RED_SCALE, ftglColour[0]); glPixelTransferf(GL_GREEN_SCALE, ftglColour[1]); glPixelTransferf(GL_BLUE_SCALE, ftglColour[2]); glPixelTransferf(GL_ALPHA_SCALE, ftglColour[3]); FTPoint tmp = FTFontImpl::Render(string, len, position, spacing, renderMode); glPopClientAttrib(); glPopAttrib(); return tmp; } FTPoint FTPixmapFontImpl::Render(const char * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return RenderI(string, len, position, spacing, renderMode); } FTPoint FTPixmapFontImpl::Render(const wchar_t * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return RenderI(string, len, position, spacing, renderMode); } ftgl-2.1.3~rc5/src/FTFont/FTFontImpl.h0000644000175000017500000001135311023223775014271 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTFontImpl__ #define __FTFontImpl__ #include "FTGL/ftgl.h" #include "FTFace.h" class FTGlyphContainer; class FTGlyph; class FTFontImpl { friend class FTFont; protected: FTFontImpl(FTFont *ftFont, char const *fontFilePath); FTFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes); virtual ~FTFontImpl(); virtual bool Attach(const char* fontFilePath); virtual bool Attach(const unsigned char *pBufferBytes, size_t bufferSizeInBytes); virtual void GlyphLoadFlags(FT_Int flags); virtual bool CharMap(FT_Encoding encoding); virtual unsigned int CharMapCount() const; virtual FT_Encoding* CharMapList(); virtual void UseDisplayList(bool useList); virtual float Ascender() const; virtual float Descender() const; virtual float LineHeight() const; virtual bool FaceSize(const unsigned int size, const unsigned int res); virtual unsigned int FaceSize() const; virtual void Depth(float depth); virtual void Outset(float outset); virtual void Outset(float front, float back); virtual FTBBox BBox(const char *s, const int len, FTPoint, FTPoint); virtual FTBBox BBox(const wchar_t *s, const int len, FTPoint, FTPoint); virtual float Advance(const char *s, const int len, FTPoint); virtual float Advance(const wchar_t *s, const int len, FTPoint); virtual FTPoint Render(const char *s, const int len, FTPoint, FTPoint, int); virtual FTPoint Render(const wchar_t *s, const int len, FTPoint, FTPoint, int); /** * Current face object */ FTFace face; /** * Current size object */ FTSize charSize; /** * Flag to enable or disable the use of Display Lists inside FTGL * true turns ON display lists. * false turns OFF display lists. */ bool useDisplayLists; /** * The default glyph loading flags. */ FT_Int load_flags; /** * Current error code. Zero means no error. */ FT_Error err; private: /** * A link back to the interface of which we are the implementation. */ FTFont *intf; /** * Check that the glyph at chr exist. If not load it. * * @param chr character index * @return true if the glyph can be created. */ bool CheckGlyph(const unsigned int chr); /** * An object that holds a list of glyphs */ FTGlyphContainer* glyphList; /** * Current pen or cursor position; */ FTPoint pen; /* Internal generic BBox() implementation */ template inline FTBBox BBoxI(const T *s, const int len, FTPoint position, FTPoint spacing); /* Internal generic Advance() implementation */ template inline float AdvanceI(const T *s, const int len, FTPoint spacing); /* Internal generic Render() implementation */ template inline FTPoint RenderI(const T *s, const int len, FTPoint position, FTPoint spacing, int mode); }; #endif // __FTFontImpl__ ftgl-2.1.3~rc5/src/FTFont/FTTextureFont.cpp0000644000175000017500000001644711023223574015371 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include #include // For memset #include "FTGL/ftgl.h" #include "FTInternals.h" #include "../FTGlyph/FTTextureGlyphImpl.h" #include "./FTTextureFontImpl.h" // // FTTextureFont // FTTextureFont::FTTextureFont(char const *fontFilePath) : FTFont(new FTTextureFontImpl(this, fontFilePath)) {} FTTextureFont::FTTextureFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFont(new FTTextureFontImpl(this, pBufferBytes, bufferSizeInBytes)) {} FTTextureFont::~FTTextureFont() {} FTGlyph* FTTextureFont::MakeGlyph(FT_GlyphSlot ftGlyph) { FTTextureFontImpl *myimpl = dynamic_cast(impl); if(!myimpl) { return NULL; } return myimpl->MakeGlyphImpl(ftGlyph); } // // FTTextureFontImpl // static inline GLuint NextPowerOf2(GLuint in) { in -= 1; in |= in >> 16; in |= in >> 8; in |= in >> 4; in |= in >> 2; in |= in >> 1; return in + 1; } FTTextureFontImpl::FTTextureFontImpl(FTFont *ftFont, const char* fontFilePath) : FTFontImpl(ftFont, fontFilePath), maximumGLTextureSize(0), textureWidth(0), textureHeight(0), glyphHeight(0), glyphWidth(0), padding(3), xOffset(0), yOffset(0) { load_flags = FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP; remGlyphs = numGlyphs = face.GlyphCount(); } FTTextureFontImpl::FTTextureFontImpl(FTFont *ftFont, const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFontImpl(ftFont, pBufferBytes, bufferSizeInBytes), maximumGLTextureSize(0), textureWidth(0), textureHeight(0), glyphHeight(0), glyphWidth(0), padding(3), xOffset(0), yOffset(0) { load_flags = FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP; remGlyphs = numGlyphs = face.GlyphCount(); } FTTextureFontImpl::~FTTextureFontImpl() { if(textureIDList.size()) { glDeleteTextures((GLsizei)textureIDList.size(), (const GLuint*)&textureIDList[0]); } } FTGlyph* FTTextureFontImpl::MakeGlyphImpl(FT_GlyphSlot ftGlyph) { glyphHeight = static_cast(charSize.Height() + 0.5); glyphWidth = static_cast(charSize.Width() + 0.5); if(glyphHeight < 1) glyphHeight = 1; if(glyphWidth < 1) glyphWidth = 1; if(textureIDList.empty()) { textureIDList.push_back(CreateTexture()); xOffset = yOffset = padding; } if(xOffset > (textureWidth - glyphWidth)) { xOffset = padding; yOffset += glyphHeight; if(yOffset > (textureHeight - glyphHeight)) { textureIDList.push_back(CreateTexture()); yOffset = padding; } } FTTextureGlyph* tempGlyph = new FTTextureGlyph(ftGlyph, textureIDList[textureIDList.size() - 1], xOffset, yOffset, textureWidth, textureHeight); xOffset += static_cast(tempGlyph->BBox().Upper().X() - tempGlyph->BBox().Lower().X() + padding + 0.5); --remGlyphs; return tempGlyph; } void FTTextureFontImpl::CalculateTextureSize() { if(!maximumGLTextureSize) { maximumGLTextureSize = 1024; glGetIntegerv(GL_MAX_TEXTURE_SIZE, (GLint*)&maximumGLTextureSize); assert(maximumGLTextureSize); // If you hit this then you have an invalid OpenGL context. } textureWidth = NextPowerOf2((remGlyphs * glyphWidth) + (padding * 2)); textureWidth = textureWidth > maximumGLTextureSize ? maximumGLTextureSize : textureWidth; int h = static_cast((textureWidth - (padding * 2)) / glyphWidth + 0.5); textureHeight = NextPowerOf2(((numGlyphs / h) + 1) * glyphHeight); textureHeight = textureHeight > maximumGLTextureSize ? maximumGLTextureSize : textureHeight; } GLuint FTTextureFontImpl::CreateTexture() { CalculateTextureSize(); int totalMemory = textureWidth * textureHeight; unsigned char* textureMemory = new unsigned char[totalMemory]; memset(textureMemory, 0, totalMemory); GLuint textID; glGenTextures(1, (GLuint*)&textID); glBindTexture(GL_TEXTURE_2D, textID); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, textureWidth, textureHeight, 0, GL_ALPHA, GL_UNSIGNED_BYTE, textureMemory); delete [] textureMemory; return textID; } bool FTTextureFontImpl::FaceSize(const unsigned int size, const unsigned int res) { if(!textureIDList.empty()) { glDeleteTextures((GLsizei)textureIDList.size(), (const GLuint*)&textureIDList[0]); textureIDList.clear(); remGlyphs = numGlyphs = face.GlyphCount(); } return FTFontImpl::FaceSize(size, res); } template inline FTPoint FTTextureFontImpl::RenderI(const T* string, const int len, FTPoint position, FTPoint spacing, int renderMode) { // Protect GL_TEXTURE_2D, GL_BLEND and blending functions glPushAttrib(GL_ENABLE_BIT | GL_COLOR_BUFFER_BIT); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); // GL_ONE glEnable(GL_TEXTURE_2D); FTTextureGlyphImpl::ResetActiveTexture(); FTPoint tmp = FTFontImpl::Render(string, len, position, spacing, renderMode); glPopAttrib(); return tmp; } FTPoint FTTextureFontImpl::Render(const char * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return RenderI(string, len, position, spacing, renderMode); } FTPoint FTTextureFontImpl::Render(const wchar_t * string, const int len, FTPoint position, FTPoint spacing, int renderMode) { return RenderI(string, len, position, spacing, renderMode); } ftgl-2.1.3~rc5/src/FTLayout/0000777000175000017500000000000011024234670012563 500000000000000ftgl-2.1.3~rc5/src/FTLayout/FTLayoutGlue.cpp0000644000175000017500000001255111023223643015530 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Éric Beets * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTInternals.h" static const FTBBox static_ftbbox; FTGL_BEGIN_C_DECLS #define C_TOR(cname, cargs, cxxname, cxxarg, cxxtype) \ FTGLlayout* cname cargs \ { \ cxxname *l = new cxxname cxxarg; \ if(l->Error()) \ { \ delete l; \ return NULL; \ } \ FTGLlayout *ftgl = (FTGLlayout *)malloc(sizeof(FTGLlayout)); \ ftgl->ptr = l; \ ftgl->type = cxxtype; \ return ftgl; \ } // FTSimpleLayout::FTSimpleLayout(); C_TOR(ftglCreateSimpleLayout, (), FTSimpleLayout, (), LAYOUT_SIMPLE); #define C_FUN(cret, cname, cargs, cxxerr, cxxname, cxxarg) \ cret cname cargs \ { \ if(!l || !l->ptr) \ { \ fprintf(stderr, "FTGL warning: NULL pointer in %s\n", #cname); \ cxxerr; \ } \ return l->ptr->cxxname cxxarg; \ } // FTLayout::~FTLayout(); void ftglDestroyLayout(FTGLlayout *l) { if(!l || !l->ptr) { fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__); return; } delete l->ptr; free(l); } // virtual FTBBox FTLayout::BBox(const char* string) extern "C++" { C_FUN(static FTBBox, _ftgGetlLayoutBBox, (FTGLlayout *l, const char *s), return static_ftbbox, BBox, (s)); } void ftgGetlLayoutBBox(FTGLlayout *l, const char * s, float c[6]) { FTBBox ret = _ftgGetlLayoutBBox(l, s); FTPoint lower = ret.Lower(), upper = ret.Upper(); c[0] = lower.Xf(); c[1] = lower.Yf(); c[2] = lower.Zf(); c[3] = upper.Xf(); c[4] = upper.Yf(); c[5] = upper.Zf(); } // virtual void FTLayout::Render(const char* string, int renderMode); C_FUN(void, ftglRenderLayout, (FTGLlayout *l, const char *s, int r), return, Render, (s, r)); // FT_Error FTLayout::Error() const; C_FUN(FT_Error, ftglGetLayoutError, (FTGLlayout *l), return -1, Error, ()); // void FTSimpleLayout::SetFont(FTFont *fontInit) void ftglSetLayoutFont(FTGLlayout *l, FTGLfont *font) { if(!l || !l->ptr) { fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__); return; } if(l->type != FTGL::LAYOUT_SIMPLE) { fprintf(stderr, "FTGL warning: %s not implemented for %d\n", __FUNCTION__, l->type); } l->font = font; return dynamic_cast(l->ptr)->SetFont(font->ptr); } // FTFont *FTSimpleLayout::GetFont() FTGLfont *ftglGetLayoutFont(FTGLlayout *l) { if(!l || !l->ptr) { fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__); return NULL; } if(l->type != FTGL::LAYOUT_SIMPLE) { fprintf(stderr, "FTGL warning: %s not implemented for %d\n", __FUNCTION__, l->type); } return l->font; } #undef C_FUN #define C_FUN(cret, cname, cargs, cxxerr, cxxname, cxxarg) \ cret cname cargs \ { \ if(!l || !l->ptr) \ { \ fprintf(stderr, "FTGL warning: NULL pointer in %s\n", #cname); \ cxxerr; \ } \ if(l->type != FTGL::LAYOUT_SIMPLE) \ { \ fprintf(stderr, "FTGL warning: %s not implemented for %d\n", \ __FUNCTION__, l->type); \ cxxerr; \ } \ return dynamic_cast(l->ptr)->cxxname cxxarg; \ } // void FTSimpleLayout::SetLineLength(const float LineLength); C_FUN(void, ftglSetLayoutLineLength, (FTGLlayout *l, const float length), return, SetLineLength, (length)); // float FTSimpleLayout::GetLineLength() const C_FUN(float, ftglGetLayoutLineLength, (FTGLlayout *l), return 0.0f, GetLineLength, ()); // void FTSimpleLayout::SetAlignment(const TextAlignment Alignment) C_FUN(void, ftglSetLayoutAlignment, (FTGLlayout *l, const int a), return, SetAlignment, ((FTGL::TextAlignment)a)); // TextAlignment FTSimpleLayout::GetAlignment() const C_FUN(int, ftglGetLayoutAlignement, (FTGLlayout *l), return FTGL::ALIGN_LEFT, GetAlignment, ()); // void FTSimpleLayout::SetLineSpacing(const float LineSpacing) C_FUN(void, ftglSetLayoutLineSpacing, (FTGLlayout *l, const float f), return, SetLineSpacing, (f)); FTGL_END_C_DECLS ftgl-2.1.3~rc5/src/FTLayout/FTSimpleLayoutImpl.h0000644000175000017500000002311311023223432016344 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTSimpleLayoutImpl__ #define __FTSimpleLayoutImpl__ #include "FTLayoutImpl.h" class FTFont; class FTSimpleLayoutImpl : public FTLayoutImpl { friend class FTSimpleLayout; protected: FTSimpleLayoutImpl(); virtual ~FTSimpleLayoutImpl() {}; virtual FTBBox BBox(const char* string, const int len, FTPoint position); virtual FTBBox BBox(const wchar_t* string, const int len, FTPoint position); virtual void Render(const char *string, const int len, FTPoint position, int renderMode); virtual void Render(const wchar_t *string, const int len, FTPoint position, int renderMode); /** * Render a string of characters and distribute extra space amongst * the whitespace regions of the string. * * @param string A buffer of wchar_t characters to output. * @param len The length of the string. If < 0 then all characters * will be displayed until a null character is encountered. * @param position TODO * @param renderMode Render mode to display * @param extraSpace The amount of extra space to distribute amongst * the characters. */ virtual void RenderSpace(const char *string, const int len, FTPoint position, int renderMode, const float extraSpace); /** * Render a string of characters and distribute extra space amongst * the whitespace regions of the string. * * @param string A buffer of wchar_t characters to output. * @param len The length of the string. If < 0 then all characters * will be displayed until a null character is encountered. * @param position TODO * @param renderMode Render mode to display * @param extraSpace The amount of extra space to distribute amongst * the characters. */ virtual void RenderSpace(const wchar_t *string, const int len, FTPoint position, int renderMode, const float extraSpace); private: /** * Either render a string of characters and wrap lines * longer than a threshold or compute the bounds * of a string of characters when wrapped. The functionality * of this method is exposed by the BBoxWrapped and * RenderWrapped methods. * * @param buf A char string to output. * @param len The length of the string. If < 0 then all characters * will be displayed until a null character is encountered. * @param position TODO * @param renderMode Render mode to display * @param bounds A pointer to a bounds object. If non null * the bounds of the text when laid out * will be stored in bounds. If null the * text will be rendered. */ virtual void WrapText(const char *buf, const int len, FTPoint position, int renderMode, FTBBox *bounds); /** * Either render a string of characters and wrap lines * longer than a threshold or compute the bounds * of a string of characters when wrapped. The functionality * of this method is exposed by the BBoxWrapped and * RenderWrapped methods. * * @param buf A wchar_t style string to output. * @param len The length of the string. If < 0 then all characters * will be displayed until a null character is encountered. * @param position TODO * @param renderMode Render mode to display * @param bounds A pointer to a bounds object. If non null * the bounds of the text when laid out * will be stored in bounds. If null the * text will be rendered. */ virtual void WrapText(const wchar_t *buf, const int len, FTPoint position, int renderMode, FTBBox *bounds); /** * A helper method used by WrapText to either output the text or * compute it's bounds. * * @param buf A pointer to an array of character data. * @param len The length of the string. If < 0 then all characters * will be displayed until a null character is encountered. * @param position TODO * @param renderMode Render mode to display * @param RemainingWidth The amount of extra space left on the line. * @param bounds A pointer to a bounds object. If non null the * bounds will be initialized or expanded by the * bounds of the line. If null the text will be * rendered. If the bounds are invalid (lower > upper) * they will be initialized. Otherwise they * will be expanded. */ void OutputWrapped(const char *buf, const int len, FTPoint position, int renderMode, const float RemainingWidth, FTBBox *bounds); /** * A helper method used by WrapText to either output the text or * compute it's bounds. * * @param buf A pointer to an array of character data. * @param len The length of the string. If < 0 then all characters * will be displayed until a null character is encountered. * @param position TODO * @param renderMode Render mode to display * @param RemainingWidth The amount of extra space left on the line. * @param bounds A pointer to a bounds object. If non null the * bounds will be initialized or expanded by the * bounds of the line. If null the text will be * rendered. If the bounds are invalid (lower > upper) * they will be initialized. Otherwise they * will be expanded. */ void OutputWrapped(const wchar_t *buf, const int len, FTPoint position, int renderMode, const float RemainingWidth, FTBBox *bounds); /** * The font to use for rendering the text. The font is * referenced by this but will not be disposed of when this * is deleted. */ FTFont *currentFont; /** * The maximum line length for formatting text. */ float lineLength; /** * The text alignment mode used to distribute * space within a line or rendered text. */ FTGL::TextAlignment alignment; /** * The height of each line of text expressed as * a percentage of the font's line height. */ float lineSpacing; /* Internal generic BBox() implementation */ template inline FTBBox BBoxI(const T* string, const int len, FTPoint position); /* Internal generic Render() implementation */ template inline void RenderI(const T* string, const int len, FTPoint position, int renderMode); /* Internal generic RenderSpace() implementation */ template inline void RenderSpaceI(const T* string, const int len, FTPoint position, int renderMode, const float extraSpace); /* Internal generic WrapText() implementation */ template void WrapTextI(const T* buf, const int len, FTPoint position, int renderMode, FTBBox *bounds); /* Internal generic OutputWrapped() implementation */ template void OutputWrappedI(const T* buf, const int len, FTPoint position, int renderMode, const float RemainingWidth, FTBBox *bounds); }; #endif // __FTSimpleLayoutImpl__ ftgl-2.1.3~rc5/src/FTLayout/FTLayout.cpp0000644000175000017500000000325511023223636014716 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTGL/ftgl.h" #include "../FTFont/FTFontImpl.h" #include "./FTLayoutImpl.h" // // FTLayout // FTLayout::FTLayout() { impl = new FTLayoutImpl(); } FTLayout::FTLayout(FTLayoutImpl *pImpl) { impl = pImpl; } FTLayout::~FTLayout() { delete impl; } FT_Error FTLayout::Error() const { return impl->err; } // // FTLayoutImpl // FTLayoutImpl::FTLayoutImpl() : err(0) { ; } FTLayoutImpl::~FTLayoutImpl() { ; } ftgl-2.1.3~rc5/src/FTLayout/FTLayoutImpl.h0000644000175000017500000000324111023223427015176 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTLayoutImpl__ #define __FTLayoutImpl__ #include "FTSize.h" #include "FTGlyphContainer.h" class FTLayoutImpl { friend class FTLayout; protected: FTLayoutImpl(); virtual ~FTLayoutImpl(); protected: /** * Current pen or cursor position; */ FTPoint pen; /** * Current error code. Zero means no error. */ FT_Error err; }; #endif // __FTLayoutImpl__ ftgl-2.1.3~rc5/src/FTLayout/FTSimpleLayout.cpp0000644000175000017500000003411411023223646016067 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include #include #include "FTInternals.h" #include "FTUnicode.h" #include "FTGlyphContainer.h" #include "FTSimpleLayoutImpl.h" // // FTSimpleLayout // FTSimpleLayout::FTSimpleLayout() : FTLayout(new FTSimpleLayoutImpl()) {} FTSimpleLayout::~FTSimpleLayout() {} FTBBox FTSimpleLayout::BBox(const char *string, const int len, FTPoint pos) { return dynamic_cast(impl)->BBox(string, len, pos); } FTBBox FTSimpleLayout::BBox(const wchar_t *string, const int len, FTPoint pos) { return dynamic_cast(impl)->BBox(string, len, pos); } void FTSimpleLayout::Render(const char *string, const int len, FTPoint pos, int renderMode) { return dynamic_cast(impl)->Render(string, len, pos, renderMode); } void FTSimpleLayout::Render(const wchar_t* string, const int len, FTPoint pos, int renderMode) { return dynamic_cast(impl)->Render(string, len, pos, renderMode); } void FTSimpleLayout::SetFont(FTFont *fontInit) { dynamic_cast(impl)->currentFont = fontInit; } FTFont *FTSimpleLayout::GetFont() { return dynamic_cast(impl)->currentFont; } void FTSimpleLayout::SetLineLength(const float LineLength) { dynamic_cast(impl)->lineLength = LineLength; } float FTSimpleLayout::GetLineLength() const { return dynamic_cast(impl)->lineLength; } void FTSimpleLayout::SetAlignment(const FTGL::TextAlignment Alignment) { dynamic_cast(impl)->alignment = Alignment; } FTGL::TextAlignment FTSimpleLayout::GetAlignment() const { return dynamic_cast(impl)->alignment; } void FTSimpleLayout::SetLineSpacing(const float LineSpacing) { dynamic_cast(impl)->lineSpacing = LineSpacing; } float FTSimpleLayout::GetLineSpacing() const { return dynamic_cast(impl)->lineSpacing; } // // FTSimpleLayoutImpl // FTSimpleLayoutImpl::FTSimpleLayoutImpl() { currentFont = NULL; lineLength = 100.0f; alignment = FTGL::ALIGN_LEFT; lineSpacing = 1.0f; } template inline FTBBox FTSimpleLayoutImpl::BBoxI(const T* string, const int len, FTPoint position) { FTBBox tmp; WrapText(string, len, position, 0, &tmp); return tmp; } FTBBox FTSimpleLayoutImpl::BBox(const char *string, const int len, FTPoint position) { return BBoxI(string, len, position); } FTBBox FTSimpleLayoutImpl::BBox(const wchar_t *string, const int len, FTPoint position) { return BBoxI(string, len, position); } template inline void FTSimpleLayoutImpl::RenderI(const T *string, const int len, FTPoint position, int renderMode) { pen = FTPoint(0.0f, 0.0f); WrapText(string, len, position, renderMode, NULL); } void FTSimpleLayoutImpl::Render(const char *string, const int len, FTPoint position, int renderMode) { RenderI(string, len, position, renderMode); } void FTSimpleLayoutImpl::Render(const wchar_t* string, const int len, FTPoint position, int renderMode) { RenderI(string, len, position, renderMode); } template inline void FTSimpleLayoutImpl::WrapTextI(const T *buf, const int len, FTPoint position, int renderMode, FTBBox *bounds) { FTUnicodeStringItr breakItr(buf); // points to the last break character FTUnicodeStringItr lineStart(buf); // points to the line start float nextStart = 0.0; // total width of the current line float breakWidth = 0.0; // width of the line up to the last word break float currentWidth = 0.0; // width of all characters on the current line float prevWidth; // width of all characters but the current glyph float wordLength = 0.0; // length of the block since the last break char int charCount = 0; // number of characters so far on the line int breakCharCount = 0; // number of characters before the breakItr float glyphWidth, advance; FTBBox glyphBounds; // Reset the pen position pen.Y(0); // If we have bounds mark them invalid if(bounds) { bounds->Invalidate(); } // Scan the input for all characters that need output FTUnicodeStringItr prevItr(buf); for (FTUnicodeStringItr itr(buf); *itr; prevItr = itr++, charCount++) { // Find the width of the current glyph glyphBounds = currentFont->BBox(itr.getBufferFromHere(), 1); glyphWidth = glyphBounds.Upper().Xf() - glyphBounds.Lower().Xf(); advance = currentFont->Advance(itr.getBufferFromHere(), 1); prevWidth = currentWidth; // Compute the width of all glyphs up to the end of buf[i] currentWidth = nextStart + glyphWidth; // Compute the position of the next glyph nextStart += advance; // See if the current character is a space, a break or a regular character if((currentWidth > lineLength) || (*itr == '\n')) { // A non whitespace character has exceeded the line length. Or a // newline character has forced a line break. Output the last // line and start a new line after the break character. // If we have not yet found a break, break on the last character if(breakItr == lineStart || (*itr == '\n')) { // Break on the previous character breakItr = prevItr; breakCharCount = charCount - 1; breakWidth = prevWidth; // None of the previous words will be carried to the next line wordLength = 0; // If the current character is a newline discard its advance if(*itr == '\n') advance = 0; } float remainingWidth = lineLength - breakWidth; // Render the current substring FTUnicodeStringItr breakChar = breakItr; // move past the break character and don't count it on the next line either ++breakChar; --charCount; // If the break character is a newline do not render it if(*breakChar == '\n') { ++breakChar; --charCount; } OutputWrapped(lineStart.getBufferFromHere(), breakCharCount, //breakItr.getBufferFromHere() - lineStart.getBufferFromHere(), position, renderMode, remainingWidth, bounds); // Store the start of the next line lineStart = breakChar; // TODO: Is Height() the right value here? pen -= FTPoint(0, currentFont->LineHeight() * lineSpacing); // The current width is the width since the last break nextStart = wordLength + advance; wordLength += advance; currentWidth = wordLength + advance; // Reset the safe break for the next line breakItr = lineStart; charCount -= breakCharCount; } else if(iswspace(*itr)) { // This is the last word break position wordLength = 0; breakItr = itr; breakCharCount = charCount; // Check to see if this is the first whitespace character in a run if(buf == itr.getBufferFromHere() || !iswspace(*prevItr)) { // Record the width of the start of the block breakWidth = currentWidth; } } else { wordLength += advance; } } float remainingWidth = lineLength - currentWidth; // Render any remaining text on the last line // Disable justification for the last row if(alignment == FTGL::ALIGN_JUSTIFY) { alignment = FTGL::ALIGN_LEFT; OutputWrapped(lineStart.getBufferFromHere(), -1, position, renderMode, remainingWidth, bounds); alignment = FTGL::ALIGN_JUSTIFY; } else { OutputWrapped(lineStart.getBufferFromHere(), -1, position, renderMode, remainingWidth, bounds); } } void FTSimpleLayoutImpl::WrapText(const char *buf, const int len, FTPoint position, int renderMode, FTBBox *bounds) { WrapTextI(buf, len, position, renderMode, bounds); } void FTSimpleLayoutImpl::WrapText(const wchar_t* buf, const int len, FTPoint position, int renderMode, FTBBox *bounds) { WrapTextI(buf, len, position, renderMode, bounds); } template inline void FTSimpleLayoutImpl::OutputWrappedI(const T *buf, const int len, FTPoint position, int renderMode, const float remaining, FTBBox *bounds) { float distributeWidth = 0.0; // Align the text according as specified by Alignment switch (alignment) { case FTGL::ALIGN_LEFT: pen.X(0); break; case FTGL::ALIGN_CENTER: pen.X(remaining / 2); break; case FTGL::ALIGN_RIGHT: pen.X(remaining); break; case FTGL::ALIGN_JUSTIFY: pen.X(0); distributeWidth = remaining; break; } // If we have bounds expand them by the line's bounds, otherwise render // the line. if(bounds) { FTBBox temp = currentFont->BBox(buf, len); // Add the extra space to the upper x dimension temp = FTBBox(temp.Lower() + pen, temp.Upper() + pen + FTPoint(distributeWidth, 0)); // See if this is the first area to be added to the bounds if(bounds->IsValid()) { *bounds |= temp; } else { *bounds = temp; } } else { RenderSpace(buf, len, position, renderMode, distributeWidth); } } void FTSimpleLayoutImpl::OutputWrapped(const char *buf, const int len, FTPoint position, int renderMode, const float remaining, FTBBox *bounds) { OutputWrappedI(buf, len, position, renderMode, remaining, bounds); } void FTSimpleLayoutImpl::OutputWrapped(const wchar_t *buf, const int len, FTPoint position, int renderMode, const float remaining, FTBBox *bounds) { OutputWrappedI(buf, len, position, renderMode, remaining, bounds); } template inline void FTSimpleLayoutImpl::RenderSpaceI(const T *string, const int len, FTPoint position, int renderMode, const float extraSpace) { float space = 0.0; // If there is space to distribute, count the number of spaces if(extraSpace > 0.0) { int numSpaces = 0; // Count the number of space blocks in the input FTUnicodeStringItr prevItr(string), itr(string); for(int i = 0; ((len < 0) && *itr) || ((len >= 0) && (i <= len)); ++i, prevItr = itr++) { // If this is the end of a space block, increment the counter if((i > 0) && !iswspace(*itr) && iswspace(*prevItr)) { numSpaces++; } } space = extraSpace/numSpaces; } // Output all characters of the string FTUnicodeStringItr prevItr(string), itr(string); for(int i = 0; ((len < 0) && *itr) || ((len >= 0) && (i <= len)); ++i, prevItr = itr++) { // If this is the end of a space block, distribute the extra space // inside it if((i > 0) && !iswspace(*itr) && iswspace(*prevItr)) { pen += FTPoint(space, 0); } pen = currentFont->Render(itr.getBufferFromHere(), 1, pen, FTPoint(), renderMode); } } void FTSimpleLayoutImpl::RenderSpace(const char *string, const int len, FTPoint position, int renderMode, const float extraSpace) { RenderSpaceI(string, len, position, renderMode, extraSpace); } void FTSimpleLayoutImpl::RenderSpace(const wchar_t *string, const int len, FTPoint position, int renderMode, const float extraSpace) { RenderSpaceI(string, len, position, renderMode, extraSpace); } ftgl-2.1.3~rc5/src/FTInternals.h0000644000175000017500000000661011023223424013327 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Éric Beets * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTINTERNALS_H__ #define __FTINTERNALS_H__ #include "FTGL/ftgl.h" #include #include // Fixes for deprecated identifiers in 2.1.5 #ifndef FT_OPEN_MEMORY #define FT_OPEN_MEMORY (FT_Open_Flags)1 #endif #ifndef FT_RENDER_MODE_MONO #define FT_RENDER_MODE_MONO ft_render_mode_mono #endif #ifndef FT_RENDER_MODE_NORMAL #define FT_RENDER_MODE_NORMAL ft_render_mode_normal #endif #ifdef WIN32 // Under windows avoid including is overrated. // Sure, it can be avoided and "name space pollution" can be // avoided, but why? It really doesn't make that much difference // these days. #define WIN32_LEAN_AND_MEAN #include #ifndef __gl_h_ #include #include #endif #else // Non windows platforms - don't require nonsense as seen above :-) #ifndef __gl_h_ #ifdef SDL_main #include "SDL_opengl.h" #elif __APPLE_CC__ #include #include #else #include #if defined (__sun__) && !defined (__sparc__) #include #else #include #endif #endif #endif // Required for compatibility with glext.h style function definitions of // OpenGL extensions, such as in src/osg/Point.cpp. #ifndef APIENTRY #define APIENTRY #endif #endif FTGL_BEGIN_C_DECLS typedef enum { GLYPH_CUSTOM, GLYPH_BITMAP, GLYPH_BUFFER, GLYPH_PIXMAP, GLYPH_OUTLINE, GLYPH_POLYGON, GLYPH_EXTRUDE, GLYPH_TEXTURE, } GlyphType; struct _FTGLglyph { FTGlyph *ptr; FTGL::GlyphType type; }; typedef enum { FONT_CUSTOM, FONT_BITMAP, FONT_BUFFER, FONT_PIXMAP, FONT_OUTLINE, FONT_POLYGON, FONT_EXTRUDE, FONT_TEXTURE, } FontType; struct _FTGLfont { FTFont *ptr; FTGL::FontType type; }; typedef enum { LAYOUT_SIMPLE, } LayoutType; struct _FTGLlayout { FTLayout *ptr; FTGLfont *font; FTGL::LayoutType type; }; FTGL_END_C_DECLS #endif //__FTINTERNALS_H__ ftgl-2.1.3~rc5/src/FTContour.h0000644000175000017500000001431511023223771013027 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Éric Beets * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTContour__ #define __FTContour__ #include "FTGL/ftgl.h" #include "FTVector.h" /** * FTContour class is a container of points that describe a vector font * outline. It is used as a container for the output of the bezier curve * evaluator in FTVectoriser. * * @see FTOutlineGlyph * @see FTPolygonGlyph * @see FTPoint */ class FTContour { public: /** * Constructor * * @param contour * @param pointTags * @param numberOfPoints */ FTContour(FT_Vector* contour, char* pointTags, unsigned int numberOfPoints); /** * Destructor */ ~FTContour() { pointList.clear(); outsetPointList.clear(); frontPointList.clear(); backPointList.clear(); } /** * Return a point at index. * * @param index of the point in the curve. * @return const point reference */ const FTPoint& Point(size_t index) const { return pointList[index]; } /** * Return a point at index. * * @param index of the point in the outset curve. * @return const point reference */ const FTPoint& Outset(size_t index) const { return outsetPointList[index]; } /** * Return a point at index of the front outset contour. * * @param index of the point in the curve. * @return const point reference */ const FTPoint& FrontPoint(size_t index) const { if(frontPointList.size() == 0) return Point(index); return frontPointList[index]; } /** * Return a point at index of the back outset contour. * * @param index of the point in the curve. * @return const point reference */ const FTPoint& BackPoint(size_t index) const { if(backPointList.size() == 0) return Point(index); return backPointList[index]; } /** * How many points define this contour * * @return the number of points in this contour */ size_t PointCount() const { return pointList.size(); } /** * Make sure the glyph has the proper parity and create the front/back * outset contour. * * @param parity The contour's parity within the glyph. */ void SetParity(int parity); // FIXME: this should probably go away. void buildFrontOutset(float outset); void buildBackOutset(float outset); private: /** * Add a point to this contour. This function tests for duplicate * points. * * @param point The point to be added to the contour. */ inline void AddPoint(FTPoint point); /** * Add a point to this contour. This function tests for duplicate * points. * * @param point The point to be added to the contour. */ inline void AddOutsetPoint(FTPoint point); /* * Add a point to this outset contour. This function tests for duplicate * points. * * @param point The point to be added to the contour outset. */ inline void AddFrontPoint(FTPoint point); inline void AddBackPoint(FTPoint point); /** * De Casteljau (bezier) algorithm contributed by Jed Soane * Evaluates a quadratic or conic (second degree) curve */ inline void evaluateQuadraticCurve(FTPoint, FTPoint, FTPoint); /** * De Casteljau (bezier) algorithm contributed by Jed Soane * Evaluates a cubic (third degree) curve */ inline void evaluateCubicCurve(FTPoint, FTPoint, FTPoint, FTPoint); /** * Compute the vector norm */ inline FTGL_DOUBLE NormVector(const FTPoint &v); /** * Compute a rotation matrix from a vector */ inline void RotationMatrix(const FTPoint &a, const FTPoint &b, FTGL_DOUBLE *matRot, FTGL_DOUBLE *invRot); /** * Matrix and vector multiplication */ inline void MultMatrixVect(FTGL_DOUBLE *mat, FTPoint &v); /** * Compute the vector bisecting from a vector 'v' and a distance 'd' */ inline void ComputeBisec(FTPoint &v); /** * Compute the outset point coordinates */ inline FTPoint ComputeOutsetPoint(FTPoint a, FTPoint b, FTPoint c); /** * The list of points in this contour */ typedef FTVector PointVector; PointVector pointList; PointVector outsetPointList; PointVector frontPointList; PointVector backPointList; /** * Is this contour clockwise or anti-clockwise? */ bool clockwise; }; #endif // __FTContour__ ftgl-2.1.3~rc5/src/Makefile.in0000644000175000017500000015501311024231635013040 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = src DIST_COMMON = $(ftgl_HEADERS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/cxx.m4 $(top_srcdir)/m4/font.m4 \ $(top_srcdir)/m4/freetype2.m4 $(top_srcdir)/m4/gl.m4 \ $(top_srcdir)/m4/glut.m4 $(top_srcdir)/m4/pkg.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(ftgldir)" libLTLIBRARIES_INSTALL = $(INSTALL) LTLIBRARIES = $(lib_LTLIBRARIES) am__DEPENDENCIES_1 = libftgl_la_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) am__objects_1 = am__objects_2 = libftgl_la-FTGlyph.lo libftgl_la-FTGlyphGlue.lo \ libftgl_la-FTBitmapGlyph.lo libftgl_la-FTBufferGlyph.lo \ libftgl_la-FTExtrudeGlyph.lo libftgl_la-FTOutlineGlyph.lo \ libftgl_la-FTPixmapGlyph.lo libftgl_la-FTPolygonGlyph.lo \ libftgl_la-FTTextureGlyph.lo $(am__objects_1) am__objects_3 = libftgl_la-FTFont.lo libftgl_la-FTFontGlue.lo \ libftgl_la-FTBitmapFont.lo libftgl_la-FTBufferFont.lo \ libftgl_la-FTExtrudeFont.lo libftgl_la-FTOutlineFont.lo \ libftgl_la-FTPixmapFont.lo libftgl_la-FTPolygonFont.lo \ libftgl_la-FTTextureFont.lo $(am__objects_1) am__objects_4 = libftgl_la-FTLayout.lo libftgl_la-FTLayoutGlue.lo \ libftgl_la-FTSimpleLayout.lo $(am__objects_1) am__objects_5 = $(am__objects_1) am_libftgl_la_OBJECTS = libftgl_la-FTBuffer.lo libftgl_la-FTCharmap.lo \ libftgl_la-FTContour.lo libftgl_la-FTFace.lo \ libftgl_la-FTGlyphContainer.lo libftgl_la-FTLibrary.lo \ libftgl_la-FTPoint.lo libftgl_la-FTSize.lo \ libftgl_la-FTVectoriser.lo $(am__objects_2) $(am__objects_3) \ $(am__objects_4) $(am__objects_5) $(am__objects_1) libftgl_la_OBJECTS = $(am_libftgl_la_OBJECTS) libftgl_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(libftgl_la_CXXFLAGS) \ $(CXXFLAGS) $(libftgl_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/.auto/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(libftgl_la_SOURCES) DIST_SOURCES = $(libftgl_la_SOURCES) ftglHEADERS_INSTALL = $(INSTALL_HEADER) HEADERS = $(ftgl_HEADERS) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CONVERT = @CONVERT@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CPPUNIT_CFLAGS = @CPPUNIT_CFLAGS@ CPPUNIT_LIBS = @CPPUNIT_LIBS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DOXYGEN = @DOXYGEN@ DSYMUTIL = @DSYMUTIL@ DVIPS = @DVIPS@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EPSTOPDF = @EPSTOPDF@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FRAMEWORK_OPENGL = @FRAMEWORK_OPENGL@ FT2_CFLAGS = @FT2_CFLAGS@ FT2_CONFIG = @FT2_CONFIG@ FT2_LIBS = @FT2_LIBS@ GLUT_CFLAGS = @GLUT_CFLAGS@ GLUT_LIBS = @GLUT_LIBS@ GL_CFLAGS = @GL_CFLAGS@ GL_LIBS = @GL_LIBS@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ KPSEWHICH = @KPSEWHICH@ LATEX = @LATEX@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_MAJOR = @LT_MAJOR@ LT_MICRO = @LT_MICRO@ LT_MINOR = @LT_MINOR@ LT_VERSION = @LT_VERSION@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ lib_LTLIBRARIES = libftgl.la libftgl_la_SOURCES = \ FTBuffer.cpp \ FTCharmap.cpp \ FTCharmap.h \ FTCharToGlyphIndexMap.h \ FTContour.cpp \ FTContour.h \ FTFace.cpp \ FTFace.h \ FTGlyphContainer.cpp \ FTGlyphContainer.h \ FTInternals.h \ FTLibrary.cpp \ FTLibrary.h \ FTList.h \ FTPoint.cpp \ FTSize.cpp \ FTSize.h \ FTVector.h \ FTVectoriser.cpp \ FTVectoriser.h \ FTUnicode.h \ $(ftglyph_sources) \ $(ftfont_sources) \ $(ftlayout_sources) \ $(ftgl_headers) \ $(NULL) libftgl_la_CPPFLAGS = -IFTGlyph -IFTFont -IFTLayout libftgl_la_CXXFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) libftgl_la_LDFLAGS = \ -no-undefined -version-number $(LT_VERSION) libftgl_la_LIBADD = \ $(FT2_LIBS) $(GL_LIBS) ftgldir = $(includedir)/FTGL ftgl_HEADERS = $(ftgl_headers) ftgl_headers = \ FTGL/ftgl.h \ FTGL/FTBBox.h \ FTGL/FTBuffer.h \ FTGL/FTPoint.h \ FTGL/FTGlyph.h \ FTGL/FTBitmapGlyph.h \ FTGL/FTBufferGlyph.h \ FTGL/FTExtrdGlyph.h \ FTGL/FTOutlineGlyph.h \ FTGL/FTPixmapGlyph.h \ FTGL/FTPolyGlyph.h \ FTGL/FTTextureGlyph.h \ FTGL/FTFont.h \ FTGL/FTGLBitmapFont.h \ FTGL/FTBufferFont.h \ FTGL/FTGLExtrdFont.h \ FTGL/FTGLOutlineFont.h \ FTGL/FTGLPixmapFont.h \ FTGL/FTGLPolygonFont.h \ FTGL/FTGLTextureFont.h \ FTGL/FTLayout.h \ FTGL/FTSimpleLayout.h \ ${NULL} ftglyph_sources = \ FTGlyph/FTGlyph.cpp \ FTGlyph/FTGlyphImpl.h \ FTGlyph/FTGlyphGlue.cpp \ FTGlyph/FTBitmapGlyph.cpp \ FTGlyph/FTBitmapGlyphImpl.h \ FTGlyph/FTBufferGlyph.cpp \ FTGlyph/FTBufferGlyphImpl.h \ FTGlyph/FTExtrudeGlyph.cpp \ FTGlyph/FTExtrudeGlyphImpl.h \ FTGlyph/FTOutlineGlyph.cpp \ FTGlyph/FTOutlineGlyphImpl.h \ FTGlyph/FTPixmapGlyph.cpp \ FTGlyph/FTPixmapGlyphImpl.h \ FTGlyph/FTPolygonGlyph.cpp \ FTGlyph/FTPolygonGlyphImpl.h \ FTGlyph/FTTextureGlyph.cpp \ FTGlyph/FTTextureGlyphImpl.h \ $(NULL) ftfont_sources = \ FTFont/FTFont.cpp \ FTFont/FTFontImpl.h \ FTFont/FTFontGlue.cpp \ FTFont/FTBitmapFont.cpp \ FTFont/FTBitmapFontImpl.h \ FTFont/FTBufferFont.cpp \ FTFont/FTBufferFontImpl.h \ FTFont/FTExtrudeFont.cpp \ FTFont/FTExtrudeFontImpl.h \ FTFont/FTOutlineFont.cpp \ FTFont/FTOutlineFontImpl.h \ FTFont/FTPixmapFont.cpp \ FTFont/FTPixmapFontImpl.h \ FTFont/FTPolygonFont.cpp \ FTFont/FTPolygonFontImpl.h \ FTFont/FTTextureFont.cpp \ FTFont/FTTextureFontImpl.h \ $(NULL) ftlayout_sources = \ FTLayout/FTLayout.cpp \ FTLayout/FTLayoutImpl.h \ FTLayout/FTLayoutGlue.cpp \ FTLayout/FTSimpleLayout.cpp \ FTLayout/FTSimpleLayoutImpl.h \ $(NULL) NULL = all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ f=$(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libftgl.la: $(libftgl_la_OBJECTS) $(libftgl_la_DEPENDENCIES) $(libftgl_la_LINK) -rpath $(libdir) $(libftgl_la_OBJECTS) $(libftgl_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTBitmapFont.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTBitmapGlyph.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTBuffer.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTBufferFont.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTBufferGlyph.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTCharmap.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTContour.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTExtrudeFont.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTExtrudeGlyph.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTFace.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTFont.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTFontGlue.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTGlyph.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTGlyphContainer.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTGlyphGlue.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTLayout.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTLayoutGlue.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTLibrary.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTOutlineFont.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTOutlineGlyph.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTPixmapFont.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTPixmapGlyph.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTPoint.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTPolygonFont.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTPolygonGlyph.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTSimpleLayout.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTSize.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTTextureFont.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTTextureGlyph.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libftgl_la-FTVectoriser.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< libftgl_la-FTBuffer.lo: FTBuffer.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTBuffer.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTBuffer.Tpo -c -o libftgl_la-FTBuffer.lo `test -f 'FTBuffer.cpp' || echo '$(srcdir)/'`FTBuffer.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTBuffer.Tpo $(DEPDIR)/libftgl_la-FTBuffer.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTBuffer.cpp' object='libftgl_la-FTBuffer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTBuffer.lo `test -f 'FTBuffer.cpp' || echo '$(srcdir)/'`FTBuffer.cpp libftgl_la-FTCharmap.lo: FTCharmap.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTCharmap.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTCharmap.Tpo -c -o libftgl_la-FTCharmap.lo `test -f 'FTCharmap.cpp' || echo '$(srcdir)/'`FTCharmap.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTCharmap.Tpo $(DEPDIR)/libftgl_la-FTCharmap.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTCharmap.cpp' object='libftgl_la-FTCharmap.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTCharmap.lo `test -f 'FTCharmap.cpp' || echo '$(srcdir)/'`FTCharmap.cpp libftgl_la-FTContour.lo: FTContour.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTContour.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTContour.Tpo -c -o libftgl_la-FTContour.lo `test -f 'FTContour.cpp' || echo '$(srcdir)/'`FTContour.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTContour.Tpo $(DEPDIR)/libftgl_la-FTContour.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTContour.cpp' object='libftgl_la-FTContour.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTContour.lo `test -f 'FTContour.cpp' || echo '$(srcdir)/'`FTContour.cpp libftgl_la-FTFace.lo: FTFace.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTFace.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTFace.Tpo -c -o libftgl_la-FTFace.lo `test -f 'FTFace.cpp' || echo '$(srcdir)/'`FTFace.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTFace.Tpo $(DEPDIR)/libftgl_la-FTFace.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFace.cpp' object='libftgl_la-FTFace.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTFace.lo `test -f 'FTFace.cpp' || echo '$(srcdir)/'`FTFace.cpp libftgl_la-FTGlyphContainer.lo: FTGlyphContainer.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTGlyphContainer.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTGlyphContainer.Tpo -c -o libftgl_la-FTGlyphContainer.lo `test -f 'FTGlyphContainer.cpp' || echo '$(srcdir)/'`FTGlyphContainer.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTGlyphContainer.Tpo $(DEPDIR)/libftgl_la-FTGlyphContainer.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyphContainer.cpp' object='libftgl_la-FTGlyphContainer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTGlyphContainer.lo `test -f 'FTGlyphContainer.cpp' || echo '$(srcdir)/'`FTGlyphContainer.cpp libftgl_la-FTLibrary.lo: FTLibrary.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTLibrary.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTLibrary.Tpo -c -o libftgl_la-FTLibrary.lo `test -f 'FTLibrary.cpp' || echo '$(srcdir)/'`FTLibrary.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTLibrary.Tpo $(DEPDIR)/libftgl_la-FTLibrary.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTLibrary.cpp' object='libftgl_la-FTLibrary.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTLibrary.lo `test -f 'FTLibrary.cpp' || echo '$(srcdir)/'`FTLibrary.cpp libftgl_la-FTPoint.lo: FTPoint.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTPoint.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTPoint.Tpo -c -o libftgl_la-FTPoint.lo `test -f 'FTPoint.cpp' || echo '$(srcdir)/'`FTPoint.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTPoint.Tpo $(DEPDIR)/libftgl_la-FTPoint.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTPoint.cpp' object='libftgl_la-FTPoint.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTPoint.lo `test -f 'FTPoint.cpp' || echo '$(srcdir)/'`FTPoint.cpp libftgl_la-FTSize.lo: FTSize.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTSize.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTSize.Tpo -c -o libftgl_la-FTSize.lo `test -f 'FTSize.cpp' || echo '$(srcdir)/'`FTSize.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTSize.Tpo $(DEPDIR)/libftgl_la-FTSize.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTSize.cpp' object='libftgl_la-FTSize.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTSize.lo `test -f 'FTSize.cpp' || echo '$(srcdir)/'`FTSize.cpp libftgl_la-FTVectoriser.lo: FTVectoriser.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTVectoriser.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTVectoriser.Tpo -c -o libftgl_la-FTVectoriser.lo `test -f 'FTVectoriser.cpp' || echo '$(srcdir)/'`FTVectoriser.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTVectoriser.Tpo $(DEPDIR)/libftgl_la-FTVectoriser.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTVectoriser.cpp' object='libftgl_la-FTVectoriser.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTVectoriser.lo `test -f 'FTVectoriser.cpp' || echo '$(srcdir)/'`FTVectoriser.cpp libftgl_la-FTGlyph.lo: FTGlyph/FTGlyph.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTGlyph.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTGlyph.Tpo -c -o libftgl_la-FTGlyph.lo `test -f 'FTGlyph/FTGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTGlyph.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTGlyph.Tpo $(DEPDIR)/libftgl_la-FTGlyph.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyph/FTGlyph.cpp' object='libftgl_la-FTGlyph.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTGlyph.lo `test -f 'FTGlyph/FTGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTGlyph.cpp libftgl_la-FTGlyphGlue.lo: FTGlyph/FTGlyphGlue.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTGlyphGlue.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTGlyphGlue.Tpo -c -o libftgl_la-FTGlyphGlue.lo `test -f 'FTGlyph/FTGlyphGlue.cpp' || echo '$(srcdir)/'`FTGlyph/FTGlyphGlue.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTGlyphGlue.Tpo $(DEPDIR)/libftgl_la-FTGlyphGlue.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyph/FTGlyphGlue.cpp' object='libftgl_la-FTGlyphGlue.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTGlyphGlue.lo `test -f 'FTGlyph/FTGlyphGlue.cpp' || echo '$(srcdir)/'`FTGlyph/FTGlyphGlue.cpp libftgl_la-FTBitmapGlyph.lo: FTGlyph/FTBitmapGlyph.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTBitmapGlyph.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTBitmapGlyph.Tpo -c -o libftgl_la-FTBitmapGlyph.lo `test -f 'FTGlyph/FTBitmapGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTBitmapGlyph.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTBitmapGlyph.Tpo $(DEPDIR)/libftgl_la-FTBitmapGlyph.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyph/FTBitmapGlyph.cpp' object='libftgl_la-FTBitmapGlyph.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTBitmapGlyph.lo `test -f 'FTGlyph/FTBitmapGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTBitmapGlyph.cpp libftgl_la-FTBufferGlyph.lo: FTGlyph/FTBufferGlyph.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTBufferGlyph.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTBufferGlyph.Tpo -c -o libftgl_la-FTBufferGlyph.lo `test -f 'FTGlyph/FTBufferGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTBufferGlyph.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTBufferGlyph.Tpo $(DEPDIR)/libftgl_la-FTBufferGlyph.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyph/FTBufferGlyph.cpp' object='libftgl_la-FTBufferGlyph.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTBufferGlyph.lo `test -f 'FTGlyph/FTBufferGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTBufferGlyph.cpp libftgl_la-FTExtrudeGlyph.lo: FTGlyph/FTExtrudeGlyph.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTExtrudeGlyph.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTExtrudeGlyph.Tpo -c -o libftgl_la-FTExtrudeGlyph.lo `test -f 'FTGlyph/FTExtrudeGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTExtrudeGlyph.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTExtrudeGlyph.Tpo $(DEPDIR)/libftgl_la-FTExtrudeGlyph.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyph/FTExtrudeGlyph.cpp' object='libftgl_la-FTExtrudeGlyph.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTExtrudeGlyph.lo `test -f 'FTGlyph/FTExtrudeGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTExtrudeGlyph.cpp libftgl_la-FTOutlineGlyph.lo: FTGlyph/FTOutlineGlyph.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTOutlineGlyph.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTOutlineGlyph.Tpo -c -o libftgl_la-FTOutlineGlyph.lo `test -f 'FTGlyph/FTOutlineGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTOutlineGlyph.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTOutlineGlyph.Tpo $(DEPDIR)/libftgl_la-FTOutlineGlyph.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyph/FTOutlineGlyph.cpp' object='libftgl_la-FTOutlineGlyph.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTOutlineGlyph.lo `test -f 'FTGlyph/FTOutlineGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTOutlineGlyph.cpp libftgl_la-FTPixmapGlyph.lo: FTGlyph/FTPixmapGlyph.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTPixmapGlyph.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTPixmapGlyph.Tpo -c -o libftgl_la-FTPixmapGlyph.lo `test -f 'FTGlyph/FTPixmapGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTPixmapGlyph.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTPixmapGlyph.Tpo $(DEPDIR)/libftgl_la-FTPixmapGlyph.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyph/FTPixmapGlyph.cpp' object='libftgl_la-FTPixmapGlyph.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTPixmapGlyph.lo `test -f 'FTGlyph/FTPixmapGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTPixmapGlyph.cpp libftgl_la-FTPolygonGlyph.lo: FTGlyph/FTPolygonGlyph.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTPolygonGlyph.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTPolygonGlyph.Tpo -c -o libftgl_la-FTPolygonGlyph.lo `test -f 'FTGlyph/FTPolygonGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTPolygonGlyph.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTPolygonGlyph.Tpo $(DEPDIR)/libftgl_la-FTPolygonGlyph.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyph/FTPolygonGlyph.cpp' object='libftgl_la-FTPolygonGlyph.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTPolygonGlyph.lo `test -f 'FTGlyph/FTPolygonGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTPolygonGlyph.cpp libftgl_la-FTTextureGlyph.lo: FTGlyph/FTTextureGlyph.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTTextureGlyph.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTTextureGlyph.Tpo -c -o libftgl_la-FTTextureGlyph.lo `test -f 'FTGlyph/FTTextureGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTTextureGlyph.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTTextureGlyph.Tpo $(DEPDIR)/libftgl_la-FTTextureGlyph.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyph/FTTextureGlyph.cpp' object='libftgl_la-FTTextureGlyph.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTTextureGlyph.lo `test -f 'FTGlyph/FTTextureGlyph.cpp' || echo '$(srcdir)/'`FTGlyph/FTTextureGlyph.cpp libftgl_la-FTFont.lo: FTFont/FTFont.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTFont.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTFont.Tpo -c -o libftgl_la-FTFont.lo `test -f 'FTFont/FTFont.cpp' || echo '$(srcdir)/'`FTFont/FTFont.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTFont.Tpo $(DEPDIR)/libftgl_la-FTFont.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFont/FTFont.cpp' object='libftgl_la-FTFont.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTFont.lo `test -f 'FTFont/FTFont.cpp' || echo '$(srcdir)/'`FTFont/FTFont.cpp libftgl_la-FTFontGlue.lo: FTFont/FTFontGlue.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTFontGlue.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTFontGlue.Tpo -c -o libftgl_la-FTFontGlue.lo `test -f 'FTFont/FTFontGlue.cpp' || echo '$(srcdir)/'`FTFont/FTFontGlue.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTFontGlue.Tpo $(DEPDIR)/libftgl_la-FTFontGlue.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFont/FTFontGlue.cpp' object='libftgl_la-FTFontGlue.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTFontGlue.lo `test -f 'FTFont/FTFontGlue.cpp' || echo '$(srcdir)/'`FTFont/FTFontGlue.cpp libftgl_la-FTBitmapFont.lo: FTFont/FTBitmapFont.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTBitmapFont.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTBitmapFont.Tpo -c -o libftgl_la-FTBitmapFont.lo `test -f 'FTFont/FTBitmapFont.cpp' || echo '$(srcdir)/'`FTFont/FTBitmapFont.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTBitmapFont.Tpo $(DEPDIR)/libftgl_la-FTBitmapFont.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFont/FTBitmapFont.cpp' object='libftgl_la-FTBitmapFont.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTBitmapFont.lo `test -f 'FTFont/FTBitmapFont.cpp' || echo '$(srcdir)/'`FTFont/FTBitmapFont.cpp libftgl_la-FTBufferFont.lo: FTFont/FTBufferFont.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTBufferFont.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTBufferFont.Tpo -c -o libftgl_la-FTBufferFont.lo `test -f 'FTFont/FTBufferFont.cpp' || echo '$(srcdir)/'`FTFont/FTBufferFont.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTBufferFont.Tpo $(DEPDIR)/libftgl_la-FTBufferFont.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFont/FTBufferFont.cpp' object='libftgl_la-FTBufferFont.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTBufferFont.lo `test -f 'FTFont/FTBufferFont.cpp' || echo '$(srcdir)/'`FTFont/FTBufferFont.cpp libftgl_la-FTExtrudeFont.lo: FTFont/FTExtrudeFont.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTExtrudeFont.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTExtrudeFont.Tpo -c -o libftgl_la-FTExtrudeFont.lo `test -f 'FTFont/FTExtrudeFont.cpp' || echo '$(srcdir)/'`FTFont/FTExtrudeFont.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTExtrudeFont.Tpo $(DEPDIR)/libftgl_la-FTExtrudeFont.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFont/FTExtrudeFont.cpp' object='libftgl_la-FTExtrudeFont.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTExtrudeFont.lo `test -f 'FTFont/FTExtrudeFont.cpp' || echo '$(srcdir)/'`FTFont/FTExtrudeFont.cpp libftgl_la-FTOutlineFont.lo: FTFont/FTOutlineFont.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTOutlineFont.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTOutlineFont.Tpo -c -o libftgl_la-FTOutlineFont.lo `test -f 'FTFont/FTOutlineFont.cpp' || echo '$(srcdir)/'`FTFont/FTOutlineFont.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTOutlineFont.Tpo $(DEPDIR)/libftgl_la-FTOutlineFont.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFont/FTOutlineFont.cpp' object='libftgl_la-FTOutlineFont.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTOutlineFont.lo `test -f 'FTFont/FTOutlineFont.cpp' || echo '$(srcdir)/'`FTFont/FTOutlineFont.cpp libftgl_la-FTPixmapFont.lo: FTFont/FTPixmapFont.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTPixmapFont.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTPixmapFont.Tpo -c -o libftgl_la-FTPixmapFont.lo `test -f 'FTFont/FTPixmapFont.cpp' || echo '$(srcdir)/'`FTFont/FTPixmapFont.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTPixmapFont.Tpo $(DEPDIR)/libftgl_la-FTPixmapFont.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFont/FTPixmapFont.cpp' object='libftgl_la-FTPixmapFont.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTPixmapFont.lo `test -f 'FTFont/FTPixmapFont.cpp' || echo '$(srcdir)/'`FTFont/FTPixmapFont.cpp libftgl_la-FTPolygonFont.lo: FTFont/FTPolygonFont.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTPolygonFont.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTPolygonFont.Tpo -c -o libftgl_la-FTPolygonFont.lo `test -f 'FTFont/FTPolygonFont.cpp' || echo '$(srcdir)/'`FTFont/FTPolygonFont.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTPolygonFont.Tpo $(DEPDIR)/libftgl_la-FTPolygonFont.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFont/FTPolygonFont.cpp' object='libftgl_la-FTPolygonFont.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTPolygonFont.lo `test -f 'FTFont/FTPolygonFont.cpp' || echo '$(srcdir)/'`FTFont/FTPolygonFont.cpp libftgl_la-FTTextureFont.lo: FTFont/FTTextureFont.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTTextureFont.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTTextureFont.Tpo -c -o libftgl_la-FTTextureFont.lo `test -f 'FTFont/FTTextureFont.cpp' || echo '$(srcdir)/'`FTFont/FTTextureFont.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTTextureFont.Tpo $(DEPDIR)/libftgl_la-FTTextureFont.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFont/FTTextureFont.cpp' object='libftgl_la-FTTextureFont.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTTextureFont.lo `test -f 'FTFont/FTTextureFont.cpp' || echo '$(srcdir)/'`FTFont/FTTextureFont.cpp libftgl_la-FTLayout.lo: FTLayout/FTLayout.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTLayout.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTLayout.Tpo -c -o libftgl_la-FTLayout.lo `test -f 'FTLayout/FTLayout.cpp' || echo '$(srcdir)/'`FTLayout/FTLayout.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTLayout.Tpo $(DEPDIR)/libftgl_la-FTLayout.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTLayout/FTLayout.cpp' object='libftgl_la-FTLayout.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTLayout.lo `test -f 'FTLayout/FTLayout.cpp' || echo '$(srcdir)/'`FTLayout/FTLayout.cpp libftgl_la-FTLayoutGlue.lo: FTLayout/FTLayoutGlue.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTLayoutGlue.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTLayoutGlue.Tpo -c -o libftgl_la-FTLayoutGlue.lo `test -f 'FTLayout/FTLayoutGlue.cpp' || echo '$(srcdir)/'`FTLayout/FTLayoutGlue.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTLayoutGlue.Tpo $(DEPDIR)/libftgl_la-FTLayoutGlue.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTLayout/FTLayoutGlue.cpp' object='libftgl_la-FTLayoutGlue.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTLayoutGlue.lo `test -f 'FTLayout/FTLayoutGlue.cpp' || echo '$(srcdir)/'`FTLayout/FTLayoutGlue.cpp libftgl_la-FTSimpleLayout.lo: FTLayout/FTSimpleLayout.cpp @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -MT libftgl_la-FTSimpleLayout.lo -MD -MP -MF $(DEPDIR)/libftgl_la-FTSimpleLayout.Tpo -c -o libftgl_la-FTSimpleLayout.lo `test -f 'FTLayout/FTSimpleLayout.cpp' || echo '$(srcdir)/'`FTLayout/FTSimpleLayout.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/libftgl_la-FTSimpleLayout.Tpo $(DEPDIR)/libftgl_la-FTSimpleLayout.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTLayout/FTSimpleLayout.cpp' object='libftgl_la-FTSimpleLayout.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libftgl_la_CPPFLAGS) $(CPPFLAGS) $(libftgl_la_CXXFLAGS) $(CXXFLAGS) -c -o libftgl_la-FTSimpleLayout.lo `test -f 'FTLayout/FTSimpleLayout.cpp' || echo '$(srcdir)/'`FTLayout/FTSimpleLayout.cpp mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-ftglHEADERS: $(ftgl_HEADERS) @$(NORMAL_INSTALL) test -z "$(ftgldir)" || $(MKDIR_P) "$(DESTDIR)$(ftgldir)" @list='$(ftgl_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(ftglHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(ftgldir)/$$f'"; \ $(ftglHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(ftgldir)/$$f"; \ done uninstall-ftglHEADERS: @$(NORMAL_UNINSTALL) @list='$(ftgl_HEADERS)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(ftgldir)/$$f'"; \ rm -f "$(DESTDIR)$(ftgldir)/$$f"; \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(ftgldir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-ftglHEADERS install-dvi: install-dvi-am install-exec-am: install-libLTLIBRARIES install-html: install-html-am install-info: install-info-am install-man: install-pdf: install-pdf-am install-ps: install-ps-am installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-ftglHEADERS uninstall-libLTLIBRARIES .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am \ install-ftglHEADERS install-html install-html-am install-info \ install-info-am install-libLTLIBRARIES install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-ftglHEADERS \ uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ftgl-2.1.3~rc5/src/FTVectoriser.h0000644000175000017500000001722711023223520013520 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTVectoriser__ #define __FTVectoriser__ #include "FTGL/ftgl.h" #include "FTContour.h" #include "FTList.h" #include "FTVector.h" #ifndef CALLBACK #define CALLBACK #endif /** * FTTesselation captures points that are output by OpenGL's gluTesselator. */ class FTTesselation { public: /** * Default constructor */ FTTesselation(GLenum m) : meshType(m) { pointList.reserve(128); } /** * Destructor */ ~FTTesselation() { pointList.clear(); } /** * Add a point to the mesh. */ void AddPoint(const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z) { pointList.push_back(FTPoint(x, y, z)); } /** * The number of points in this mesh */ size_t PointCount() const { return pointList.size(); } /** * */ const FTPoint& Point(unsigned int index) const { return pointList[index]; } /** * Return the OpenGL polygon type. */ GLenum PolygonType() const { return meshType; } private: /** * Points generated by gluTesselator. */ typedef FTVector PointVector; PointVector pointList; /** * OpenGL primitive type from gluTesselator. */ GLenum meshType; }; /** * FTMesh is a container of FTTesselation's that make up a polygon glyph */ class FTMesh { typedef FTVector TesselationVector; typedef FTList PointList; public: /** * Default constructor */ FTMesh(); /** * Destructor */ ~FTMesh(); /** * Add a point to the mesh */ void AddPoint(const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z); /** * Create a combine point for the gluTesselator */ const FTGL_DOUBLE* Combine(const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z); /** * Begin a new polygon */ void Begin(GLenum meshType); /** * End a polygon */ void End(); /** * Record a gluTesselation error */ void Error(GLenum e) { err = e; } /** * The number of tesselations in the mesh */ size_t TesselationCount() const { return tesselationList.size(); } /** * Get a tesselation by index */ const FTTesselation* const Tesselation(size_t index) const; /** * Return the temporary point list. For testing only. */ const PointList& TempPointList() const { return tempPointList; } /** * Get the GL ERROR returned by the glu tesselator */ GLenum Error() const { return err; } private: /** * The current sub mesh that we are constructing. */ FTTesselation* currentTesselation; /** * Holds each sub mesh that comprises this glyph. */ TesselationVector tesselationList; /** * Holds extra points created by gluTesselator. See ftglCombine. */ PointList tempPointList; /** * GL ERROR returned by the glu tesselator */ GLenum err; }; const FTGL_DOUBLE FTGL_FRONT_FACING = 1.0; const FTGL_DOUBLE FTGL_BACK_FACING = -1.0; /** * FTVectoriser class is a helper class that converts font outlines into * point data. * * @see FTExtrudeGlyph * @see FTOutlineGlyph * @see FTPolygonGlyph * @see FTContour * @see FTPoint * */ class FTVectoriser { public: /** * Constructor * * @param glyph The freetype glyph to be processed */ FTVectoriser(const FT_GlyphSlot glyph); /** * Destructor */ virtual ~FTVectoriser(); /** * Build an FTMesh from the vector outline data. * * @param zNormal The direction of the z axis of the normal * for this mesh * FIXME: change the following for a constant * @param outsetType Specify the outset type contour * 0 : Original * 1 : Front * 2 : Back * @param outsetSize Specify the outset size contour */ void MakeMesh(FTGL_DOUBLE zNormal = FTGL_FRONT_FACING, int outsetType = 0, float outsetSize = 0.0f); /** * Get the current mesh. */ const FTMesh* const GetMesh() const { return mesh; } /** * Get the total count of points in this outline * * @return the number of points */ size_t PointCount(); /** * Get the count of contours in this outline * * @return the number of contours */ size_t ContourCount() const { return ftContourCount; } /** * Return a contour at index * * @return the number of contours */ const FTContour* const Contour(size_t index) const; /** * Get the number of points in a specific contour in this outline * * @param c The contour index * @return the number of points in contour[c] */ size_t ContourSize(int c) const { return contourList[c]->PointCount(); } /** * Get the flag for the tesselation rule for this outline * * @return The contour flag */ int ContourFlag() const { return contourFlag; } private: /** * Process the freetype outline data into contours of points * * @param front front outset distance * @param back back outset distance */ void ProcessContours(); /** * The list of contours in the glyph */ FTContour** contourList; /** * A Mesh for tesselations */ FTMesh* mesh; /** * The number of contours reported by Freetype */ short ftContourCount; /** * A flag indicating the tesselation rule for the glyph */ int contourFlag; /** * A Freetype outline */ FT_Outline outline; }; #endif // __FTVectoriser__ ftgl-2.1.3~rc5/src/FTPoint.cpp0000644000175000017500000000363211023223661013020 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include #include "FTGL/ftgl.h" bool operator == (const FTPoint &a, const FTPoint &b) { return((a.values[0] == b.values[0]) && (a.values[1] == b.values[1]) && (a.values[2] == b.values[2])); } bool operator != (const FTPoint &a, const FTPoint &b) { return((a.values[0] != b.values[0]) || (a.values[1] != b.values[1]) || (a.values[2] != b.values[2])); } FTPoint FTPoint::Normalise() { double norm = sqrt(values[0] * values[0] + values[1] * values[1] + values[2] * values[2]); if(norm == 0.0) { return *this; } FTPoint temp(values[0] / norm, values[1] / norm, values[2] / norm); return temp; } ftgl-2.1.3~rc5/src/FTSize.cpp0000644000175000017500000000560711005631743012651 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTSize.h" FTSize::FTSize() : ftFace(0), ftSize(0), size(0), xResolution(0), yResolution(0), err(0) {} FTSize::~FTSize() {} bool FTSize::CharSize(FT_Face* face, unsigned int pointSize, unsigned int xRes, unsigned int yRes) { if(size != pointSize || xResolution != xRes || yResolution != yRes) { err = FT_Set_Char_Size(*face, 0L, pointSize * 64, xResolution, yResolution); if(!err) { ftFace = face; size = pointSize; xResolution = xRes; yResolution = yRes; ftSize = (*ftFace)->size; } } return !err; } unsigned int FTSize::CharSize() const { return size; } float FTSize::Ascender() const { return ftSize == 0 ? 0.0f : static_cast(ftSize->metrics.ascender) / 64.0f; } float FTSize::Descender() const { return ftSize == 0 ? 0.0f : static_cast(ftSize->metrics.descender) / 64.0f; } float FTSize::Height() const { if(0 == ftSize) { return 0.0f; } if(FT_IS_SCALABLE((*ftFace))) { return ((*ftFace)->bbox.yMax - (*ftFace)->bbox.yMin) * ((float)ftSize->metrics.y_ppem / (float)(*ftFace)->units_per_EM); } else { return static_cast(ftSize->metrics.height) / 64.0f; } } float FTSize::Width() const { if(0 == ftSize) { return 0.0f; } if(FT_IS_SCALABLE((*ftFace))) { return ((*ftFace)->bbox.xMax - (*ftFace)->bbox.xMin) * (static_cast(ftSize->metrics.x_ppem) / static_cast((*ftFace)->units_per_EM)); } else { return static_cast(ftSize->metrics.max_advance) / 64.0f; } } float FTSize::Underline() const { return 0.0f; } ftgl-2.1.3~rc5/src/FTContour.cpp0000644000175000017500000001625311023223744013365 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Éric Beets * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTContour.h" #include static const unsigned int BEZIER_STEPS = 5; void FTContour::AddPoint(FTPoint point) { if(pointList.empty() || (point != pointList[pointList.size() - 1] && point != pointList[0])) { pointList.push_back(point); } } void FTContour::AddOutsetPoint(FTPoint point) { outsetPointList.push_back(point); } void FTContour::AddFrontPoint(FTPoint point) { frontPointList.push_back(point); } void FTContour::AddBackPoint(FTPoint point) { backPointList.push_back(point); } void FTContour::evaluateQuadraticCurve(FTPoint A, FTPoint B, FTPoint C) { for(unsigned int i = 1; i < BEZIER_STEPS; i++) { float t = static_cast(i) / BEZIER_STEPS; FTPoint U = (1.0f - t) * A + t * B; FTPoint V = (1.0f - t) * B + t * C; AddPoint((1.0f - t) * U + t * V); } } void FTContour::evaluateCubicCurve(FTPoint A, FTPoint B, FTPoint C, FTPoint D) { for(unsigned int i = 0; i < BEZIER_STEPS; i++) { float t = static_cast(i) / BEZIER_STEPS; FTPoint U = (1.0f - t) * A + t * B; FTPoint V = (1.0f - t) * B + t * C; FTPoint W = (1.0f - t) * C + t * D; FTPoint M = (1.0f - t) * U + t * V; FTPoint N = (1.0f - t) * V + t * W; AddPoint((1.0f - t) * M + t * N); } } // This function is a bit tricky. Given a path ABC, it returns the // coordinates of the outset point facing B on the left at a distance // of 64.0. // M // - - - - - - X // ^ / ' // | 64.0 / ' // X---->-----X ==> X--v-------X ' // A B \ A B \ .>' // \ \<' 64.0 // \ \ . // \ \ . // C X C X // FTPoint FTContour::ComputeOutsetPoint(FTPoint A, FTPoint B, FTPoint C) { /* Build the rotation matrix from 'ba' vector */ FTPoint ba = (A - B).Normalise(); FTPoint bc = C - B; /* Rotate bc to the left */ FTPoint tmp(bc.X() * -ba.X() + bc.Y() * -ba.Y(), bc.X() * ba.Y() + bc.Y() * -ba.X()); /* Compute the vector bisecting 'abc' */ FTGL_DOUBLE norm = sqrt(tmp.X() * tmp.X() + tmp.Y() * tmp.Y()); FTGL_DOUBLE dist = 64.0 * sqrt((norm - tmp.X()) / (norm + tmp.X())); tmp.X(tmp.Y() < 0.0 ? dist : -dist); tmp.Y(64.0); /* Rotate the new bc to the right */ return FTPoint(tmp.X() * -ba.X() + tmp.Y() * ba.Y(), tmp.X() * -ba.Y() + tmp.Y() * -ba.X()); } void FTContour::SetParity(int parity) { size_t size = PointCount(); FTPoint vOutset; if(((parity & 1) && clockwise) || (!(parity & 1) && !clockwise)) { // Contour orientation is wrong! We must reverse all points. // FIXME: could it be worth writing FTVector::reverse() for this? for(size_t i = 0; i < size / 2; i++) { FTPoint tmp = pointList[i]; pointList[i] = pointList[size - 1 - i]; pointList[size - 1 -i] = tmp; } clockwise = !clockwise; } for(size_t i = 0; i < size; i++) { size_t prev, cur, next; prev = (i + size - 1) % size; cur = i; next = (i + size + 1) % size; vOutset = ComputeOutsetPoint(Point(prev), Point(cur), Point(next)); AddOutsetPoint(vOutset); } } FTContour::FTContour(FT_Vector* contour, char* tags, unsigned int n) { FTPoint prev, cur(contour[(n - 1) % n]), next(contour[0]); FTPoint a, b = next - cur; double olddir, dir = atan2((next - cur).Y(), (next - cur).X()); double angle = 0.0; // See http://freetype.sourceforge.net/freetype2/docs/glyphs/glyphs-6.html // for a full description of FreeType tags. for(unsigned int i = 0; i < n; i++) { prev = cur; cur = next; next = FTPoint(contour[(i + 1) % n]); olddir = dir; dir = atan2((next - cur).Y(), (next - cur).X()); // Compute our path's new direction. double t = dir - olddir; if(t < -M_PI) t += 2 * M_PI; if(t > M_PI) t -= 2 * M_PI; angle += t; // Only process point tags we know. if(n < 2 || FT_CURVE_TAG(tags[i]) == FT_Curve_Tag_On) { AddPoint(cur); } else if(FT_CURVE_TAG(tags[i]) == FT_Curve_Tag_Conic) { FTPoint prev2 = prev, next2 = next; // Previous point is either the real previous point (an "on" // point), or the midpoint between the current one and the // previous "conic off" point. if(FT_CURVE_TAG(tags[(i - 1 + n) % n]) == FT_Curve_Tag_Conic) { prev2 = (cur + prev) * 0.5; AddPoint(prev2); } // Next point is either the real next point or the midpoint. if(FT_CURVE_TAG(tags[(i + 1) % n]) == FT_Curve_Tag_Conic) { next2 = (cur + next) * 0.5; } evaluateQuadraticCurve(prev2, cur, next2); } else if(FT_CURVE_TAG(tags[i]) == FT_Curve_Tag_Cubic && FT_CURVE_TAG(tags[(i + 1) % n]) == FT_Curve_Tag_Cubic) { evaluateCubicCurve(prev, cur, next, FTPoint(contour[(i + 2) % n])); } } // If final angle is positive (+2PI), it's an anti-clockwise contour, // otherwise (-2PI) it's clockwise. clockwise = (angle < 0.0); } void FTContour::buildFrontOutset(float outset) { for(size_t i = 0; i < PointCount(); ++i) { AddFrontPoint(Point(i) + Outset(i) * outset); } } void FTContour::buildBackOutset(float outset) { for(size_t i = 0; i < PointCount(); ++i) { AddBackPoint(Point(i) + Outset(i) * outset); } } ftgl-2.1.3~rc5/src/FTLibrary.h0000644000175000017500000000750111006143072012775 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTLibrary__ #define __FTLibrary__ #include #include FT_FREETYPE_H //#include FT_CACHE_H #include "FTGL/ftgl.h" /** * FTLibrary class is the global accessor for the Freetype library. * * This class encapsulates the Freetype Library. This is a singleton class * and ensures that only one FT_Library is in existence at any one time. * All constructors are private therefore clients cannot create or * instantiate this class themselves and must access it's methods via the * static FTLibrary::Instance() function. * * Just because this class returns a valid FTLibrary object * doesn't mean that the Freetype Library has been successfully initialised. * Clients should check for errors. You can initialse the library AND check * for errors using the following code... * err = FTLibrary::Instance().Error(); * * @see "Freetype 2 Documentation" * */ class FTLibrary { public: /** * Global acces point to the single FTLibrary object. * * @return The global FTLibrary object. */ static const FTLibrary& Instance(); /** * Gets a pointer to the native Freetype library. * * @return A handle to a FreeType library instance. */ const FT_Library* const GetLibrary() const { return library; } /** * Queries the library for errors. * * @return The current error code. */ FT_Error Error() const { return err; } /** * Destructor * * Disposes of the Freetype library */ ~FTLibrary(); private: /** * Default constructors. * * Made private to stop clients creating there own FTLibrary * objects. */ FTLibrary(); FTLibrary(const FT_Library&){} FTLibrary& operator=(const FT_Library&) { return *this; } /** * Initialises the Freetype library * * Even though this function indicates success via the return value, * clients can't see this so must check the error codes. This function * is only ever called by the default c_stor * * @return true if the Freetype library was * successfully initialised, false * otherwise. */ bool Initialise(); /** * Freetype library handle. */ FT_Library* library; // FTC_Manager* manager; /** * Current error code. Zero means no error. */ FT_Error err; }; #endif // __FTLibrary__ ftgl-2.1.3~rc5/src/FTBuffer.cpp0000644000175000017500000000324211023210373013131 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTGL/ftgl.h" FTBuffer::FTBuffer() : width(0), height(0), pixels(0), pos(FTPoint()) { } FTBuffer::~FTBuffer() { if(pixels) { delete[] pixels; } } void FTBuffer::Size(int w, int h) { if(w == width && h == height) { return; } if(w * h != width * height) { if(pixels) { delete[] pixels; } pixels = new unsigned char[w * h]; } memset(pixels, 0, w * h); width = w; height = h; } ftgl-2.1.3~rc5/src/FTCharToGlyphIndexMap.h0000644000175000017500000001143211007274106015205 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTCharToGlyphIndexMap__ #define __FTCharToGlyphIndexMap__ #include #include "FTGL/ftgl.h" /** * Provides a non-STL alternative to the STL map * which maps character codes to glyph indices inside FTCharmap. * * Implementation: * - NumberOfBuckets buckets are considered. * - Each bucket has BucketSize entries. * - When the glyph index for the character code C has to be stored, the * bucket this character belongs to is found using 'C div BucketSize'. * If this bucket has not been allocated yet, do it now. * The entry in the bucked is found using 'C mod BucketSize'. * If it is set to IndexNotFound, then the glyph entry has not been set. * - Try to mimic the calls made to the STL map API. * * Caveats: * - The glyph index is now a signed long instead of unsigned long, so * the special value IndexNotFound (= -1) can be used to specify that the * glyph index has not been stored yet. */ class FTCharToGlyphIndexMap { public: typedef unsigned long CharacterCode; typedef signed long GlyphIndex; enum { NumberOfBuckets = 256, BucketSize = 256, IndexNotFound = -1 }; FTCharToGlyphIndexMap() { this->Indices = 0; } virtual ~FTCharToGlyphIndexMap() { if(this->Indices) { // Free all buckets this->clear(); // Free main structure delete [] this->Indices; this->Indices = 0; } } void clear() { if(this->Indices) { for(int i = 0; i < FTCharToGlyphIndexMap::NumberOfBuckets; i++) { if(this->Indices[i]) { delete [] this->Indices[i]; this->Indices[i] = 0; } } } } const GlyphIndex find(CharacterCode c) { if(!this->Indices) { return 0; } // Find position of char code in buckets div_t pos = div(c, FTCharToGlyphIndexMap::BucketSize); if(!this->Indices[pos.quot]) { return 0; } const FTCharToGlyphIndexMap::GlyphIndex *ptr = &this->Indices[pos.quot][pos.rem]; if(*ptr == FTCharToGlyphIndexMap::IndexNotFound) { return 0; } return *ptr; } void insert(CharacterCode c, GlyphIndex g) { if(!this->Indices) { this->Indices = new GlyphIndex* [FTCharToGlyphIndexMap::NumberOfBuckets]; for(int i = 0; i < FTCharToGlyphIndexMap::NumberOfBuckets; i++) { this->Indices[i] = 0; } } // Find position of char code in buckets div_t pos = div(c, FTCharToGlyphIndexMap::BucketSize); // Allocate bucket if does not exist yet if(!this->Indices[pos.quot]) { this->Indices[pos.quot] = new GlyphIndex [FTCharToGlyphIndexMap::BucketSize]; for(int i = 0; i < FTCharToGlyphIndexMap::BucketSize; i++) { this->Indices[pos.quot][i] = FTCharToGlyphIndexMap::IndexNotFound; } } this->Indices[pos.quot][pos.rem] = g; } private: GlyphIndex** Indices; }; #endif // __FTCharToGlyphIndexMap__ ftgl-2.1.3~rc5/src/FTGlyphContainer.h0000644000175000017500000001151511023223350014314 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTGlyphContainer__ #define __FTGlyphContainer__ #include #include FT_FREETYPE_H #include FT_GLYPH_H #include "FTGL/ftgl.h" #include "FTVector.h" class FTFace; class FTGlyph; class FTCharmap; /** * FTGlyphContainer holds the post processed FTGlyph objects. * * @see FTGlyph */ class FTGlyphContainer { typedef FTVector GlyphVector; public: /** * Constructor * * @param face The Freetype face */ FTGlyphContainer(FTFace* face); /** * Destructor */ ~FTGlyphContainer(); /** * Sets the character map for the face. * * @param encoding the Freetype encoding symbol. See above. * @return true if charmap was valid * and set correctly */ bool CharMap(FT_Encoding encoding); /** * Get the font index of the input character. * * @param characterCode The character code of the requested glyph in the * current encoding eg apple roman. * @return The font index for the character. */ unsigned int FontIndex(const unsigned int characterCode) const; /** * Adds a glyph to this glyph list. * * @param glyph The FTGlyph to be inserted into the container * @param characterCode The char code of the glyph NOT the glyph index. */ void Add(FTGlyph* glyph, const unsigned int characterCode); /** * Get a glyph from the glyph list * * @param characterCode The char code of the glyph NOT the glyph index * @return An FTGlyph or null is it hasn't been * loaded. */ const FTGlyph* const Glyph(const unsigned int characterCode) const; /** * Get the bounding box for a character. * @param characterCode The char code of the glyph NOT the glyph index */ FTBBox BBox(const unsigned int characterCode) const; /** * Returns the kerned advance width for a glyph. * * @param characterCode glyph index of the character * @param nextCharacterCode the next glyph in a string * @return advance width */ float Advance(const unsigned int characterCode, const unsigned int nextCharacterCode); /** * Renders a character * @param characterCode the glyph to be Rendered * @param nextCharacterCode the next glyph in the string. Used for kerning. * @param penPosition the position to Render the glyph * @param renderMode Render mode to display * @return The distance to advance the pen position after Rendering */ FTPoint Render(const unsigned int characterCode, const unsigned int nextCharacterCode, FTPoint penPosition, int renderMode); /** * Queries the Font for errors. * * @return The current error code. */ FT_Error Error() const { return err; } private: /** * The FTGL face */ FTFace* face; /** * The Character Map object associated with the current face */ FTCharmap* charMap; /** * A structure to hold the glyphs */ GlyphVector glyphs; /** * Current error code. Zero means no error. */ FT_Error err; }; #endif // __FTGlyphContainer__ ftgl-2.1.3~rc5/src/FTFace.cpp0000644000175000017500000001337211023223544012567 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTFace.h" #include "FTLibrary.h" #include FT_TRUETYPE_TABLES_H FTFace::FTFace(const char* fontFilePath, bool precomputeKerning) : numGlyphs(0), fontEncodingList(0), kerningCache(0), err(0) { const FT_Long DEFAULT_FACE_INDEX = 0; ftFace = new FT_Face; err = FT_New_Face(*FTLibrary::Instance().GetLibrary(), fontFilePath, DEFAULT_FACE_INDEX, ftFace); if(err) { delete ftFace; ftFace = 0; return; } numGlyphs = (*ftFace)->num_glyphs; hasKerningTable = (FT_HAS_KERNING((*ftFace)) != 0); if(hasKerningTable && precomputeKerning) { BuildKerningCache(); } } FTFace::FTFace(const unsigned char *pBufferBytes, size_t bufferSizeInBytes, bool precomputeKerning) : numGlyphs(0), fontEncodingList(0), kerningCache(0), err(0) { const FT_Long DEFAULT_FACE_INDEX = 0; ftFace = new FT_Face; err = FT_New_Memory_Face(*FTLibrary::Instance().GetLibrary(), (FT_Byte const *)pBufferBytes, (FT_Long)bufferSizeInBytes, DEFAULT_FACE_INDEX, ftFace); if(err) { delete ftFace; ftFace = 0; return; } numGlyphs = (*ftFace)->num_glyphs; hasKerningTable = (FT_HAS_KERNING((*ftFace)) != 0); if(hasKerningTable && precomputeKerning) { BuildKerningCache(); } } FTFace::~FTFace() { if(kerningCache) { delete[] kerningCache; } if(ftFace) { FT_Done_Face(*ftFace); delete ftFace; ftFace = 0; } } bool FTFace::Attach(const char* fontFilePath) { err = FT_Attach_File(*ftFace, fontFilePath); return !err; } bool FTFace::Attach(const unsigned char *pBufferBytes, size_t bufferSizeInBytes) { FT_Open_Args open; open.flags = FT_OPEN_MEMORY; open.memory_base = (FT_Byte const *)pBufferBytes; open.memory_size = (FT_Long)bufferSizeInBytes; err = FT_Attach_Stream(*ftFace, &open); return !err; } const FTSize& FTFace::Size(const unsigned int size, const unsigned int res) { charSize.CharSize(ftFace, size, res, res); err = charSize.Error(); return charSize; } unsigned int FTFace::CharMapCount() const { return (*ftFace)->num_charmaps; } FT_Encoding* FTFace::CharMapList() { if(0 == fontEncodingList) { fontEncodingList = new FT_Encoding[CharMapCount()]; for(size_t i = 0; i < CharMapCount(); ++i) { fontEncodingList[i] = (*ftFace)->charmaps[i]->encoding; } } return fontEncodingList; } FTPoint FTFace::KernAdvance(unsigned int index1, unsigned int index2) { float x, y; if(!hasKerningTable || !index1 || !index2) { return FTPoint(0.0f, 0.0f); } if(kerningCache && index1 < FTFace::MAX_PRECOMPUTED && index2 < FTFace::MAX_PRECOMPUTED) { x = kerningCache[2 * (index2 * FTFace::MAX_PRECOMPUTED + index1)]; y = kerningCache[2 * (index2 * FTFace::MAX_PRECOMPUTED + index1) + 1]; return FTPoint(x, y); } FT_Vector kernAdvance; kernAdvance.x = kernAdvance.y = 0; err = FT_Get_Kerning(*ftFace, index1, index2, ft_kerning_unfitted, &kernAdvance); if(err) { return FTPoint(0.0f, 0.0f); } x = static_cast(kernAdvance.x) / 64.0f; y = static_cast(kernAdvance.y) / 64.0f; return FTPoint(x, y); } FT_GlyphSlot FTFace::Glyph(unsigned int index, FT_Int load_flags) { err = FT_Load_Glyph(*ftFace, index, load_flags); if(err) { return NULL; } return (*ftFace)->glyph; } void FTFace::BuildKerningCache() { FT_Vector kernAdvance; kernAdvance.x = 0; kernAdvance.y = 0; kerningCache = new float[FTFace::MAX_PRECOMPUTED * FTFace::MAX_PRECOMPUTED * 2]; for(unsigned int j = 0; j < FTFace::MAX_PRECOMPUTED; j++) { for(unsigned int i = 0; i < FTFace::MAX_PRECOMPUTED; i++) { err = FT_Get_Kerning(*ftFace, i, j, ft_kerning_unfitted, &kernAdvance); if(err) { delete[] kerningCache; kerningCache = NULL; return; } kerningCache[2 * (j * FTFace::MAX_PRECOMPUTED + i)] = static_cast(kernAdvance.x) / 64.0f; kerningCache[2 * (j * FTFace::MAX_PRECOMPUTED + i) + 1] = static_cast(kernAdvance.y) / 64.0f; } } } ftgl-2.1.3~rc5/src/FTLibrary.cpp0000644000175000017500000000404411005631743013335 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTLibrary.h" const FTLibrary& FTLibrary::Instance() { static FTLibrary ftlib; return ftlib; } FTLibrary::~FTLibrary() { if(library != 0) { FT_Done_FreeType(*library); delete library; library= 0; } // if(manager != 0) // { // FTC_Manager_Done(manager); // // delete manager; // manager= 0; // } } FTLibrary::FTLibrary() : library(0), err(0) { Initialise(); } bool FTLibrary::Initialise() { if(library != 0) return true; library = new FT_Library; err = FT_Init_FreeType(library); if(err) { delete library; library = 0; return false; } // FTC_Manager* manager; // // if(FTC_Manager_New(lib, 0, 0, 0, my_face_requester, 0, manager) // { // delete manager; // manager= 0; // return false; // } return true; } ftgl-2.1.3~rc5/src/FTSize.h0000644000175000017500000001126711006143072012307 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTSize__ #define __FTSize__ #include #include FT_FREETYPE_H #include "FTGL/ftgl.h" /** * FTSize class provides an abstraction layer for the Freetype Size. * * @see "Freetype 2 Documentation" * */ class FTSize { public: /** * Default Constructor */ FTSize(); /** * Destructor */ virtual ~FTSize(); /** * Sets the char size for the current face. * * This doesn't guarantee that the size was set correctly. Clients * should check errors. If an error does occur the size object isn't modified. * * @param face Parent face for this size object * @param point_size the face size in points (1/72 inch) * @param x_resolution the horizontal resolution of the target device. * @param y_resolution the vertical resolution of the target device. * @return true if the size has been set. Clients should check Error() for more information if this function returns false() */ bool CharSize(FT_Face* face, unsigned int point_size, unsigned int x_resolution, unsigned int y_resolution); /** * get the char size for the current face. * * @return The char size in points */ unsigned int CharSize() const; /** * Gets the global ascender height for the face in pixels. * * @return Ascender height */ float Ascender() const; /** * Gets the global descender height for the face in pixels. * * @return Ascender height */ float Descender() const; /** * Gets the global face height for the face. * * If the face is scalable this returns the height of the global * bounding box which ensures that any glyph will be less than or * equal to this height. If the font isn't scalable there is no * guarantee that glyphs will not be taller than this value. * * @return height in pixels. */ float Height() const; /** * Gets the global face width for the face. * * If the face is scalable this returns the width of the global * bounding box which ensures that any glyph will be less than or * equal to this width. If the font isn't scalable this value is * the max_advance for the face. * * @return width in pixels. */ float Width() const; /** * Gets the underline position for the face. * * @return underline position in pixels */ float Underline() const; /** * Queries for errors. * * @return The current error code. */ FT_Error Error() const { return err; } private: /** * The current Freetype face that this FTSize object relates to. */ FT_Face* ftFace; /** * The Freetype size. */ FT_Size ftSize; /** * The size in points. */ unsigned int size; /** * The horizontal resolution. */ unsigned int xResolution; /** * The vertical resolution. */ unsigned int yResolution; /** * Current error code. Zero means no error. */ FT_Error err; }; #endif // __FTSize__ ftgl-2.1.3~rc5/src/FTGlyphContainer.cpp0000644000175000017500000000635211023223576014664 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTGL/ftgl.h" #include "FTGlyphContainer.h" #include "FTFace.h" #include "FTCharmap.h" FTGlyphContainer::FTGlyphContainer(FTFace* f) : face(f), err(0) { glyphs.push_back(NULL); charMap = new FTCharmap(face); } FTGlyphContainer::~FTGlyphContainer() { GlyphVector::iterator it; for(it = glyphs.begin(); it != glyphs.end(); ++it) { delete *it; } glyphs.clear(); delete charMap; } bool FTGlyphContainer::CharMap(FT_Encoding encoding) { bool result = charMap->CharMap(encoding); err = charMap->Error(); return result; } unsigned int FTGlyphContainer::FontIndex(const unsigned int charCode) const { return charMap->FontIndex(charCode); } void FTGlyphContainer::Add(FTGlyph* tempGlyph, const unsigned int charCode) { charMap->InsertIndex(charCode, glyphs.size()); glyphs.push_back(tempGlyph); } const FTGlyph* const FTGlyphContainer::Glyph(const unsigned int charCode) const { unsigned int index = charMap->GlyphListIndex(charCode); return glyphs[index]; } FTBBox FTGlyphContainer::BBox(const unsigned int charCode) const { return Glyph(charCode)->BBox(); } float FTGlyphContainer::Advance(const unsigned int charCode, const unsigned int nextCharCode) { unsigned int left = charMap->FontIndex(charCode); unsigned int right = charMap->FontIndex(nextCharCode); return face->KernAdvance(left, right).Xf() + Glyph(charCode)->Advance(); } FTPoint FTGlyphContainer::Render(const unsigned int charCode, const unsigned int nextCharCode, FTPoint penPosition, int renderMode) { unsigned int left = charMap->FontIndex(charCode); unsigned int right = charMap->FontIndex(nextCharCode); FTPoint kernAdvance = face->KernAdvance(left, right); if(!face->Error()) { unsigned int index = charMap->GlyphListIndex(charCode); kernAdvance += glyphs[index]->Render(penPosition, renderMode); } return kernAdvance; } ftgl-2.1.3~rc5/src/FTVectoriser.cpp0000644000175000017500000002106411023223720014047 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Éric Beets * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTInternals.h" #include "FTVectoriser.h" #ifndef CALLBACK #define CALLBACK #endif #if defined __APPLE_CC__ && __APPLE_CC__ < 5465 typedef GLvoid (*GLUTesselatorFunction) (...); #elif defined WIN32 && !defined __CYGWIN__ typedef GLvoid (CALLBACK *GLUTesselatorFunction) (); #else typedef GLvoid (*GLUTesselatorFunction) (); #endif void CALLBACK ftglError(GLenum errCode, FTMesh* mesh) { mesh->Error(errCode); } void CALLBACK ftglVertex(void* data, FTMesh* mesh) { FTGL_DOUBLE* vertex = static_cast(data); mesh->AddPoint(vertex[0], vertex[1], vertex[2]); } void CALLBACK ftglCombine(FTGL_DOUBLE coords[3], void* vertex_data[4], GLfloat weight[4], void** outData, FTMesh* mesh) { const FTGL_DOUBLE* vertex = static_cast(coords); *outData = const_cast(mesh->Combine(vertex[0], vertex[1], vertex[2])); } void CALLBACK ftglBegin(GLenum type, FTMesh* mesh) { mesh->Begin(type); } void CALLBACK ftglEnd(FTMesh* mesh) { mesh->End(); } FTMesh::FTMesh() : currentTesselation(0), err(0) { tesselationList.reserve(16); } FTMesh::~FTMesh() { for(size_t t = 0; t < tesselationList.size(); ++t) { delete tesselationList[t]; } tesselationList.clear(); } void FTMesh::AddPoint(const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z) { currentTesselation->AddPoint(x, y, z); } const FTGL_DOUBLE* FTMesh::Combine(const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z) { tempPointList.push_back(FTPoint(x, y,z)); return static_cast(tempPointList.back()); } void FTMesh::Begin(GLenum meshType) { currentTesselation = new FTTesselation(meshType); } void FTMesh::End() { tesselationList.push_back(currentTesselation); } const FTTesselation* const FTMesh::Tesselation(size_t index) const { return (index < tesselationList.size()) ? tesselationList[index] : NULL; } FTVectoriser::FTVectoriser(const FT_GlyphSlot glyph) : contourList(0), mesh(0), ftContourCount(0), contourFlag(0) { if(glyph) { outline = glyph->outline; ftContourCount = outline.n_contours; contourList = 0; contourFlag = outline.flags; ProcessContours(); } } FTVectoriser::~FTVectoriser() { for(size_t c = 0; c < ContourCount(); ++c) { delete contourList[c]; } delete [] contourList; delete mesh; } void FTVectoriser::ProcessContours() { short contourLength = 0; short startIndex = 0; short endIndex = 0; contourList = new FTContour*[ftContourCount]; for(int i = 0; i < ftContourCount; ++i) { FT_Vector* pointList = &outline.points[startIndex]; char* tagList = &outline.tags[startIndex]; endIndex = outline.contours[i]; contourLength = (endIndex - startIndex) + 1; FTContour* contour = new FTContour(pointList, tagList, contourLength); contourList[i] = contour; startIndex = endIndex + 1; } // Compute each contour's parity. FIXME: see if FT_Outline_Get_Orientation // can do it for us. for(int i = 0; i < ftContourCount; i++) { FTContour *c1 = contourList[i]; // 1. Find the leftmost point. FTPoint leftmost(65536.0, 0.0); for(size_t n = 0; n < c1->PointCount(); n++) { FTPoint p = c1->Point(n); if(p.X() < leftmost.X()) { leftmost = p; } } // 2. Count how many other contours we cross when going further to // the left. int parity = 0; for(int j = 0; j < ftContourCount; j++) { if(j == i) { continue; } FTContour *c2 = contourList[j]; for(size_t n = 0; n < c2->PointCount(); n++) { FTPoint p1 = c2->Point(n); FTPoint p2 = c2->Point((n + 1) % c2->PointCount()); /* FIXME: combinations of >= > <= and < do not seem stable */ if((p1.Y() < leftmost.Y() && p2.Y() < leftmost.Y()) || (p1.Y() >= leftmost.Y() && p2.Y() >= leftmost.Y()) || (p1.X() > leftmost.X() && p2.X() > leftmost.X())) { continue; } else if(p1.X() < leftmost.X() && p2.X() < leftmost.X()) { parity++; } else { FTPoint a = p1 - leftmost; FTPoint b = p2 - leftmost; if(b.X() * a.Y() > b.Y() * a.X()) { parity++; } } } } // 3. Make sure the glyph has the proper parity. c1->SetParity(parity); } } size_t FTVectoriser::PointCount() { size_t s = 0; for(size_t c = 0; c < ContourCount(); ++c) { s += contourList[c]->PointCount(); } return s; } const FTContour* const FTVectoriser::Contour(size_t index) const { return (index < ContourCount()) ? contourList[index] : NULL; } void FTVectoriser::MakeMesh(FTGL_DOUBLE zNormal, int outsetType, float outsetSize) { if(mesh) { delete mesh; } mesh = new FTMesh; GLUtesselator* tobj = gluNewTess(); gluTessCallback(tobj, GLU_TESS_BEGIN_DATA, (GLUTesselatorFunction)ftglBegin); gluTessCallback(tobj, GLU_TESS_VERTEX_DATA, (GLUTesselatorFunction)ftglVertex); gluTessCallback(tobj, GLU_TESS_COMBINE_DATA, (GLUTesselatorFunction)ftglCombine); gluTessCallback(tobj, GLU_TESS_END_DATA, (GLUTesselatorFunction)ftglEnd); gluTessCallback(tobj, GLU_TESS_ERROR_DATA, (GLUTesselatorFunction)ftglError); if(contourFlag & ft_outline_even_odd_fill) // ft_outline_reverse_fill { gluTessProperty(tobj, GLU_TESS_WINDING_RULE, GLU_TESS_WINDING_ODD); } else { gluTessProperty(tobj, GLU_TESS_WINDING_RULE, GLU_TESS_WINDING_NONZERO); } gluTessProperty(tobj, GLU_TESS_TOLERANCE, 0); gluTessNormal(tobj, 0.0f, 0.0f, zNormal); gluTessBeginPolygon(tobj, mesh); for(size_t c = 0; c < ContourCount(); ++c) { /* Build the */ switch(outsetType) { case 1 : contourList[c]->buildFrontOutset(outsetSize); break; case 2 : contourList[c]->buildBackOutset(outsetSize); break; } const FTContour* contour = contourList[c]; gluTessBeginContour(tobj); for(size_t p = 0; p < contour->PointCount(); ++p) { const FTGL_DOUBLE* d; switch(outsetType) { case 1: d = contour->FrontPoint(p); break; case 2: d = contour->BackPoint(p); break; case 0: default: d = contour->Point(p); break; } // XXX: gluTessVertex doesn't modify the data but does not // specify "const" in its prototype, so we cannot cast to // a const type. gluTessVertex(tobj, (GLdouble *)d, (GLvoid *)d); } gluTessEndContour(tobj); } gluTessEndPolygon(tobj); gluDeleteTess(tobj); } ftgl-2.1.3~rc5/src/FTCharmap.h0000644000175000017500000001220311007776767012767 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTCharmap__ #define __FTCharmap__ #include #include FT_FREETYPE_H #include FT_GLYPH_H #include "FTGL/ftgl.h" #include "FTCharToGlyphIndexMap.h" /** * FTCharmap takes care of specifying the encoding for a font and mapping * character codes to glyph indices. * * It doesn't preprocess all indices, only on an as needed basis. This may * seem like a performance penalty but it is quicker than using the 'raw' * freetype calls and will save significant amounts of memory when dealing * with unicode encoding * * @see "Freetype 2 Documentation" * */ class FTFace; class FTCharmap { public: /** * Constructor */ FTCharmap(FTFace* face); /** * Destructor */ virtual ~FTCharmap(); /** * Queries for the current character map code. * * @return The current character map code. */ FT_Encoding Encoding() const { return ftEncoding; } /** * Sets the character map for the face. If an error occurs the object is not modified. * Valid encodings as at Freetype 2.0.4 * ft_encoding_none * ft_encoding_symbol * ft_encoding_unicode * ft_encoding_latin_2 * ft_encoding_sjis * ft_encoding_gb2312 * ft_encoding_big5 * ft_encoding_wansung * ft_encoding_johab * ft_encoding_adobe_standard * ft_encoding_adobe_expert * ft_encoding_adobe_custom * ft_encoding_apple_roman * * @param encoding the Freetype encoding symbol. See above. * @return true if charmap was valid and set * correctly. */ bool CharMap(FT_Encoding encoding); /** * Get the FTGlyphContainer index of the input character. * * @param characterCode The character code of the requested glyph in * the current encoding eg apple roman. * @return The FTGlyphContainer index for the character or zero * if it wasn't found */ unsigned int GlyphListIndex(const unsigned int characterCode); /** * Get the font glyph index of the input character. * * @param characterCode The character code of the requested glyph in * the current encoding eg apple roman. * @return The glyph index for the character. */ unsigned int FontIndex(const unsigned int characterCode); /** * Set the FTGlyphContainer index of the character code. * * @param characterCode The character code of the requested glyph in * the current encoding eg apple roman. * @param containerIndex The index into the FTGlyphContainer of the * character code. */ void InsertIndex(const unsigned int characterCode, const size_t containerIndex); /** * Queries for errors. * * @return The current error code. Zero means no error. */ FT_Error Error() const { return err; } private: /** * Current character map code. */ FT_Encoding ftEncoding; /** * The current Freetype face. */ const FT_Face ftFace; /** * A structure that maps glyph indices to character codes * * < character code, face glyph index> */ typedef FTCharToGlyphIndexMap CharacterMap; CharacterMap charMap; /** * Precomputed font indices. */ static const unsigned int MAX_PRECOMPUTED = 128; unsigned int charIndexCache[MAX_PRECOMPUTED]; /** * Current error code. */ FT_Error err; }; #endif // __FTCharmap__ ftgl-2.1.3~rc5/src/FTGlyph/0000777000175000017500000000000011024234670012371 500000000000000ftgl-2.1.3~rc5/src/FTGlyph/FTBufferGlyph.cpp0000644000175000017500000000625711023207501015462 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTBufferGlyphImpl.h" // // FTGLBufferGlyph // FTBufferGlyph::FTBufferGlyph(FT_GlyphSlot glyph, FTBuffer *buffer) : FTGlyph(new FTBufferGlyphImpl(glyph, buffer)) {} FTBufferGlyph::~FTBufferGlyph() {} const FTPoint& FTBufferGlyph::Render(const FTPoint& pen, int renderMode) { FTBufferGlyphImpl *myimpl = dynamic_cast(impl); return myimpl->RenderImpl(pen, renderMode); } // // FTGLBufferGlyphImpl // FTBufferGlyphImpl::FTBufferGlyphImpl(FT_GlyphSlot glyph, FTBuffer *p) : FTGlyphImpl(glyph), has_bitmap(false), buffer(p) { err = FT_Render_Glyph(glyph, FT_RENDER_MODE_NORMAL); if(err || glyph->format != ft_glyph_format_bitmap) { return; } bitmap = glyph->bitmap; pixels = new unsigned char[bitmap.pitch * bitmap.rows]; memcpy(pixels, bitmap.buffer, bitmap.pitch * bitmap.rows); if(bitmap.width && bitmap.rows) { has_bitmap = true; corner = FTPoint(glyph->bitmap_left, glyph->bitmap_top); } } FTBufferGlyphImpl::~FTBufferGlyphImpl() { delete[] pixels; } const FTPoint& FTBufferGlyphImpl::RenderImpl(const FTPoint& pen, int renderMode) { if(has_bitmap) { FTPoint pos(buffer->Pos() + pen + corner); int dx = (int)(pos.Xf() + 0.5f); int dy = buffer->Height() - (int)(pos.Yf() + 0.5f); unsigned char * dest = buffer->Pixels() + dx + dy * buffer->Width(); for(int y = 0; y < bitmap.rows; y++) { // FIXME: change the loop bounds instead of doing this test if(y + dy < 0 || y + dy >= buffer->Height()) continue; for(int x = 0; x < bitmap.width; x++) { if(x + dx < 0 || x + dx >= buffer->Width()) continue; unsigned char p = pixels[y * bitmap.pitch + x]; if(p) { dest[y * buffer->Width() + x] = p; } } } } return advance; } ftgl-2.1.3~rc5/src/FTGlyph/FTExtrudeGlyph.cpp0000644000175000017500000001631311023223602015663 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTExtrudeGlyphImpl.h" #include "FTVectoriser.h" // // FTGLExtrudeGlyph // FTExtrudeGlyph::FTExtrudeGlyph(FT_GlyphSlot glyph, float depth, float frontOutset, float backOutset, bool useDisplayList) : FTGlyph(new FTExtrudeGlyphImpl(glyph, depth, frontOutset, backOutset, useDisplayList)) {} FTExtrudeGlyph::~FTExtrudeGlyph() {} const FTPoint& FTExtrudeGlyph::Render(const FTPoint& pen, int renderMode) { FTExtrudeGlyphImpl *myimpl = dynamic_cast(impl); return myimpl->RenderImpl(pen, renderMode); } // // FTGLExtrudeGlyphImpl // FTExtrudeGlyphImpl::FTExtrudeGlyphImpl(FT_GlyphSlot glyph, float _depth, float _frontOutset, float _backOutset, bool useDisplayList) : FTGlyphImpl(glyph), vectoriser(0), glList(0) { bBox.SetDepth(-_depth); if(ft_glyph_format_outline != glyph->format) { err = 0x14; // Invalid_Outline return; } vectoriser = new FTVectoriser(glyph); if((vectoriser->ContourCount() < 1) || (vectoriser->PointCount() < 3)) { delete vectoriser; vectoriser = NULL; return; } hscale = glyph->face->size->metrics.x_ppem * 64; vscale = glyph->face->size->metrics.y_ppem * 64; depth = _depth; frontOutset = _frontOutset; backOutset = _backOutset; if(useDisplayList) { glList = glGenLists(3); /* Front face */ glNewList(glList + 0, GL_COMPILE); RenderFront(); glEndList(); /* Back face */ glNewList(glList + 1, GL_COMPILE); RenderBack(); glEndList(); /* Side face */ glNewList(glList + 2, GL_COMPILE); RenderSide(); glEndList(); delete vectoriser; vectoriser = NULL; } } FTExtrudeGlyphImpl::~FTExtrudeGlyphImpl() { if(glList) { glDeleteLists(glList, 3); } else if(vectoriser) { delete vectoriser; } } const FTPoint& FTExtrudeGlyphImpl::RenderImpl(const FTPoint& pen, int renderMode) { glTranslatef(pen.Xf(), pen.Yf(), pen.Zf()); if(glList) { if(renderMode & FTGL::RENDER_FRONT) glCallList(glList + 0); if(renderMode & FTGL::RENDER_BACK) glCallList(glList + 1); if(renderMode & FTGL::RENDER_SIDE) glCallList(glList + 2); } else if(vectoriser) { if(renderMode & FTGL::RENDER_FRONT) RenderFront(); if(renderMode & FTGL::RENDER_BACK) RenderBack(); if(renderMode & FTGL::RENDER_SIDE) RenderSide(); } glTranslatef(-pen.Xf(), -pen.Yf(), -pen.Zf()); return advance; } void FTExtrudeGlyphImpl::RenderFront() { vectoriser->MakeMesh(1.0, 1, frontOutset); glNormal3d(0.0, 0.0, 1.0); const FTMesh *mesh = vectoriser->GetMesh(); for(unsigned int j = 0; j < mesh->TesselationCount(); ++j) { const FTTesselation* subMesh = mesh->Tesselation(j); unsigned int polygonType = subMesh->PolygonType(); glBegin(polygonType); for(unsigned int i = 0; i < subMesh->PointCount(); ++i) { FTPoint pt = subMesh->Point(i); glTexCoord2f(pt.Xf() / hscale, pt.Yf() / vscale); glVertex3f(pt.Xf() / 64.0f, pt.Yf() / 64.0f, 0.0f); } glEnd(); } } void FTExtrudeGlyphImpl::RenderBack() { vectoriser->MakeMesh(-1.0, 2, backOutset); glNormal3d(0.0, 0.0, -1.0); const FTMesh *mesh = vectoriser->GetMesh(); for(unsigned int j = 0; j < mesh->TesselationCount(); ++j) { const FTTesselation* subMesh = mesh->Tesselation(j); unsigned int polygonType = subMesh->PolygonType(); glBegin(polygonType); for(unsigned int i = 0; i < subMesh->PointCount(); ++i) { FTPoint pt = subMesh->Point(i); glTexCoord2f(subMesh->Point(i).Xf() / hscale, subMesh->Point(i).Yf() / vscale); glVertex3f(subMesh->Point(i).Xf() / 64.0f, subMesh->Point(i).Yf() / 64.0f, -depth); } glEnd(); } } void FTExtrudeGlyphImpl::RenderSide() { int contourFlag = vectoriser->ContourFlag(); for(size_t c = 0; c < vectoriser->ContourCount(); ++c) { const FTContour* contour = vectoriser->Contour(c); size_t n = contour->PointCount(); if(n < 2) { continue; } glBegin(GL_QUAD_STRIP); for(size_t j = 0; j <= n; ++j) { size_t cur = (j == n) ? 0 : j; size_t next = (cur == n - 1) ? 0 : cur + 1; FTPoint frontPt = contour->FrontPoint(cur); FTPoint nextPt = contour->FrontPoint(next); FTPoint backPt = contour->BackPoint(cur); FTPoint normal = FTPoint(0.f, 0.f, 1.f) ^ (frontPt - nextPt); if(normal != FTPoint(0.0f, 0.0f, 0.0f)) { glNormal3dv(static_cast(normal.Normalise())); } glTexCoord2f(frontPt.Xf() / hscale, frontPt.Yf() / vscale); if(contourFlag & ft_outline_reverse_fill) { glVertex3f(backPt.Xf() / 64.0f, backPt.Yf() / 64.0f, 0.0f); glVertex3f(frontPt.Xf() / 64.0f, frontPt.Yf() / 64.0f, -depth); } else { glVertex3f(backPt.Xf() / 64.0f, backPt.Yf() / 64.0f, -depth); glVertex3f(frontPt.Xf() / 64.0f, frontPt.Yf() / 64.0f, 0.0f); } } glEnd(); } } ftgl-2.1.3~rc5/src/FTGlyph/FTPolygonGlyph.cpp0000644000175000017500000000754411023223631015702 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Éric Beets * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTPolygonGlyphImpl.h" #include "FTVectoriser.h" // // FTGLPolyGlyph // FTPolygonGlyph::FTPolygonGlyph(FT_GlyphSlot glyph, float outset, bool useDisplayList) : FTGlyph(new FTPolygonGlyphImpl(glyph, outset, useDisplayList)) {} FTPolygonGlyph::~FTPolygonGlyph() {} const FTPoint& FTPolygonGlyph::Render(const FTPoint& pen, int renderMode) { FTPolygonGlyphImpl *myimpl = dynamic_cast(impl); return myimpl->RenderImpl(pen, renderMode); } // // FTGLPolyGlyphImpl // FTPolygonGlyphImpl::FTPolygonGlyphImpl(FT_GlyphSlot glyph, float _outset, bool useDisplayList) : FTGlyphImpl(glyph), glList(0) { if(ft_glyph_format_outline != glyph->format) { err = 0x14; // Invalid_Outline return; } vectoriser = new FTVectoriser(glyph); if((vectoriser->ContourCount() < 1) || (vectoriser->PointCount() < 3)) { delete vectoriser; vectoriser = NULL; return; } hscale = glyph->face->size->metrics.x_ppem * 64; vscale = glyph->face->size->metrics.y_ppem * 64; outset = _outset; if(useDisplayList) { glList = glGenLists(1); glNewList(glList, GL_COMPILE); DoRender(); glEndList(); delete vectoriser; vectoriser = NULL; } } FTPolygonGlyphImpl::~FTPolygonGlyphImpl() { if(glList) { glDeleteLists(glList, 1); } else if(vectoriser) { delete vectoriser; } } const FTPoint& FTPolygonGlyphImpl::RenderImpl(const FTPoint& pen, int renderMode) { glTranslatef(pen.Xf(), pen.Yf(), pen.Zf()); if(glList) { glCallList(glList); } else if(vectoriser) { DoRender(); } glTranslatef(-pen.Xf(), -pen.Yf(), -pen.Zf()); return advance; } void FTPolygonGlyphImpl::DoRender() { vectoriser->MakeMesh(1.0, 1, outset); const FTMesh *mesh = vectoriser->GetMesh(); for(unsigned int t = 0; t < mesh->TesselationCount(); ++t) { const FTTesselation* subMesh = mesh->Tesselation(t); unsigned int polygonType = subMesh->PolygonType(); glBegin(polygonType); for(unsigned int i = 0; i < subMesh->PointCount(); ++i) { FTPoint point = subMesh->Point(i); glTexCoord2f(point.Xf() / hscale, point.Yf() / vscale); glVertex3f(point.Xf() / 64.0f, point.Yf() / 64.0f, 0.0f); } glEnd(); } } ftgl-2.1.3~rc5/src/FTGlyph/FTTextureGlyph.cpp0000644000175000017500000001034611023223633015707 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTTextureGlyphImpl.h" // // FTGLTextureGlyph // FTTextureGlyph::FTTextureGlyph(FT_GlyphSlot glyph, int id, int xOffset, int yOffset, int width, int height) : FTGlyph(new FTTextureGlyphImpl(glyph, id, xOffset, yOffset, width, height)) {} FTTextureGlyph::~FTTextureGlyph() {} const FTPoint& FTTextureGlyph::Render(const FTPoint& pen, int renderMode) { FTTextureGlyphImpl *myimpl = dynamic_cast(impl); return myimpl->RenderImpl(pen, renderMode); } // // FTGLTextureGlyphImpl // GLint FTTextureGlyphImpl::activeTextureID = 0; FTTextureGlyphImpl::FTTextureGlyphImpl(FT_GlyphSlot glyph, int id, int xOffset, int yOffset, int width, int height) : FTGlyphImpl(glyph), destWidth(0), destHeight(0), glTextureID(id) { /* FIXME: need to propagate the render mode all the way down to * here in order to get FT_RENDER_MODE_MONO aliased fonts. */ err = FT_Render_Glyph(glyph, FT_RENDER_MODE_NORMAL); if(err || glyph->format != ft_glyph_format_bitmap) { return; } FT_Bitmap bitmap = glyph->bitmap; destWidth = bitmap.width; destHeight = bitmap.rows; if(destWidth && destHeight) { glPushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT); glPixelStorei(GL_UNPACK_LSB_FIRST, GL_FALSE); glPixelStorei(GL_UNPACK_ROW_LENGTH, 0); glPixelStorei(GL_UNPACK_ALIGNMENT, 1); glBindTexture(GL_TEXTURE_2D, glTextureID); glTexSubImage2D(GL_TEXTURE_2D, 0, xOffset, yOffset, destWidth, destHeight, GL_ALPHA, GL_UNSIGNED_BYTE, bitmap.buffer); glPopClientAttrib(); } // 0 // +----+ // | | // | | // | | // +----+ // 1 uv[0].X(static_cast(xOffset) / static_cast(width)); uv[0].Y(static_cast(yOffset) / static_cast(height)); uv[1].X(static_cast(xOffset + destWidth) / static_cast(width)); uv[1].Y(static_cast(yOffset + destHeight) / static_cast(height)); corner = FTPoint(glyph->bitmap_left, glyph->bitmap_top); } FTTextureGlyphImpl::~FTTextureGlyphImpl() {} const FTPoint& FTTextureGlyphImpl::RenderImpl(const FTPoint& pen, int renderMode) { float dx, dy; if(activeTextureID != glTextureID) { glBindTexture(GL_TEXTURE_2D, (GLuint)glTextureID); activeTextureID = glTextureID; } dx = floor(pen.Xf() + corner.Xf()); dy = floor(pen.Yf() + corner.Yf()); glBegin(GL_QUADS); glTexCoord2f(uv[0].Xf(), uv[0].Yf()); glVertex2f(dx, dy); glTexCoord2f(uv[0].Xf(), uv[1].Yf()); glVertex2f(dx, dy - destHeight); glTexCoord2f(uv[1].Xf(), uv[1].Yf()); glVertex2f(dx + destWidth, dy - destHeight); glTexCoord2f(uv[1].Xf(), uv[0].Yf()); glVertex2f(dx + destWidth, dy); glEnd(); return advance; } ftgl-2.1.3~rc5/src/FTGlyph/FTOutlineGlyphImpl.h0000644000175000017500000000403011023223371016145 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTOutlineGlyphImpl__ #define __FTOutlineGlyphImpl__ #include "FTGlyphImpl.h" class FTVectoriser; class FTOutlineGlyphImpl : public FTGlyphImpl { friend class FTOutlineGlyph; protected: FTOutlineGlyphImpl(FT_GlyphSlot glyph, float outset, bool useDisplayList); virtual ~FTOutlineGlyphImpl(); virtual const FTPoint& RenderImpl(const FTPoint& pen, int renderMode); private: /** * Private rendering method. */ void DoRender(); /** * Private rendering variables. */ FTVectoriser *vectoriser; /** * Private rendering variables. */ float outset; /** * OpenGL display list */ GLuint glList; }; #endif // __FTOutlineGlyphImpl__ ftgl-2.1.3~rc5/src/FTGlyph/FTGlyph.cpp0000644000175000017500000000423411023223604014323 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTGlyphImpl.h" // // FTGlyph // FTGlyph::FTGlyph(FT_GlyphSlot glyph) { impl = new FTGlyphImpl(glyph); } FTGlyph::FTGlyph(FTGlyphImpl *pImpl) { impl = pImpl; } FTGlyph::~FTGlyph() { delete impl; } float FTGlyph::Advance() const { return impl->Advance(); } const FTBBox& FTGlyph::BBox() const { return impl->BBox(); } FT_Error FTGlyph::Error() const { return impl->Error(); } // // FTGlyphImpl // FTGlyphImpl::FTGlyphImpl(FT_GlyphSlot glyph, bool useList) : err(0) { if(glyph) { bBox = FTBBox(glyph); advance = FTPoint(glyph->advance.x / 64.0f, glyph->advance.y / 64.0f); } } FTGlyphImpl::~FTGlyphImpl() {} float FTGlyphImpl::Advance() const { return advance.Xf(); } const FTBBox& FTGlyphImpl::BBox() const { return bBox; } FT_Error FTGlyphImpl::Error() const { return err; } ftgl-2.1.3~rc5/src/FTGlyph/FTExtrudeGlyphImpl.h0000644000175000017500000000420111023223364016150 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTExtrudeGlyphImpl__ #define __FTExtrudeGlyphImpl__ #include "FTGlyphImpl.h" class FTVectoriser; class FTExtrudeGlyphImpl : public FTGlyphImpl { friend class FTExtrudeGlyph; protected: FTExtrudeGlyphImpl(FT_GlyphSlot glyph, float depth, float frontOutset, float backOutset, bool useDisplayList); virtual ~FTExtrudeGlyphImpl(); virtual const FTPoint& RenderImpl(const FTPoint& pen, int renderMode); private: /** * Private rendering methods. */ void RenderFront(); void RenderBack(); void RenderSide(); /** * Private rendering variables. */ unsigned int hscale, vscale; float depth; float frontOutset, backOutset; FTVectoriser *vectoriser; /** * OpenGL display list */ GLuint glList; }; #endif // __FTExtrudeGlyphImpl__ ftgl-2.1.3~rc5/src/FTGlyph/FTPixmapGlyph.cpp0000644000175000017500000000676711023223623015520 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTPixmapGlyphImpl.h" // // FTGLPixmapGlyph // FTPixmapGlyph::FTPixmapGlyph(FT_GlyphSlot glyph) : FTGlyph(new FTPixmapGlyphImpl(glyph)) {} FTPixmapGlyph::~FTPixmapGlyph() {} const FTPoint& FTPixmapGlyph::Render(const FTPoint& pen, int renderMode) { FTPixmapGlyphImpl *myimpl = dynamic_cast(impl); return myimpl->RenderImpl(pen, renderMode); } // // FTGLPixmapGlyphImpl // FTPixmapGlyphImpl::FTPixmapGlyphImpl(FT_GlyphSlot glyph) : FTGlyphImpl(glyph), destWidth(0), destHeight(0), data(0) { err = FT_Render_Glyph(glyph, FT_RENDER_MODE_NORMAL); if(err || ft_glyph_format_bitmap != glyph->format) { return; } FT_Bitmap bitmap = glyph->bitmap; //check the pixel mode //ft_pixel_mode_grays int srcWidth = bitmap.width; int srcHeight = bitmap.rows; destWidth = srcWidth; destHeight = srcHeight; if(destWidth && destHeight) { data = new unsigned char[destWidth * destHeight * 2]; unsigned char* src = bitmap.buffer; unsigned char* dest = data + ((destHeight - 1) * destWidth * 2); size_t destStep = destWidth * 2 * 2; for(int y = 0; y < srcHeight; ++y) { for(int x = 0; x < srcWidth; ++x) { *dest++ = static_cast(255); *dest++ = *src++; } dest -= destStep; } destHeight = srcHeight; } pos.X(glyph->bitmap_left); pos.Y(srcHeight - glyph->bitmap_top); } FTPixmapGlyphImpl::~FTPixmapGlyphImpl() { delete [] data; } const FTPoint& FTPixmapGlyphImpl::RenderImpl(const FTPoint& pen, int renderMode) { if(data) { float dx, dy; dx = floor(pen.Xf() + pos.Xf()); dy = floor(pen.Yf() - pos.Yf()); glBitmap(0, 0, 0.0f, 0.0f, dx, dy, (const GLubyte*)0); glPixelStorei(GL_UNPACK_ROW_LENGTH, 0); glPixelStorei(GL_UNPACK_ALIGNMENT, 2); glDrawPixels(destWidth, destHeight, GL_LUMINANCE_ALPHA, GL_UNSIGNED_BYTE, (const GLvoid*)data); glBitmap(0, 0, 0.0f, 0.0f, -dx, -dy, (const GLubyte*)0); } return advance; } ftgl-2.1.3~rc5/src/FTGlyph/FTPolygonGlyphImpl.h0000644000175000017500000000377211023223401016163 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTPolygonGlyphImpl__ #define __FTPolygonGlyphImpl__ #include "FTGlyphImpl.h" class FTVectoriser; class FTPolygonGlyphImpl : public FTGlyphImpl { friend class FTPolygonGlyph; public: FTPolygonGlyphImpl(FT_GlyphSlot glyph, float outset, bool useDisplayList); virtual ~FTPolygonGlyphImpl(); virtual const FTPoint& RenderImpl(const FTPoint& pen, int renderMode); private: /** * Private rendering method. */ void DoRender(); /** * Private rendering variables. */ unsigned int hscale, vscale; FTVectoriser *vectoriser; float outset; /** * OpenGL display list */ GLuint glList; }; #endif // __FTPolygonGlyphImpl__ ftgl-2.1.3~rc5/src/FTGlyph/FTOutlineGlyph.cpp0000644000175000017500000000732611023223621015667 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Éric Beets * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTOutlineGlyphImpl.h" #include "FTVectoriser.h" // // FTGLOutlineGlyph // FTOutlineGlyph::FTOutlineGlyph(FT_GlyphSlot glyph, float outset, bool useDisplayList) : FTGlyph(new FTOutlineGlyphImpl(glyph, outset, useDisplayList)) {} FTOutlineGlyph::~FTOutlineGlyph() {} const FTPoint& FTOutlineGlyph::Render(const FTPoint& pen, int renderMode) { FTOutlineGlyphImpl *myimpl = dynamic_cast(impl); return myimpl->RenderImpl(pen, renderMode); } // // FTGLOutlineGlyphImpl // FTOutlineGlyphImpl::FTOutlineGlyphImpl(FT_GlyphSlot glyph, float _outset, bool useDisplayList) : FTGlyphImpl(glyph), glList(0) { if(ft_glyph_format_outline != glyph->format) { err = 0x14; // Invalid_Outline return; } vectoriser = new FTVectoriser(glyph); if((vectoriser->ContourCount() < 1) || (vectoriser->PointCount() < 3)) { delete vectoriser; vectoriser = NULL; return; } outset = _outset; if(useDisplayList) { glList = glGenLists(1); glNewList(glList, GL_COMPILE); DoRender(); glEndList(); delete vectoriser; vectoriser = NULL; } } FTOutlineGlyphImpl::~FTOutlineGlyphImpl() { if(glList) { glDeleteLists(glList, 1); } else if(vectoriser) { delete vectoriser; } } const FTPoint& FTOutlineGlyphImpl::RenderImpl(const FTPoint& pen, int renderMode) { glTranslatef(pen.Xf(), pen.Yf(), pen.Zf()); if(glList) { glCallList(glList); } else if(vectoriser) { DoRender(); } glTranslatef(-pen.Xf(), -pen.Yf(), -pen.Zf()); return advance; } void FTOutlineGlyphImpl::DoRender() { for(unsigned int c = 0; c < vectoriser->ContourCount(); ++c) { const FTContour* contour = vectoriser->Contour(c); glBegin(GL_LINE_LOOP); for(unsigned int i = 0; i < contour->PointCount(); ++i) { FTPoint point = FTPoint(contour->Point(i).X() + contour->Outset(i).X() * outset, contour->Point(i).Y() + contour->Outset(i).Y() * outset, 0); glVertex2f(point.Xf() / 64.0f, point.Yf() / 64.0f); } glEnd(); } } ftgl-2.1.3~rc5/src/FTGlyph/FTGlyphImpl.h0000644000175000017500000000354011023223367014617 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTGlyphImpl__ #define __FTGlyphImpl__ #include "FTGL/ftgl.h" class FTGlyphImpl { friend class FTGlyph; protected: FTGlyphImpl(FT_GlyphSlot glyph, bool useDisplayList = true); virtual ~FTGlyphImpl(); float Advance() const; const FTBBox& BBox() const; FT_Error Error() const; /** * The advance distance for this glyph */ FTPoint advance; /** * The bounding box of this glyph. */ FTBBox bBox; /** * Current error code. Zero means no error. */ FT_Error err; }; #endif // __FTGlyphImpl__ ftgl-2.1.3~rc5/src/FTGlyph/FTBufferGlyphImpl.h0000644000175000017500000000326211014620622015745 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTBufferGlyphImpl__ #define __FTBufferGlyphImpl__ #include "FTGlyphImpl.h" class FTBufferGlyphImpl : public FTGlyphImpl { friend class FTBufferGlyph; protected: FTBufferGlyphImpl(FT_GlyphSlot glyph, FTBuffer *p); virtual ~FTBufferGlyphImpl(); virtual const FTPoint& RenderImpl(const FTPoint& pen, int renderMode); private: bool has_bitmap; FT_Bitmap bitmap; unsigned char *pixels; FTPoint corner; FTBuffer *buffer; }; #endif // __FTBufferGlyphImpl__ ftgl-2.1.3~rc5/src/FTGlyph/FTBitmapGlyph.cpp0000644000175000017500000000640511023223577015473 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include #include "FTGL/ftgl.h" #include "FTInternals.h" #include "FTBitmapGlyphImpl.h" // // FTGLBitmapGlyph // FTBitmapGlyph::FTBitmapGlyph(FT_GlyphSlot glyph) : FTGlyph(new FTBitmapGlyphImpl(glyph)) {} FTBitmapGlyph::~FTBitmapGlyph() {} const FTPoint& FTBitmapGlyph::Render(const FTPoint& pen, int renderMode) { FTBitmapGlyphImpl *myimpl = dynamic_cast(impl); return myimpl->RenderImpl(pen, renderMode); } // // FTGLBitmapGlyphImpl // FTBitmapGlyphImpl::FTBitmapGlyphImpl(FT_GlyphSlot glyph) : FTGlyphImpl(glyph), destWidth(0), destHeight(0), data(0) { err = FT_Render_Glyph(glyph, FT_RENDER_MODE_MONO); if(err || ft_glyph_format_bitmap != glyph->format) { return; } FT_Bitmap bitmap = glyph->bitmap; unsigned int srcWidth = bitmap.width; unsigned int srcHeight = bitmap.rows; unsigned int srcPitch = bitmap.pitch; destWidth = srcWidth; destHeight = srcHeight; destPitch = srcPitch; if(destWidth && destHeight) { data = new unsigned char[destPitch * destHeight]; unsigned char* dest = data + ((destHeight - 1) * destPitch); unsigned char* src = bitmap.buffer; for(unsigned int y = 0; y < srcHeight; ++y) { memcpy(dest, src, srcPitch); dest -= destPitch; src += srcPitch; } } pos = FTPoint(glyph->bitmap_left, static_cast(srcHeight) - glyph->bitmap_top, 0.0); } FTBitmapGlyphImpl::~FTBitmapGlyphImpl() { delete [] data; } const FTPoint& FTBitmapGlyphImpl::RenderImpl(const FTPoint& pen, int renderMode) { if(data) { float dx, dy; dx = pen.Xf() + pos.Xf(); dy = pen.Yf() - pos.Yf(); glBitmap(0, 0, 0.0f, 0.0f, dx, dy, (const GLubyte*)0); glPixelStorei(GL_UNPACK_ROW_LENGTH, destPitch * 8); glBitmap(destWidth, destHeight, 0.0f, 0.0, 0.0, 0.0, (const GLubyte*)data); glBitmap(0, 0, 0.0f, 0.0f, -dx, -dy, (const GLubyte*)0); } return advance; } ftgl-2.1.3~rc5/src/FTGlyph/FTGlyphGlue.cpp0000644000175000017500000001473411024221542015146 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTGL/ftgl.h" #include "FTInternals.h" static const FTPoint static_ftpoint; static const FTBBox static_ftbbox; FTGL_BEGIN_C_DECLS #define C_TOR(cname, cargs, cxxname, cxxarg, cxxtype) \ FTGLglyph* cname cargs \ { \ cxxname *g = new cxxname cxxarg; \ if(g->Error()) \ { \ delete g; \ return NULL; \ } \ FTGLglyph *ftgl = (FTGLglyph *)malloc(sizeof(FTGLglyph)); \ ftgl->ptr = g; \ ftgl->type = cxxtype; \ return ftgl; \ } // FTBitmapGlyph::FTBitmapGlyph(); C_TOR(ftglCreateBitmapGlyph, (FT_GlyphSlot glyph), FTBitmapGlyph, (glyph), GLYPH_BITMAP); // FTBufferGlyph::FTBufferGlyph(); // FIXME: not implemented // FTExtrudeGlyph::FTExtrudeGlyph(); C_TOR(ftglCreateExtrudeGlyph, (FT_GlyphSlot glyph, float depth, float frontOutset, float backOutset, int useDisplayList), FTExtrudeGlyph, (glyph, depth, frontOutset, backOutset, (useDisplayList != 0)), GLYPH_EXTRUDE); // FTOutlineGlyph::FTOutlineGlyph(); C_TOR(ftglCreateOutlineGlyph, (FT_GlyphSlot glyph, float outset, int useDisplayList), FTOutlineGlyph, (glyph, outset, (useDisplayList != 0)), GLYPH_OUTLINE); // FTPixmapGlyph::FTPixmapGlyph(); C_TOR(ftglCreatePixmapGlyph, (FT_GlyphSlot glyph), FTPixmapGlyph, (glyph), GLYPH_PIXMAP); // FTPolygonGlyph::FTPolygonGlyph(); C_TOR(ftglCreatePolygonGlyph, (FT_GlyphSlot glyph, float outset, int useDisplayList), FTPolygonGlyph, (glyph, outset, (useDisplayList != 0)), GLYPH_POLYGON); // FTTextureGlyph::FTTextureGlyph(); C_TOR(ftglCreateTextureGlyph, (FT_GlyphSlot glyph, int id, int xOffset, int yOffset, int width, int height), FTTextureGlyph, (glyph, id, xOffset, yOffset, width, height), GLYPH_TEXTURE); // FTCustomGlyph::FTCustomGlyph(); class FTCustomGlyph : public FTGlyph { public: FTCustomGlyph(FTGLglyph *base, void *p, void (*render) (FTGLglyph *, void *, FTGL_DOUBLE, FTGL_DOUBLE, int, FTGL_DOUBLE *, FTGL_DOUBLE *), void (*destroy) (FTGLglyph *, void *)) : FTGlyph((FT_GlyphSlot)0), baseGlyph(base), data(p), renderCallback(render), destroyCallback(destroy) {} ~FTCustomGlyph() { destroyCallback(baseGlyph, data); } float Advance() const { return baseGlyph->ptr->Advance(); } const FTPoint& Render(const FTPoint& pen, int renderMode) { FTGL_DOUBLE advancex, advancey; renderCallback(baseGlyph, data, pen.X(), pen.Y(), renderMode, &advancex, &advancey); advance = FTPoint(advancex, advancey); return advance; } const FTBBox& BBox() const { return baseGlyph->ptr->BBox(); } FT_Error Error() const { return baseGlyph->ptr->Error(); } private: FTPoint advance; FTGLglyph *baseGlyph; void *data; void (*renderCallback) (FTGLglyph *, void *, FTGL_DOUBLE, FTGL_DOUBLE, int, FTGL_DOUBLE *, FTGL_DOUBLE *); void (*destroyCallback) (FTGLglyph *, void *); }; C_TOR(ftglCreateCustomGlyph, (FTGLglyph *base, void *data, void (*renderCallback) (FTGLglyph *, void *, FTGL_DOUBLE, FTGL_DOUBLE, int, FTGL_DOUBLE *, FTGL_DOUBLE *), void (*destroyCallback) (FTGLglyph *, void *)), FTCustomGlyph, (base, data, renderCallback, destroyCallback), GLYPH_CUSTOM); #define C_FUN(cret, cname, cargs, cxxerr, cxxname, cxxarg) \ cret cname cargs \ { \ if(!g || !g->ptr) \ { \ fprintf(stderr, "FTGL warning: NULL pointer in %s\n", #cname); \ cxxerr; \ } \ return g->ptr->cxxname cxxarg; \ } // FTGlyph::~FTGlyph(); void ftglDestroyGlyph(FTGLglyph *g) { if(!g || !g->ptr) { fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__); return; } delete g->ptr; free(g); } // const FTPoint& FTGlyph::Render(const FTPoint& pen, int renderMode); extern "C++" { C_FUN(static const FTPoint&, _ftglRenderGlyph, (FTGLglyph *g, const FTPoint& pen, int renderMode), return static_ftpoint, Render, (pen, renderMode)); } void ftglRenderGlyph(FTGLglyph *g, FTGL_DOUBLE penx, FTGL_DOUBLE peny, int renderMode, FTGL_DOUBLE *advancex, FTGL_DOUBLE *advancey) { FTPoint pen(penx, peny); FTPoint ret = _ftglRenderGlyph(g, pen, renderMode); *advancex = ret.X(); *advancey = ret.Y(); } // float FTGlyph::Advance() const; C_FUN(float, ftglGetGlyphAdvance, (FTGLglyph *g), return 0.0, Advance, ()); // const FTBBox& FTGlyph::BBox() const; extern "C++" { C_FUN(static const FTBBox&, _ftglGetGlyphBBox, (FTGLglyph *g), return static_ftbbox, BBox, ()); } void ftglGetGlyphBBox(FTGLglyph *g, float bounds[6]) { FTBBox ret = _ftglGetGlyphBBox(g); FTPoint lower = ret.Lower(), upper = ret.Upper(); bounds[0] = lower.Xf(); bounds[1] = lower.Yf(); bounds[2] = lower.Zf(); bounds[3] = upper.Xf(); bounds[4] = upper.Yf(); bounds[5] = upper.Zf(); } // FT_Error FTGlyph::Error() const; C_FUN(FT_Error, ftglGetGlyphError, (FTGLglyph *g), return -1, Error, ()); FTGL_END_C_DECLS ftgl-2.1.3~rc5/src/FTGlyph/FTBitmapGlyphImpl.h0000644000175000017500000000414111023223360015743 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTBitmapGlyphImpl__ #define __FTBitmapGlyphImpl__ #include "FTGlyphImpl.h" class FTBitmapGlyphImpl : public FTGlyphImpl { friend class FTBitmapGlyph; protected: FTBitmapGlyphImpl(FT_GlyphSlot glyph); virtual ~FTBitmapGlyphImpl(); virtual const FTPoint& RenderImpl(const FTPoint& pen, int renderMode); private: /** * The width of the glyph 'image' */ unsigned int destWidth; /** * The height of the glyph 'image' */ unsigned int destHeight; /** * The pitch of the glyph 'image' */ unsigned int destPitch; /** * Vector from the pen position to the topleft corner of the bitmap */ FTPoint pos; /** * Pointer to the 'image' data */ unsigned char* data; }; #endif // __FTBitmapGlyphImpl__ ftgl-2.1.3~rc5/src/FTGlyph/FTTextureGlyphImpl.h0000644000175000017500000000537711023223406016204 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTTextureGlyphImpl__ #define __FTTextureGlyphImpl__ #include "FTGlyphImpl.h" class FTTextureGlyphImpl : public FTGlyphImpl { friend class FTTextureGlyph; friend class FTTextureFontImpl; protected: FTTextureGlyphImpl(FT_GlyphSlot glyph, int id, int xOffset, int yOffset, int width, int height); virtual ~FTTextureGlyphImpl(); virtual const FTPoint& RenderImpl(const FTPoint& pen, int renderMode); private: /** * Reset the currently active texture to zero to get into a known * state before drawing a string. This is to get round possible * threading issues. */ static void ResetActiveTexture() { activeTextureID = 0; } /** * The width of the glyph 'image' */ int destWidth; /** * The height of the glyph 'image' */ int destHeight; /** * Vector from the pen position to the topleft corner of the pixmap */ FTPoint corner; /** * The texture co-ords of this glyph within the texture. */ FTPoint uv[2]; /** * The texture index that this glyph is contained in. */ int glTextureID; /** * The texture index of the currently active texture * * We keep track of the currently active texture to try to reduce the * number of texture bind operations. */ static GLint activeTextureID; }; #endif // __FTTextureGlyphImpl__ ftgl-2.1.3~rc5/src/FTGlyph/FTPixmapGlyphImpl.h0000644000175000017500000000375511023223374016004 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTPixmapGlyphImpl__ #define __FTPixmapGlyphImpl__ #include "FTGlyphImpl.h" class FTPixmapGlyphImpl : public FTGlyphImpl { friend class FTPixmapGlyph; protected: FTPixmapGlyphImpl(FT_GlyphSlot glyph); virtual ~FTPixmapGlyphImpl(); virtual const FTPoint& RenderImpl(const FTPoint& pen, int renderMode); private: /** * The width of the glyph 'image' */ int destWidth; /** * The height of the glyph 'image' */ int destHeight; /** * Vector from the pen position to the topleft corner of the pixmap */ FTPoint pos; /** * Pointer to the 'image' data */ unsigned char* data; }; #endif // __FTPixmapGlyphImpl__ ftgl-2.1.3~rc5/src/FTCharmap.cpp0000644000175000017500000000527311023223536013306 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include "FTFace.h" #include "FTCharmap.h" FTCharmap::FTCharmap(FTFace* face) : ftFace(*(face->Face())), err(0) { if(!ftFace->charmap) { if(!ftFace->num_charmaps) { // This face doesn't even have one charmap! err = 0x96; // Invalid_CharMap_Format return; } err = FT_Set_Charmap(ftFace, ftFace->charmaps[0]); } ftEncoding = ftFace->charmap->encoding; for(unsigned int i = 0; i < FTCharmap::MAX_PRECOMPUTED; i++) { charIndexCache[i] = FT_Get_Char_Index(ftFace, i); } } FTCharmap::~FTCharmap() { charMap.clear(); } bool FTCharmap::CharMap(FT_Encoding encoding) { if(ftEncoding == encoding) { err = 0; return true; } err = FT_Select_Charmap(ftFace, encoding); if(!err) { ftEncoding = encoding; charMap.clear(); } return !err; } unsigned int FTCharmap::GlyphListIndex(const unsigned int characterCode) { return charMap.find(characterCode); } unsigned int FTCharmap::FontIndex(const unsigned int characterCode) { if(characterCode < FTCharmap::MAX_PRECOMPUTED) { return charIndexCache[characterCode]; } return FT_Get_Char_Index(ftFace, characterCode); } void FTCharmap::InsertIndex(const unsigned int characterCode, const size_t containerIndex) { charMap.insert(characterCode, static_cast(containerIndex)); } ftgl-2.1.3~rc5/src/FTUnicode.h0000644000175000017500000001773411021205731012766 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2008 Daniel Remenak * * Portions derived from ConvertUTF.c Copyright (C) 2001-2004 Unicode, Inc * Unicode, Inc. hereby grants the right to freely use the information * supplied in this file in the creation of products supporting the * Unicode Standard, and to make copies of this file in any form * for internal or external distribution as long as this notice * remains attached. * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTUnicode__ #define __FTUnicode__ /** * Provides a way to easily walk multibyte unicode strings in the various * Unicode encodings (UTF-8, UTF-16, UTF-32, UCS-2, and UCS-4). Encodings * with elements larger than one byte must already be in the correct endian * order for the current architecture. */ template class FTUnicodeStringItr { public: /** * Constructor. Also reads the first character and stores it. * * @param string The buffer to iterate. No copy is made. */ FTUnicodeStringItr(const T* string) : curPos(string), nextPos(string) { (*this)++; }; /** * Pre-increment operator. Reads the next unicode character and sets * the state appropriately. * Note - not protected against overruns. */ FTUnicodeStringItr& operator++() { curPos = nextPos; // unicode handling switch (sizeof(T)) { case 1: // UTF-8 // get this character readUTF8(); break; case 2: // UTF-16 readUTF16(); break; case 4: // UTF-32 // fall through default: // error condition really, but give it a shot anyway curChar = *nextPos++; } return *this; } /** * Post-increment operator. Reads the next character and sets * the state appropriately. * Note - not protected against overruns. */ FTUnicodeStringItr operator++(int) { FTUnicodeStringItr temp = *this; ++*this; return temp; } /** * Equality operator. Two FTUnicodeStringItrs are considered equal * if they have the same current buffer and buffer position. */ bool operator==(const FTUnicodeStringItr& right) const { if (curPos == right.getBufferFromHere()) return true; return false; } /** * Dereference operator. * * @return The unicode codepoint of the character currently pointed * to by the FTUnicodeStringItr. */ unsigned int operator*() const { return curChar; } /** * Buffer-fetching getter. You can use this to retreive the buffer * starting at the currently-iterated character for functions which * require a Unicode string as input. */ const T* getBufferFromHere() const { return curPos; } private: /** * Helper function for reading a single UTF8 character from the string. * Updates internal state appropriately. */ void readUTF8(); /** * Helper function for reading a single UTF16 character from the string. * Updates internal state appropriately. */ void readUTF16(); /** * The buffer position of the first element in the current character. */ const T* curPos; /** * The character stored at the current buffer position (prefetched on * increment, so there's no penalty for dereferencing more than once). */ unsigned int curChar; /** * The buffer position of the first element in the next character. */ const T* nextPos; // unicode magic numbers static const char utf8bytes[256]; static const unsigned long offsetsFromUTF8[6]; static const unsigned long highSurrogateStart; static const unsigned long highSurrogateEnd; static const unsigned long lowSurrogateStart; static const unsigned long lowSurrogateEnd; static const unsigned long highSurrogateShift; static const unsigned long lowSurrogateBase; }; /* The first character in a UTF8 sequence indicates how many bytes * to read (among other things) */ template const char FTUnicodeStringItr::utf8bytes[256] = { 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, 4,4,4,4,4,4,4,4,5,5,5,5,6,6,6,6 }; /* Magic values subtracted from a buffer value during UTF8 conversion. * This table contains as many values as there might be trailing bytes * in a UTF-8 sequence. */ template const unsigned long FTUnicodeStringItr::offsetsFromUTF8[6] = { 0x00000000UL, 0x00003080UL, 0x000E2080UL, 0x03C82080UL, 0xFA082080UL, 0x82082080UL }; // get a UTF8 character; leave the tracking pointer at the start of the // next character // not protected against invalid UTF8 template inline void FTUnicodeStringItr::readUTF8() { unsigned int ch = 0; unsigned int extraBytesToRead = utf8bytes[(unsigned char)(*nextPos)]; // falls through switch (extraBytesToRead) { case 6: ch += *nextPos++; ch <<= 6; /* remember, illegal UTF-8 */ case 5: ch += *nextPos++; ch <<= 6; /* remember, illegal UTF-8 */ case 4: ch += *nextPos++; ch <<= 6; case 3: ch += *nextPos++; ch <<= 6; case 2: ch += *nextPos++; ch <<= 6; case 1: ch += *nextPos++; } ch -= offsetsFromUTF8[extraBytesToRead-1]; curChar = ch; } // Magic numbers for UTF-16 conversions template const unsigned long FTUnicodeStringItr::highSurrogateStart = 0xD800; template const unsigned long FTUnicodeStringItr::highSurrogateEnd = 0xDBFF; template const unsigned long FTUnicodeStringItr::lowSurrogateStart = 0xDC00; template const unsigned long FTUnicodeStringItr::lowSurrogateEnd = 0xDFFF; template const unsigned long FTUnicodeStringItr::highSurrogateShift = 10; template const unsigned long FTUnicodeStringItr::lowSurrogateBase = 0x0010000UL; template inline void FTUnicodeStringItr::readUTF16() { unsigned int ch = *nextPos++; // if we have the first half of the surrogate pair if (ch >= highSurrogateStart && ch <= highSurrogateEnd) { unsigned int ch2 = *curPos; // complete the surrogate pair if (ch2 >= lowSurrogateStart && ch2 <= lowSurrogateEnd) { ch = ((ch - highSurrogateStart) << highSurrogateShift) + (ch2 - lowSurrogateStart) + lowSurrogateBase; ++nextPos; } } curChar = ch; } #endif ftgl-2.1.3~rc5/src/Makefile.am0000644000175000017500000000534011015467246013035 00000000000000 lib_LTLIBRARIES = libftgl.la libftgl_la_SOURCES = \ FTBuffer.cpp \ FTCharmap.cpp \ FTCharmap.h \ FTCharToGlyphIndexMap.h \ FTContour.cpp \ FTContour.h \ FTFace.cpp \ FTFace.h \ FTGlyphContainer.cpp \ FTGlyphContainer.h \ FTInternals.h \ FTLibrary.cpp \ FTLibrary.h \ FTList.h \ FTPoint.cpp \ FTSize.cpp \ FTSize.h \ FTVector.h \ FTVectoriser.cpp \ FTVectoriser.h \ FTUnicode.h \ $(ftglyph_sources) \ $(ftfont_sources) \ $(ftlayout_sources) \ $(ftgl_headers) \ $(NULL) libftgl_la_CPPFLAGS = -IFTGlyph -IFTFont -IFTLayout libftgl_la_CXXFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) libftgl_la_LDFLAGS = \ -no-undefined -version-number $(LT_VERSION) libftgl_la_LIBADD = \ $(FT2_LIBS) $(GL_LIBS) ftgldir = $(includedir)/FTGL ftgl_HEADERS = $(ftgl_headers) ftgl_headers = \ FTGL/ftgl.h \ FTGL/FTBBox.h \ FTGL/FTBuffer.h \ FTGL/FTPoint.h \ FTGL/FTGlyph.h \ FTGL/FTBitmapGlyph.h \ FTGL/FTBufferGlyph.h \ FTGL/FTExtrdGlyph.h \ FTGL/FTOutlineGlyph.h \ FTGL/FTPixmapGlyph.h \ FTGL/FTPolyGlyph.h \ FTGL/FTTextureGlyph.h \ FTGL/FTFont.h \ FTGL/FTGLBitmapFont.h \ FTGL/FTBufferFont.h \ FTGL/FTGLExtrdFont.h \ FTGL/FTGLOutlineFont.h \ FTGL/FTGLPixmapFont.h \ FTGL/FTGLPolygonFont.h \ FTGL/FTGLTextureFont.h \ FTGL/FTLayout.h \ FTGL/FTSimpleLayout.h \ ${NULL} ftglyph_sources = \ FTGlyph/FTGlyph.cpp \ FTGlyph/FTGlyphImpl.h \ FTGlyph/FTGlyphGlue.cpp \ FTGlyph/FTBitmapGlyph.cpp \ FTGlyph/FTBitmapGlyphImpl.h \ FTGlyph/FTBufferGlyph.cpp \ FTGlyph/FTBufferGlyphImpl.h \ FTGlyph/FTExtrudeGlyph.cpp \ FTGlyph/FTExtrudeGlyphImpl.h \ FTGlyph/FTOutlineGlyph.cpp \ FTGlyph/FTOutlineGlyphImpl.h \ FTGlyph/FTPixmapGlyph.cpp \ FTGlyph/FTPixmapGlyphImpl.h \ FTGlyph/FTPolygonGlyph.cpp \ FTGlyph/FTPolygonGlyphImpl.h \ FTGlyph/FTTextureGlyph.cpp \ FTGlyph/FTTextureGlyphImpl.h \ $(NULL) ftfont_sources = \ FTFont/FTFont.cpp \ FTFont/FTFontImpl.h \ FTFont/FTFontGlue.cpp \ FTFont/FTBitmapFont.cpp \ FTFont/FTBitmapFontImpl.h \ FTFont/FTBufferFont.cpp \ FTFont/FTBufferFontImpl.h \ FTFont/FTExtrudeFont.cpp \ FTFont/FTExtrudeFontImpl.h \ FTFont/FTOutlineFont.cpp \ FTFont/FTOutlineFontImpl.h \ FTFont/FTPixmapFont.cpp \ FTFont/FTPixmapFontImpl.h \ FTFont/FTPolygonFont.cpp \ FTFont/FTPolygonFontImpl.h \ FTFont/FTTextureFont.cpp \ FTFont/FTTextureFontImpl.h \ $(NULL) ftlayout_sources = \ FTLayout/FTLayout.cpp \ FTLayout/FTLayoutImpl.h \ FTLayout/FTLayoutGlue.cpp \ FTLayout/FTSimpleLayout.cpp \ FTLayout/FTSimpleLayoutImpl.h \ $(NULL) NULL = ftgl-2.1.3~rc5/src/FTGL/0000777000175000017500000000000011024234670011610 500000000000000ftgl-2.1.3~rc5/src/FTGL/FTGLTextureFont.h0000644000175000017500000000612611007404472014646 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTTextureFont__ #define __FTTextureFont__ #ifdef __cplusplus /** * FTTextureFont is a specialisation of the FTFont class for handling * Texture mapped fonts * * @see FTFont */ class FTGL_EXPORT FTTextureFont : public FTFont { public: /** * Open and read a font file. Sets Error flag. * * @param fontFilePath font file path. */ FTTextureFont(const char* fontFilePath); /** * Open and read a font from a buffer in memory. Sets Error flag. * The buffer is owned by the client and is NOT copied by FTGL. The * pointer must be valid while using FTGL. * * @param pBufferBytes the in-memory buffer * @param bufferSizeInBytes the length of the buffer in bytes */ FTTextureFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes); /** * Destructor */ virtual ~FTTextureFont(); protected: /** * Construct a glyph of the correct type. * * Clients must override the function and return their specialised * FTGlyph. * * @param slot A FreeType glyph slot. * @return An FT****Glyph or null on failure. */ virtual FTGlyph* MakeGlyph(FT_GlyphSlot slot); }; #define FTGLTextureFont FTTextureFont #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialised FTGLfont object for handling texture-mapped fonts. * * @param file The font file name. * @return An FTGLfont* object. * * @see FTGLfont */ FTGL_EXPORT FTGLfont *ftglCreateTextureFont(const char *file); FTGL_END_C_DECLS #endif // __FTTextureFont__ ftgl-2.1.3~rc5/src/FTGL/FTGlyph.h0000644000175000017500000001414111023200422013176 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTGlyph__ #define __FTGlyph__ #ifdef __cplusplus class FTGlyphImpl; /** * FTGlyph is the base class for FTGL glyphs. * * It provides the interface between Freetype glyphs and their openGL * renderable counterparts. This is an abstract class and derived classes * must implement the Render function. * * @see FTBBox * @see FTPoint */ class FTGL_EXPORT FTGlyph { protected: /** * Create a glyph. * * @param glyph The Freetype glyph to be processed */ FTGlyph(FT_GlyphSlot glyph); private: /** * Internal FTGL FTGlyph constructor. For private use only. * * @param pImpl Internal implementation object. Will be destroyed * upon FTGlyph deletion. */ FTGlyph(FTGlyphImpl *pImpl); /* Allow our internal subclasses to access the private constructor */ friend class FTBitmapGlyph; friend class FTBufferGlyph; friend class FTExtrudeGlyph; friend class FTOutlineGlyph; friend class FTPixmapGlyph; friend class FTPolygonGlyph; friend class FTTextureGlyph; public: /** * Destructor */ virtual ~FTGlyph(); /** * Renders this glyph at the current pen position. * * @param pen The current pen position. * @param renderMode Render mode to display * @return The advance distance for this glyph. */ virtual const FTPoint& Render(const FTPoint& pen, int renderMode) = 0; /** * Return the advance width for this glyph. * * @return advance width. */ virtual float Advance() const; /** * Return the bounding box for this glyph. * * @return bounding box. */ virtual const FTBBox& BBox() const; /** * Queries for errors. * * @return The current error code. */ virtual FT_Error Error() const; private: /** * Internal FTGL FTGlyph implementation object. For private use only. */ FTGlyphImpl *impl; }; #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * FTGLglyph is the base class for FTGL glyphs. * * It provides the interface between Freetype glyphs and their openGL * renderable counterparts. This is an abstract class and derived classes * must implement the ftglRenderGlyph() function. */ struct _FTGLGlyph; typedef struct _FTGLglyph FTGLglyph; /** * Create a custom FTGL glyph object. * FIXME: maybe get rid of "base" and have advanceCallback etc. functions * * @param base The base FTGLglyph* to subclass. * @param data A pointer to private data that will be passed to callbacks. * @param renderCallback A rendering callback function. * @param destroyCallback A callback function to be called upon destruction. * @return An FTGLglyph* object. */ FTGL_EXPORT FTGLglyph *ftglCreateCustomGlyph(FTGLglyph *base, void *data, void (*renderCallback) (FTGLglyph *, void *, FTGL_DOUBLE, FTGL_DOUBLE, int, FTGL_DOUBLE *, FTGL_DOUBLE *), void (*destroyCallback) (FTGLglyph *, void *)); /** * Destroy an FTGL glyph object. * * @param glyph An FTGLglyph* object. */ FTGL_EXPORT void ftglDestroyGlyph(FTGLglyph *glyph); /** * Render a glyph at the current pen position and compute the corresponding * advance. * * @param glyph An FTGLglyph* object. * @param penx The current pen's X position. * @param peny The current pen's Y position. * @param renderMode Render mode to display * @param advancex A pointer to an FTGL_DOUBLE where to write the advance's X * component. * @param advancey A pointer to an FTGL_DOUBLE where to write the advance's Y * component. */ FTGL_EXPORT void ftglRenderGlyph(FTGLglyph *glyph, FTGL_DOUBLE penx, FTGL_DOUBLE peny, int renderMode, FTGL_DOUBLE *advancex, FTGL_DOUBLE *advancey); /** * Return the advance for a glyph. * * @param glyph An FTGLglyph* object. * @return The advance's X component. */ FTGL_EXPORT float ftglGetGlyphAdvance(FTGLglyph *glyph); /** * Return the bounding box for a glyph. * * @param glyph An FTGLglyph* object. * @param bounds An array of 6 float values where the bounding box's lower * left near and upper right far 3D coordinates will be stored. */ FTGL_EXPORT void ftglGetGlyphBBox(FTGLglyph *glyph, float bounds[6]); /** * Query a glyph for errors. * * @param glyph An FTGLglyph* object. * @return The current error code. */ FTGL_EXPORT FT_Error ftglGetGlyphError(FTGLglyph* glyph); FTGL_END_C_DECLS #endif // __FTGlyph__ ftgl-2.1.3~rc5/src/FTGL/FTTextureGlyph.h0000644000175000017500000000677711007617410014612 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTTextureGlyph__ #define __FTTextureGlyph__ #ifdef __cplusplus /** * FTTextureGlyph is a specialisation of FTGlyph for creating texture * glyphs. */ class FTGL_EXPORT FTTextureGlyph : public FTGlyph { public: /** * Constructor * * @param glyph The Freetype glyph to be processed * @param id The id of the texture that this glyph will be * drawn in * @param xOffset The x offset into the parent texture to draw * this glyph * @param yOffset The y offset into the parent texture to draw * this glyph * @param width The width of the parent texture * @param height The height (number of rows) of the parent texture */ FTTextureGlyph(FT_GlyphSlot glyph, int id, int xOffset, int yOffset, int width, int height); /** * Destructor */ virtual ~FTTextureGlyph(); /** * Render this glyph at the current pen position. * * @param pen The current pen position. * @param renderMode Render mode to display * @return The advance distance for this glyph. */ virtual const FTPoint& Render(const FTPoint& pen, int renderMode); }; #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialisation of FTGLglyph for creating pixmaps. * * @param glyph The Freetype glyph to be processed. * @param id The id of the texture that this glyph will be drawn in. * @param xOffset The x offset into the parent texture to draw this glyph. * @param yOffset The y offset into the parent texture to draw this glyph. * @param width The width of the parent texture. * @param height The height (number of rows) of the parent texture. * @return An FTGLglyph* object. */ FTGL_EXPORT FTGLglyph *ftglCreateTextureGlyph(FT_GlyphSlot glyph, int id, int xOffset, int yOffset, int width, int height); FTGL_END_C_DECLS #endif // __FTTextureGlyph__ ftgl-2.1.3~rc5/src/FTGL/FTPolyGlyph.h0000644000175000017500000000651111011547675014071 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTPolygonGlyph__ #define __FTPolygonGlyph__ #ifdef __cplusplus /** * FTPolygonGlyph is a specialisation of FTGlyph for creating tessellated * polygon glyphs. */ class FTGL_EXPORT FTPolygonGlyph : public FTGlyph { public: /** * Constructor. Sets the Error to Invalid_Outline if the glyphs * isn't an outline. * * @param glyph The Freetype glyph to be processed * @param outset The outset distance * @param useDisplayList Enable or disable the use of Display Lists * for this glyph * true turns ON display lists. * false turns OFF display lists. */ FTPolygonGlyph(FT_GlyphSlot glyph, float outset, bool useDisplayList); /** * Destructor */ virtual ~FTPolygonGlyph(); /** * Render this glyph at the current pen position. * * @param pen The current pen position. * @param renderMode Render mode to display * @return The advance distance for this glyph. */ virtual const FTPoint& Render(const FTPoint& pen, int renderMode); }; #define FTPolyGlyph FTPolygonGlyph #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialisation of FTGLglyph for creating tessellated * polygon glyphs. * * @param glyph The Freetype glyph to be processed * @param outset outset contour size * @param useDisplayList Enable or disable the use of Display Lists * for this glyph * true turns ON display lists. * false turns OFF display lists. * @return An FTGLglyph* object. */ FTGL_EXPORT FTGLglyph *ftglCreatePolygonGlyph(FT_GlyphSlot glyph, float outset, int useDisplayList); FTGL_END_C_DECLS #endif // __FTPolygonGlyph__ ftgl-2.1.3~rc5/src/FTGL/FTOutlineGlyph.h0000644000175000017500000000635111011067634014557 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTOutlineGlyph__ #define __FTOutlineGlyph__ #ifdef __cplusplus /** * FTOutlineGlyph is a specialisation of FTGlyph for creating outlines. */ class FTGL_EXPORT FTOutlineGlyph : public FTGlyph { public: /** * Constructor. Sets the Error to Invalid_Outline if the glyphs isn't * an outline. * * @param glyph The Freetype glyph to be processed * @param outset outset distance * @param useDisplayList Enable or disable the use of Display Lists * for this glyph * true turns ON display lists. * false turns OFF display lists. */ FTOutlineGlyph(FT_GlyphSlot glyph, float outset, bool useDisplayList); /** * Destructor */ virtual ~FTOutlineGlyph(); /** * Render this glyph at the current pen position. * * @param pen The current pen position. * @param renderMode Render mode to display * @return The advance distance for this glyph. */ virtual const FTPoint& Render(const FTPoint& pen, int renderMode); }; #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialisation of FTGLglyph for creating outlines. * * @param glyph The Freetype glyph to be processed * @param outset outset contour size * @param useDisplayList Enable or disable the use of Display Lists * for this glyph * true turns ON display lists. * false turns OFF display lists. * @return An FTGLglyph* object. */ FTGL_EXPORT FTGLglyph *ftglCreateOutlineGlyph(FT_GlyphSlot glyph, float outset, int useDisplayList); FTGL_END_C_DECLS #endif // __FTOutlineGlyph__ ftgl-2.1.3~rc5/src/FTGL/FTBuffer.h0000644000175000017500000000637311023210706013342 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning Please use instead of . # include #endif #ifndef __FTBuffer__ #define __FTBuffer__ #ifdef __cplusplus /** * FTBuffer is a helper class for pixel buffers. * * It provides the interface between FTBufferFont and FTBufferGlyph to * optimise rendering operations. * * @see FTBufferGlyph * @see FTBufferFont */ class FTGL_EXPORT FTBuffer { public: /** * Default constructor. */ FTBuffer(); /** * Destructor */ ~FTBuffer(); /** * Get the pen's position in the buffer. * * @return The pen's position as an FTPoint object. */ inline FTPoint Pos() const { return pos; } /** * Set the pen's position in the buffer. * * @param arg An FTPoint object with the desired pen's position. */ inline void Pos(FTPoint arg) { pos = arg; } /** * Set the buffer's size. * * @param w The buffer's desired width, in pixels. * @param h The buffer's desired height, in pixels. */ void Size(int w, int h); /** * Get the buffer's width. * * @return The buffer's width, in pixels. */ inline int Width() const { return width; } /** * Get the buffer's height. * * @return The buffer's height, in pixels. */ inline int Height() const { return height; } /** * Get the buffer's direct pixel buffer. * * @return A read-write pointer to the buffer's pixels. */ inline unsigned char *Pixels() const { return pixels; } private: /** * Buffer's width and height. */ int width, height; /** * Buffer's pixel buffer. */ unsigned char *pixels; /** * Buffer's internal pen position. */ FTPoint pos; }; #endif //__cplusplus #endif // __FTBuffer__ ftgl-2.1.3~rc5/src/FTGL/FTGLBitmapFont.h0000644000175000017500000000606311007404437014423 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTBitmapFont__ #define __FTBitmapFont__ #ifdef __cplusplus /** * FTBitmapFont is a specialisation of the FTFont class for handling * Bitmap fonts * * @see FTFont */ class FTGL_EXPORT FTBitmapFont : public FTFont { public: /** * Open and read a font file. Sets Error flag. * * @param fontFilePath font file path. */ FTBitmapFont(const char* fontFilePath); /** * Open and read a font from a buffer in memory. Sets Error flag. * The buffer is owned by the client and is NOT copied by FTGL. The * pointer must be valid while using FTGL. * * @param pBufferBytes the in-memory buffer * @param bufferSizeInBytes the length of the buffer in bytes */ FTBitmapFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes); /** * Destructor */ ~FTBitmapFont(); protected: /** * Construct a glyph of the correct type. * * Clients must override the function and return their specialised * FTGlyph. * * @param slot A FreeType glyph slot. * @return An FT****Glyph or null on failure. */ virtual FTGlyph* MakeGlyph(FT_GlyphSlot slot); }; #define FTGLBitmapFont FTBitmapFont #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialised FTGLfont object for handling bitmap fonts. * * @param file The font file name. * @return An FTGLfont* object. * * @see FTGLfont */ FTGL_EXPORT FTGLfont *ftglCreateBitmapFont(const char *file); FTGL_END_C_DECLS #endif // __FTBitmapFont__ ftgl-2.1.3~rc5/src/FTGL/FTExtrdGlyph.h0000644000175000017500000000727511011067360014230 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTExtrudeGlyph__ #define __FTExtrudeGlyph__ #ifdef __cplusplus /** * FTExtrudeGlyph is a specialisation of FTGlyph for creating tessellated * extruded polygon glyphs. */ class FTGL_EXPORT FTExtrudeGlyph : public FTGlyph { public: /** * Constructor. Sets the Error to Invalid_Outline if the glyph isn't * an outline. * * @param glyph The Freetype glyph to be processed * @param depth The distance along the z axis to extrude the glyph * @param frontOutset outset contour size * @param backOutset outset contour size * @param useDisplayList Enable or disable the use of Display Lists * for this glyph * true turns ON display lists. * false turns OFF display lists. */ FTExtrudeGlyph(FT_GlyphSlot glyph, float depth, float frontOutset, float backOutset, bool useDisplayList); /** * Destructor */ virtual ~FTExtrudeGlyph(); /** * Render this glyph at the current pen position. * * @param pen The current pen position. * @param renderMode Render mode to display * @return The advance distance for this glyph. */ virtual const FTPoint& Render(const FTPoint& pen, int renderMode); }; #define FTExtrdGlyph FTExtrudeGlyph #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialisation of FTGLglyph for creating tessellated * extruded polygon glyphs. * * @param glyph The Freetype glyph to be processed * @param depth The distance along the z axis to extrude the glyph * @param frontOutset outset contour size * @param backOutset outset contour size * @param useDisplayList Enable or disable the use of Display Lists * for this glyph * true turns ON display lists. * false turns OFF display lists. * @return An FTGLglyph* object. */ FTGL_EXPORT FTGLglyph *ftglCreateExtrudeGlyph(FT_GlyphSlot glyph, float depth, float frontOutset, float backOutset, int useDisplayList); FTGL_END_C_DECLS #endif // __FTExtrudeGlyph__ ftgl-2.1.3~rc5/src/FTGL/FTPixmapGlyph.h0000644000175000017500000000472611007617410014400 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTPixmapGlyph__ #define __FTPixmapGlyph__ #ifdef __cplusplus /** * FTPixmapGlyph is a specialisation of FTGlyph for creating pixmaps. */ class FTGL_EXPORT FTPixmapGlyph : public FTGlyph { public: /** * Constructor * * @param glyph The Freetype glyph to be processed */ FTPixmapGlyph(FT_GlyphSlot glyph); /** * Destructor */ virtual ~FTPixmapGlyph(); /** * Render this glyph at the current pen position. * * @param pen The current pen position. * @param renderMode Render mode to display * @return The advance distance for this glyph. */ virtual const FTPoint& Render(const FTPoint& pen, int renderMode); }; #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialisation of FTGLglyph for creating pixmaps. * * @param glyph The Freetype glyph to be processed * @return An FTGLglyph* object. */ FTGL_EXPORT FTGLglyph *ftglCreatePixmapGlyph(FT_GlyphSlot glyph); FTGL_END_C_DECLS #endif // __FTPixmapGlyph__ ftgl-2.1.3~rc5/src/FTGL/FTGLPolygonFont.h0000644000175000017500000000614411007404466014640 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTPolygonFont__ #define __FTPolygonFont__ #ifdef __cplusplus /** * FTPolygonFont is a specialisation of the FTFont class for handling * tesselated Polygon Mesh fonts * * @see FTFont */ class FTGL_EXPORT FTPolygonFont : public FTFont { public: /** * Open and read a font file. Sets Error flag. * * @param fontFilePath font file path. */ FTPolygonFont(const char* fontFilePath); /** * Open and read a font from a buffer in memory. Sets Error flag. * The buffer is owned by the client and is NOT copied by FTGL. The * pointer must be valid while using FTGL. * * @param pBufferBytes the in-memory buffer * @param bufferSizeInBytes the length of the buffer in bytes */ FTPolygonFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes); /** * Destructor */ ~FTPolygonFont(); protected: /** * Construct a glyph of the correct type. * * Clients must override the function and return their specialised * FTGlyph. * * @param slot A FreeType glyph slot. * @return An FT****Glyph or null on failure. */ virtual FTGlyph* MakeGlyph(FT_GlyphSlot slot); }; #define FTGLPolygonFont FTPolygonFont #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialised FTGLfont object for handling tesselated polygon * mesh fonts. * * @param file The font file name. * @return An FTGLfont* object. * * @see FTGLfont */ FTGL_EXPORT FTGLfont *ftglCreatePolygonFont(const char *file); FTGL_END_C_DECLS #endif // __FTPolygonFont__ ftgl-2.1.3~rc5/src/FTGL/FTBitmapGlyph.h0000644000175000017500000000472511011067367014362 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTBitmapGlyph__ #define __FTBitmapGlyph__ #ifdef __cplusplus /** * FTBitmapGlyph is a specialisation of FTGlyph for creating bitmaps. */ class FTGL_EXPORT FTBitmapGlyph : public FTGlyph { public: /** * Constructor * * @param glyph The Freetype glyph to be processed */ FTBitmapGlyph(FT_GlyphSlot glyph); /** * Destructor */ virtual ~FTBitmapGlyph(); /** * Render this glyph at the current pen position. * * @param pen The current pen position. * @param renderMode Render mode to display * @return The advance distance for this glyph. */ virtual const FTPoint& Render(const FTPoint& pen, int renderMode); }; #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialisation of FTGLglyph for creating bitmaps. * * @param glyph The Freetype glyph to be processed * @return An FTGLglyph* object. */ FTGL_EXPORT FTGLglyph *ftglCreateBitmapGlyph(FT_GlyphSlot glyph); FTGL_END_C_DECLS #endif // __FTBitmapGlyph__ ftgl-2.1.3~rc5/src/FTGL/FTGLPixmapFont.h0000644000175000017500000000611611007404462014442 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTPixmapFont__ #define __FTPixmapFont__ #ifdef __cplusplus /** * FTPixmapFont is a specialisation of the FTFont class for handling * Pixmap (Grey Scale) fonts * * @see FTFont */ class FTGL_EXPORT FTPixmapFont : public FTFont { public: /** * Open and read a font file. Sets Error flag. * * @param fontFilePath font file path. */ FTPixmapFont(const char* fontFilePath); /** * Open and read a font from a buffer in memory. Sets Error flag. * The buffer is owned by the client and is NOT copied by FTGL. The * pointer must be valid while using FTGL. * * @param pBufferBytes the in-memory buffer * @param bufferSizeInBytes the length of the buffer in bytes */ FTPixmapFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes); /** * Destructor */ ~FTPixmapFont(); protected: /** * Construct a glyph of the correct type. * * Clients must override the function and return their specialised * FTGlyph. * * @param slot A FreeType glyph slot. * @return An FT****Glyph or null on failure. */ virtual FTGlyph* MakeGlyph(FT_GlyphSlot slot); }; #define FTGLPixmapFont FTPixmapFont #endif // __cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialised FTGLfont object for handling pixmap (grey scale) fonts. * * @param file The font file name. * @return An FTGLfont* object. * * @see FTGLfont */ FTGL_EXPORT FTGLfont *ftglCreatePixmapFont(const char *file); FTGL_END_C_DECLS #endif // __FTPixmapFont__ ftgl-2.1.3~rc5/src/FTGL/FTLayout.h0000644000175000017500000001454511011634643013415 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTLayout__ #define __FTLayout__ #ifdef __cplusplus class FTLayoutImpl; /** * FTLayout is the interface for layout managers that render text. * * Specific layout manager classes are derived from this class. This class * is abstract and deriving classes must implement the protected * Render methods to render formatted text and * BBox methods to determine the bounding box of output text. * * @see FTFont * @see FTBBox */ class FTGL_EXPORT FTLayout { protected: FTLayout(); private: /** * Internal FTGL FTLayout constructor. For private use only. * * @param pImpl Internal implementation object. Will be destroyed * upon FTLayout deletion. */ FTLayout(FTLayoutImpl *pImpl); /* Allow our internal subclasses to access the private constructor */ friend class FTSimpleLayout; public: /** * Destructor */ virtual ~FTLayout(); /** * Get the bounding box for a formatted string. * * @param string A char string. * @param len The length of the string. If < 0 then all characters * will be checked until a null character is encountered * (optional). * @param position The pen position of the first character (optional). * @return The corresponding bounding box. */ virtual FTBBox BBox(const char* string, const int len = -1, FTPoint position = FTPoint()) = 0; /** * Get the bounding box for a formatted string. * * @param string A wchar_t string. * @param len The length of the string. If < 0 then all characters * will be checked until a null character is encountered * (optional). * @param position The pen position of the first character (optional). * @return The corresponding bounding box. */ virtual FTBBox BBox(const wchar_t* string, const int len = -1, FTPoint position = FTPoint()) = 0; /** * Render a string of characters. * * @param string 'C' style string to be output. * @param len The length of the string. If < 0 then all characters * will be displayed until a null character is encountered * (optional). * @param position The pen position of the first character (optional). * @param renderMode Render mode to display (optional) */ virtual void Render(const char *string, const int len = -1, FTPoint position = FTPoint(), int renderMode = FTGL::RENDER_ALL) = 0; /** * Render a string of characters. * * @param string wchar_t string to be output. * @param len The length of the string. If < 0 then all characters * will be displayed until a null character is encountered * (optional). * @param position The pen position of the first character (optional). * @param renderMode Render mode to display (optional) */ virtual void Render(const wchar_t *string, const int len = -1, FTPoint position = FTPoint(), int renderMode = FTGL::RENDER_ALL) = 0; /** * Queries the Layout for errors. * * @return The current error code. */ virtual FT_Error Error() const; private: /** * Internal FTGL FTLayout implementation object. For private use only. */ FTLayoutImpl *impl; }; #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * FTGLlayout is the interface for layout managers that render text. */ struct _FTGLlayout; typedef struct _FTGLlayout FTGLlayout; /** * Destroy an FTGL layout object. * * @param layout An FTGLlayout* object. */ FTGL_EXPORT void ftglDestroyLayout(FTGLlayout* layout); /** * Get the bounding box for a string. * * @param layout An FTGLlayout* object. * @param string A char buffer * @param bounds An array of 6 float values where the bounding box's lower * left near and upper right far 3D coordinates will be stored. */ FTGL_EXPORT void ftglGetLayoutBBox(FTGLlayout *layout, const char* string, float bounds[6]); /** * Render a string of characters. * * @param layout An FTGLlayout* object. * @param string Char string to be output. * @param mode Render mode to display. */ FTGL_EXPORT void ftglRenderLayout(FTGLlayout *layout, const char *string, int mode); /** * Query a layout for errors. * * @param layout An FTGLlayout* object. * @return The current error code. */ FTGL_EXPORT FT_Error ftglGetLayoutError(FTGLlayout* layout); FTGL_END_C_DECLS #endif /* __FTLayout__ */ ftgl-2.1.3~rc5/src/FTGL/FTBBox.h0000644000175000017500000001177711011547674013005 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTBBox__ #define __FTBBox__ #ifdef __cplusplus /** * FTBBox is a convenience class for handling bounding boxes. */ class FTGL_EXPORT FTBBox { public: /** * Default constructor. Bounding box is set to zero. */ FTBBox() : lower(0.0f, 0.0f, 0.0f), upper(0.0f, 0.0f, 0.0f) {} /** * Constructor. */ FTBBox(float lx, float ly, float lz, float ux, float uy, float uz) : lower(lx, ly, lz), upper(ux, uy, uz) {} /** * Constructor. */ FTBBox(FTPoint l, FTPoint u) : lower(l), upper(u) {} /** * Constructor. Extracts a bounding box from a freetype glyph. Uses * the control box for the glyph. FT_Glyph_Get_CBox() * * @param glyph A freetype glyph */ FTBBox(FT_GlyphSlot glyph) : lower(0.0f, 0.0f, 0.0f), upper(0.0f, 0.0f, 0.0f) { FT_BBox bbox; FT_Outline_Get_CBox(&(glyph->outline), &bbox); lower.X(static_cast(bbox.xMin) / 64.0f); lower.Y(static_cast(bbox.yMin) / 64.0f); lower.Z(0.0f); upper.X(static_cast(bbox.xMax) / 64.0f); upper.Y(static_cast(bbox.yMax) / 64.0f); upper.Z(0.0f); } /** * Destructor */ ~FTBBox() {} /** * Mark the bounds invalid by setting all lower dimensions greater * than the upper dimensions. */ void Invalidate() { lower = FTPoint(1.0f, 1.0f, 1.0f); upper = FTPoint(-1.0f, -1.0f, -1.0f); } /** * Determines if this bounding box is valid. * * @return True if all lower values are <= the corresponding * upper values. */ bool IsValid() { return lower.X() <= upper.X() && lower.Y() <= upper.Y() && lower.Z() <= upper.Z(); } /** * Move the Bounding Box by a vector. * * @param vector The vector to move the bbox in 3D space. */ FTBBox& operator += (const FTPoint vector) { lower += vector; upper += vector; return *this; } /** * Combine two bounding boxes. The result is the smallest bounding * box containing the two original boxes. * * @param bbox The bounding box to merge with the second one. */ FTBBox& operator |= (const FTBBox& bbox) { if(bbox.lower.X() < lower.X()) lower.X(bbox.lower.X()); if(bbox.lower.Y() < lower.Y()) lower.Y(bbox.lower.Y()); if(bbox.lower.Z() < lower.Z()) lower.Z(bbox.lower.Z()); if(bbox.upper.X() > upper.X()) upper.X(bbox.upper.X()); if(bbox.upper.Y() > upper.Y()) upper.Y(bbox.upper.Y()); if(bbox.upper.Z() > upper.Z()) upper.Z(bbox.upper.Z()); return *this; } void SetDepth(float depth) { if(depth > 0) upper.Z(lower.Z() + depth); else lower.Z(upper.Z() + depth); } inline FTPoint const Upper() const { return upper; } inline FTPoint const Lower() const { return lower; } private: /** * The bounds of the box */ FTPoint lower, upper; }; #endif //__cplusplus #endif // __FTBBox__ ftgl-2.1.3~rc5/src/FTGL/FTFont.h0000644000175000017500000004730311023172054013040 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTFont__ #define __FTFont__ #ifdef __cplusplus class FTFontImpl; /** * FTFont is the public interface for the FTGL library. * * Specific font classes are derived from this class. It uses the helper * classes FTFace and FTSize to access the Freetype library. This class * is abstract and deriving classes must implement the protected * MakeGlyph function to create glyphs of the * appropriate type. * * It is good practice after using these functions to test the error * code returned. FT_Error Error(). Check the freetype file * fterrdef.h for error definitions. * * @see FTFace * @see FTSize */ class FTGL_EXPORT FTFont { protected: /** * Open and read a font file. Sets Error flag. * * @param fontFilePath font file path. */ FTFont(char const *fontFilePath); /** * Open and read a font from a buffer in memory. Sets Error flag. * The buffer is owned by the client and is NOT copied by FTGL. The * pointer must be valid while using FTGL. * * @param pBufferBytes the in-memory buffer * @param bufferSizeInBytes the length of the buffer in bytes */ FTFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes); private: /* Allow our internal subclasses to access the private constructor */ friend class FTBitmapFont; friend class FTBufferFont; friend class FTExtrudeFont; friend class FTOutlineFont; friend class FTPixmapFont; friend class FTPolygonFont; friend class FTTextureFont; /** * Internal FTGL FTFont constructor. For private use only. * * @param pImpl Internal implementation object. Will be destroyed * upon FTFont deletion. */ FTFont(FTFontImpl *pImpl); public: virtual ~FTFont(); /** * Attach auxilliary file to font e.g font metrics. * * Note: not all font formats implement this function. * * @param fontFilePath auxilliary font file path. * @return true if file has been attached * successfully. */ virtual bool Attach(const char* fontFilePath); /** * Attach auxilliary data to font e.g font metrics, from memory. * * Note: not all font formats implement this function. * * @param pBufferBytes the in-memory buffer. * @param bufferSizeInBytes the length of the buffer in bytes. * @return true if file has been attached * successfully. */ virtual bool Attach(const unsigned char *pBufferBytes, size_t bufferSizeInBytes); /** * Set the glyph loading flags. By default, fonts use the most * sensible flags when loading a font's glyph using FT_Load_Glyph(). * This function allows to override the default flags. * * @param flags The glyph loading flags. */ virtual void GlyphLoadFlags(FT_Int flags); /** * Set the character map for the face. * * @param encoding Freetype enumerate for char map code. * @return true if charmap was valid and * set correctly. */ virtual bool CharMap(FT_Encoding encoding); /** * Get the number of character maps in this face. * * @return character map count. */ virtual unsigned int CharMapCount() const; /** * Get a list of character maps in this face. * * @return pointer to the first encoding. */ virtual FT_Encoding* CharMapList(); /** * Set the char size for the current face. * * @param size the face size in points (1/72 inch) * @param res the resolution of the target device. * @return true if size was set correctly */ virtual bool FaceSize(const unsigned int size, const unsigned int res = 72); /** * Get the current face size in points (1/72 inch). * * @return face size */ virtual unsigned int FaceSize() const; /** * Set the extrusion distance for the font. Only implemented by * FTExtrudeFont * * @param depth The extrusion distance. */ virtual void Depth(float depth); /** * Set the outset distance for the font. Only implemented by * FTOutlineFont, FTPolygonFont and FTExtrudeFont * * @param outset The outset distance. */ virtual void Outset(float outset); /** * Set the front and back outset distances for the font. Only * implemented by FTExtrudeFont * * @param front The front outset distance. * @param back The back outset distance. */ virtual void Outset(float front, float back); /** * Enable or disable the use of Display Lists inside FTGL * * @param useList true turns ON display lists. * false turns OFF display lists. */ virtual void UseDisplayList(bool useList); /** * Get the global ascender height for the face. * * @return Ascender height */ virtual float Ascender() const; /** * Gets the global descender height for the face. * * @return Descender height */ virtual float Descender() const; /** * Gets the line spacing for the font. * * @return Line height */ virtual float LineHeight() const; /** * Get the bounding box for a string. * * @param string A char buffer. * @param len The length of the string. If < 0 then all characters * will be checked until a null character is encountered * (optional). * @param position The pen position of the first character (optional). * @param spacing A displacement vector to add after each character * has been checked (optional). * @return The corresponding bounding box. */ virtual FTBBox BBox(const char *string, const int len = -1, FTPoint position = FTPoint(), FTPoint spacing = FTPoint()); /** * Get the bounding box for a string (deprecated). * * @param string A char buffer. * @param llx Lower left near x coordinate. * @param lly Lower left near y coordinate. * @param llz Lower left near z coordinate. * @param urx Upper right far x coordinate. * @param ury Upper right far y coordinate. * @param urz Upper right far z coordinate. */ void BBox(const char* string, float& llx, float& lly, float& llz, float& urx, float& ury, float& urz) { FTBBox b = BBox(string); llx = b.Lower().Xf(); lly = b.Lower().Yf(); llz = b.Lower().Zf(); urx = b.Upper().Xf(); ury = b.Upper().Yf(); urz = b.Upper().Zf(); } /** * Get the bounding box for a string. * * @param string A wchar_t buffer. * @param len The length of the string. If < 0 then all characters * will be checked until a null character is encountered * (optional). * @param position The pen position of the first character (optional). * @param spacing A displacement vector to add after each character * has been checked (optional). * @return The corresponding bounding box. */ virtual FTBBox BBox(const wchar_t *string, const int len = -1, FTPoint position = FTPoint(), FTPoint spacing = FTPoint()); /** * Get the bounding box for a string (deprecated). * * @param string A wchar_t buffer. * @param llx Lower left near x coordinate. * @param lly Lower left near y coordinate. * @param llz Lower left near z coordinate. * @param urx Upper right far x coordinate. * @param ury Upper right far y coordinate. * @param urz Upper right far z coordinate. */ void BBox(const wchar_t* string, float& llx, float& lly, float& llz, float& urx, float& ury, float& urz) { FTBBox b = BBox(string); llx = b.Lower().Xf(); lly = b.Lower().Yf(); llz = b.Lower().Zf(); urx = b.Upper().Xf(); ury = b.Upper().Yf(); urz = b.Upper().Zf(); } /** * Get the advance for a string. * * @param string 'C' style string to be checked. * @param len The length of the string. If < 0 then all characters * will be checked until a null character is encountered * (optional). * @param spacing A displacement vector to add after each character * has been checked (optional). * @return The string's advance width. */ virtual float Advance(const char* string, const int len = -1, FTPoint spacing = FTPoint()); /** * Get the advance for a string. * * @param string A wchar_t string * @param len The length of the string. If < 0 then all characters * will be checked until a null character is encountered * (optional). * @param spacing A displacement vector to add after each character * has been checked (optional). * @return The string's advance width. */ virtual float Advance(const wchar_t* string, const int len = -1, FTPoint spacing = FTPoint()); /** * Render a string of characters. * * @param string 'C' style string to be output. * @param len The length of the string. If < 0 then all characters * will be displayed until a null character is encountered * (optional). * @param position The pen position of the first character (optional). * @param spacing A displacement vector to add after each character * has been displayed (optional). * @param renderMode Render mode to use for display (optional). * @return The new pen position after the last character was output. */ virtual FTPoint Render(const char* string, const int len = -1, FTPoint position = FTPoint(), FTPoint spacing = FTPoint(), int renderMode = FTGL::RENDER_ALL); /** * Render a string of characters * * @param string wchar_t string to be output. * @param len The length of the string. If < 0 then all characters * will be displayed until a null character is encountered * (optional). * @param position The pen position of the first character (optional). * @param spacing A displacement vector to add after each character * has been displayed (optional). * @param renderMode Render mode to use for display (optional). * @return The new pen position after the last character was output. */ virtual FTPoint Render(const wchar_t *string, const int len = -1, FTPoint position = FTPoint(), FTPoint spacing = FTPoint(), int renderMode = FTGL::RENDER_ALL); /** * Queries the Font for errors. * * @return The current error code. */ virtual FT_Error Error() const; protected: /* Allow impl to access MakeGlyph */ friend class FTFontImpl; /** * Construct a glyph of the correct type. * * Clients must override the function and return their specialised * FTGlyph. * * @param slot A FreeType glyph slot. * @return An FT****Glyph or null on failure. */ virtual FTGlyph* MakeGlyph(FT_GlyphSlot slot) = 0; private: /** * Internal FTGL FTFont implementation object. For private use only. */ FTFontImpl *impl; }; #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * FTGLfont is the public interface for the FTGL library. * * It is good practice after using these functions to test the error * code returned. FT_Error Error(). Check the freetype file * fterrdef.h for error definitions. */ struct _FTGLFont; typedef struct _FTGLfont FTGLfont; /** * Create a custom FTGL font object. * * @param fontFilePath The font file name. * @param data A pointer to private data that will be passed to callbacks. * @param makeglyphCallback A glyph-making callback function. * @return An FTGLfont* object. */ FTGL_EXPORT FTGLfont *ftglCreateCustomFont(char const *fontFilePath, void *data, FTGLglyph * (*makeglyphCallback) (FT_GlyphSlot, void *)); /** * Destroy an FTGL font object. * * @param font An FTGLfont* object. */ FTGL_EXPORT void ftglDestroyFont(FTGLfont* font); /** * Attach auxilliary file to font e.g. font metrics. * * Note: not all font formats implement this function. * * @param font An FTGLfont* object. * @param path Auxilliary font file path. * @return 1 if file has been attached successfully. */ FTGL_EXPORT int ftglAttachFile(FTGLfont* font, const char* path); /** * Attach auxilliary data to font, e.g. font metrics, from memory. * * Note: not all font formats implement this function. * * @param font An FTGLfont* object. * @param data The in-memory buffer. * @param size The length of the buffer in bytes. * @return 1 if file has been attached successfully. */ FTGL_EXPORT int ftglAttachData(FTGLfont* font, const unsigned char * data, size_t size); /** * Set the character map for the face. * * @param font An FTGLfont* object. * @param encoding Freetype enumerate for char map code. * @return 1 if charmap was valid and set correctly. */ FTGL_EXPORT int ftglSetFontCharMap(FTGLfont* font, FT_Encoding encoding); /** * Get the number of character maps in this face. * * @param font An FTGLfont* object. * @return character map count. */ FTGL_EXPORT unsigned int ftglGetFontCharMapCount(FTGLfont* font); /** * Get a list of character maps in this face. * * @param font An FTGLfont* object. * @return pointer to the first encoding. */ FTGL_EXPORT FT_Encoding* ftglGetFontCharMapList(FTGLfont* font); /** * Set the char size for the current face. * * @param font An FTGLfont* object. * @param size The face size in points (1/72 inch). * @param res The resolution of the target device, or 0 to use the default * value of 72. * @return 1 if size was set correctly. */ FTGL_EXPORT int ftglSetFontFaceSize(FTGLfont* font, unsigned int size, unsigned int res); /** * Get the current face size in points (1/72 inch). * * @param font An FTGLfont* object. * @return face size */ FTGL_EXPORT unsigned int ftglGetFontFaceSize(FTGLfont* font); /** * Set the extrusion distance for the font. Only implemented by * FTExtrudeFont. * * @param font An FTGLfont* object. * @param depth The extrusion distance. */ FTGL_EXPORT void ftglSetFontDepth(FTGLfont* font, float depth); /** * Set the outset distance for the font. Only FTOutlineFont, FTPolygonFont * and FTExtrudeFont implement front outset. Only FTExtrudeFont implements * back outset. * * @param font An FTGLfont* object. * @param front The front outset distance. * @param back The back outset distance. */ FTGL_EXPORT void ftglSetFontOutset(FTGLfont* font, float front, float back); /** * Enable or disable the use of Display Lists inside FTGL. * * @param font An FTGLfont* object. * @param useList 1 turns ON display lists. * 0 turns OFF display lists. */ FTGL_EXPORT void ftglSetFontDisplayList(FTGLfont* font, int useList); /** * Get the global ascender height for the face. * * @param font An FTGLfont* object. * @return Ascender height */ FTGL_EXPORT float ftglGetFontAscender(FTGLfont* font); /** * Gets the global descender height for the face. * * @param font An FTGLfont* object. * @return Descender height */ FTGL_EXPORT float ftglGetFontDescender(FTGLfont* font); /** * Gets the line spacing for the font. * * @param font An FTGLfont* object. * @return Line height */ FTGL_EXPORT float ftglGetFontLineHeight(FTGLfont* font); /** * Get the bounding box for a string. * * @param font An FTGLfont* object. * @param string A char buffer * @param len The length of the string. If < 0 then all characters will be * checked until a null character is encountered (optional). * @param bounds An array of 6 float values where the bounding box's lower * left near and upper right far 3D coordinates will be stored. */ FTGL_EXPORT void ftglGetFontBBox(FTGLfont* font, const char *string, int len, float bounds[6]); /** * Get the advance width for a string. * * @param font An FTGLfont* object. * @param string A char string. * @return Advance width */ FTGL_EXPORT float ftglGetFontAdvance(FTGLfont* font, const char *string); /** * Render a string of characters. * * @param font An FTGLfont* object. * @param string Char string to be output. * @param mode Render mode to display. */ FTGL_EXPORT void ftglRenderFont(FTGLfont* font, const char *string, int mode); /** * Query a font for errors. * * @param font An FTGLfont* object. * @return The current error code. */ FTGL_EXPORT FT_Error ftglGetFontError(FTGLfont* font); FTGL_END_C_DECLS #endif // __FTFont__ ftgl-2.1.3~rc5/src/FTGL/FTGLExtrdFont.h0000644000175000017500000000617711007404447014304 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTExtrudeFont__ #define __FTExtrudeFont__ #ifdef __cplusplus /** * FTExtrudeFont is a specialisation of the FTFont class for handling * extruded Polygon fonts * * @see FTFont * @see FTPolygonFont */ class FTGL_EXPORT FTExtrudeFont : public FTFont { public: /** * Open and read a font file. Sets Error flag. * * @param fontFilePath font file path. */ FTExtrudeFont(const char* fontFilePath); /** * Open and read a font from a buffer in memory. Sets Error flag. * The buffer is owned by the client and is NOT copied by FTGL. The * pointer must be valid while using FTGL. * * @param pBufferBytes the in-memory buffer * @param bufferSizeInBytes the length of the buffer in bytes */ FTExtrudeFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes); /** * Destructor */ ~FTExtrudeFont(); protected: /** * Construct a glyph of the correct type. * * Clients must override the function and return their specialised * FTGlyph. * * @param slot A FreeType glyph slot. * @return An FT****Glyph or null on failure. */ virtual FTGlyph* MakeGlyph(FT_GlyphSlot slot); }; #define FTGLExtrdFont FTExtrudeFont #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialised FTGLfont object for handling extruded poygon fonts. * * @param file The font file name. * @return An FTGLfont* object. * * @see FTGLfont * @see ftglCreatePolygonFont */ FTGL_EXPORT FTGLfont *ftglCreateExtrudeFont(const char *file); FTGL_END_C_DECLS #endif // __FTExtrudeFont__ ftgl-2.1.3~rc5/src/FTGL/FTBufferFont.h0000644000175000017500000000563411014316501014170 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning Please use instead of . # include #endif #ifndef __FTBufferFont__ #define __FTBufferFont__ #ifdef __cplusplus /** * FTBufferFont is a specialisation of the FTFont class for handling * memory buffer fonts. * * @see FTFont */ class FTGL_EXPORT FTBufferFont : public FTFont { public: /** * Open and read a font file. Sets Error flag. * * @param fontFilePath font file path. */ FTBufferFont(const char* fontFilePath); /** * Open and read a font from a buffer in memory. Sets Error flag. * The buffer is owned by the client and is NOT copied by FTGL. The * pointer must be valid while using FTGL. * * @param pBufferBytes the in-memory buffer * @param bufferSizeInBytes the length of the buffer in bytes */ FTBufferFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes); /** * Destructor */ ~FTBufferFont(); protected: /** * Construct a glyph of the correct type. * * Clients must override the function and return their specialised * FTGlyph. * * @param slot A FreeType glyph slot. * @return An FT****Glyph or null on failure. */ virtual FTGlyph* MakeGlyph(FT_GlyphSlot slot); }; #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialised FTGLfont object for handling memory buffer fonts. * * @param file The font file name. * @return An FTGLfont* object. * * @see FTGLfont */ FTGL_EXPORT FTGLfont *ftglCreateBufferFont(const char *file); FTGL_END_C_DECLS #endif // __FTBufferFont__ ftgl-2.1.3~rc5/src/FTGL/ftgl.h0000644000175000017500000001017711021765627012647 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ #define __ftgl__ /* We need the Freetype headers */ #include #include FT_FREETYPE_H #include FT_GLYPH_H #include FT_OUTLINE_H /* Floating point types used by the library */ typedef double FTGL_DOUBLE; typedef float FTGL_FLOAT; /* Macros used to declare C-linkage types and symbols */ #ifdef __cplusplus # define FTGL_BEGIN_C_DECLS extern "C" { namespace FTGL { # define FTGL_END_C_DECLS } } #else # define FTGL_BEGIN_C_DECLS # define FTGL_END_C_DECLS #endif #ifdef __cplusplus namespace FTGL { typedef enum { RENDER_FRONT = 0x0001, RENDER_BACK = 0x0002, RENDER_SIDE = 0x0004, RENDER_ALL = 0xffff } RenderMode; typedef enum { ALIGN_LEFT = 0, ALIGN_CENTER = 1, ALIGN_RIGHT = 2, ALIGN_JUSTIFY = 3 } TextAlignment; } #else # define FTGL_RENDER_FRONT 0x0001 # define FTGL_RENDER_BACK 0x0002 # define FTGL_RENDER_SIDE 0x0004 # define FTGL_RENDER_ALL 0xffff # define FTGL_ALIGN_LEFT 0 # define FTGL_ALIGN_CENTER 1 # define FTGL_ALIGN_RIGHT 2 # define FTGL_ALIGN_JUSTIFY 3 #endif // Compiler-specific conditional compilation #ifdef _MSC_VER // MS Visual C++ // Disable various warning. // 4786: template name too long #pragma warning(disable : 4251) #pragma warning(disable : 4275) #pragma warning(disable : 4786) // The following definitions control how symbols are exported. // If the target is a static library ensure that FTGL_LIBRARY_STATIC // is defined. If building a dynamic library (ie DLL) ensure the // FTGL_LIBRARY macro is defined, as it will mark symbols for // export. If compiling a project to _use_ the _dynamic_ library // version of the library, no definition is required. #ifdef FTGL_LIBRARY_STATIC // static lib - no special export required # define FTGL_EXPORT #elif FTGL_LIBRARY // dynamic lib - must export/import symbols appropriately. # define FTGL_EXPORT __declspec(dllexport) #else # define FTGL_EXPORT __declspec(dllimport) #endif #else // Compiler that is not MS Visual C++. // Ensure that the export symbol is defined (and blank) #define FTGL_EXPORT #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #endif // __ftgl__ ftgl-2.1.3~rc5/src/FTGL/FTGLOutlineFont.h0000644000175000017500000000611511007404456014625 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTOutlineFont__ #define __FTOutlineFont__ #ifdef __cplusplus /** * FTOutlineFont is a specialisation of the FTFont class for handling * Vector Outline fonts * * @see FTFont */ class FTGL_EXPORT FTOutlineFont : public FTFont { public: /** * Open and read a font file. Sets Error flag. * * @param fontFilePath font file path. */ FTOutlineFont(const char* fontFilePath); /** * Open and read a font from a buffer in memory. Sets Error flag. * The buffer is owned by the client and is NOT copied by FTGL. The * pointer must be valid while using FTGL. * * @param pBufferBytes the in-memory buffer * @param bufferSizeInBytes the length of the buffer in bytes */ FTOutlineFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes); /** * Destructor */ ~FTOutlineFont(); protected: /** * Construct a glyph of the correct type. * * Clients must override the function and return their specialised * FTGlyph. * * @param slot A FreeType glyph slot. * @return An FT****Glyph or null on failure. */ virtual FTGlyph* MakeGlyph(FT_GlyphSlot slot); }; #define FTGLOutlineFont FTOutlineFont #endif //__cplusplus FTGL_BEGIN_C_DECLS /** * Create a specialised FTGLfont object for handling vector outline fonts. * * @param file The font file name. * @return An FTGLfont* object. * * @see FTGLfont */ FTGL_EXPORT FTGLfont *ftglCreateOutlineFont(const char *file); FTGL_END_C_DECLS #endif // __FTOutlineFont__ ftgl-2.1.3~rc5/src/FTGL/FTPoint.h0000644000175000017500000001702411023212544013217 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTPoint__ #define __FTPoint__ #ifdef __cplusplus /** * FTPoint class is a basic 3-dimensional point or vector. */ class FTGL_EXPORT FTPoint { public: /** * Default constructor. Point is set to zero. */ inline FTPoint() { values[0] = 0; values[1] = 0; values[2] = 0; } /** * Constructor. Z coordinate is set to zero if unspecified. * * @param x First component * @param y Second component * @param z Third component */ inline FTPoint(const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z = 0) { values[0] = x; values[1] = y; values[2] = z; } /** * Constructor. This converts an FT_Vector to an FTPoint * * @param ft_vector A freetype vector */ inline FTPoint(const FT_Vector& ft_vector) { values[0] = ft_vector.x; values[1] = ft_vector.y; values[2] = 0; } /** * Normalise a point's coordinates. If the coordinates are zero, * the point is left untouched. * * @return A vector of norm one. */ FTPoint Normalise(); /** * Operator += In Place Addition. * * @param point * @return this plus point. */ inline FTPoint& operator += (const FTPoint& point) { values[0] += point.values[0]; values[1] += point.values[1]; values[2] += point.values[2]; return *this; } /** * Operator + * * @param point * @return this plus point. */ inline FTPoint operator + (const FTPoint& point) const { FTPoint temp; temp.values[0] = values[0] + point.values[0]; temp.values[1] = values[1] + point.values[1]; temp.values[2] = values[2] + point.values[2]; return temp; } /** * Operator -= In Place Substraction. * * @param point * @return this minus point. */ inline FTPoint& operator -= (const FTPoint& point) { values[0] -= point.values[0]; values[1] -= point.values[1]; values[2] -= point.values[2]; return *this; } /** * Operator - * * @param point * @return this minus point. */ inline FTPoint operator - (const FTPoint& point) const { FTPoint temp; temp.values[0] = values[0] - point.values[0]; temp.values[1] = values[1] - point.values[1]; temp.values[2] = values[2] - point.values[2]; return temp; } /** * Operator * Scalar multiplication * * @param multiplier * @return this multiplied by multiplier. */ inline FTPoint operator * (double multiplier) const { FTPoint temp; temp.values[0] = values[0] * multiplier; temp.values[1] = values[1] * multiplier; temp.values[2] = values[2] * multiplier; return temp; } /** * Operator * Scalar multiplication * * @param point * @param multiplier * @return multiplier multiplied by point. */ inline friend FTPoint operator * (double multiplier, FTPoint& point) { return point * multiplier; } /** * Operator * Scalar product * * @param a First vector. * @param b Second vector. * @return a.b scalar product. */ inline friend double operator * (FTPoint &a, FTPoint& b) { return a.values[0] * b.values[0] + a.values[1] * b.values[1] + a.values[2] * b.values[2]; } /** * Operator ^ Vector product * * @param point Second point * @return this vector point. */ inline FTPoint operator ^ (const FTPoint& point) { FTPoint temp; temp.values[0] = values[1] * point.values[2] - values[2] * point.values[1]; temp.values[1] = values[2] * point.values[0] - values[0] * point.values[2]; temp.values[2] = values[0] * point.values[1] - values[1] * point.values[0]; return temp; } /** * Operator == Tests for equality * * @param a * @param b * @return true if a & b are equal */ friend bool operator == (const FTPoint &a, const FTPoint &b); /** * Operator != Tests for non equality * * @param a * @param b * @return true if a & b are not equal */ friend bool operator != (const FTPoint &a, const FTPoint &b); /** * Cast to FTGL_DOUBLE* */ inline operator const FTGL_DOUBLE*() const { return values; } /** * Setters */ inline void X(FTGL_DOUBLE x) { values[0] = x; }; inline void Y(FTGL_DOUBLE y) { values[1] = y; }; inline void Z(FTGL_DOUBLE z) { values[2] = z; }; /** * Getters */ inline FTGL_DOUBLE X() const { return values[0]; }; inline FTGL_DOUBLE Y() const { return values[1]; }; inline FTGL_DOUBLE Z() const { return values[2]; }; inline FTGL_FLOAT Xf() const { return static_cast(values[0]); }; inline FTGL_FLOAT Yf() const { return static_cast(values[1]); }; inline FTGL_FLOAT Zf() const { return static_cast(values[2]); }; private: /** * The point data */ FTGL_DOUBLE values[3]; }; #endif //__cplusplus #endif // __FTPoint__ ftgl-2.1.3~rc5/src/FTGL/FTBufferGlyph.h0000644000175000017500000000426211024221500014334 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2008 Sam Hocevar * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning Please use instead of . # include #endif #ifndef __FTBufferGlyph__ #define __FTBufferGlyph__ #ifdef __cplusplus /** * FTBufferGlyph is a specialisation of FTGlyph for memory buffer rendering. */ class FTGL_EXPORT FTBufferGlyph : public FTGlyph { public: /** * Constructor * * @param glyph The Freetype glyph to be processed * @param buffer An FTBuffer object in which to render the glyph. */ FTBufferGlyph(FT_GlyphSlot glyph, FTBuffer *buffer); /** * Destructor */ virtual ~FTBufferGlyph(); /** * Render this glyph at the current pen position. * * @param pen The current pen position. * @param renderMode Render mode to display * @return The advance distance for this glyph. */ virtual const FTPoint& Render(const FTPoint& pen, int renderMode); }; #endif //__cplusplus #endif // __FTBufferGlyph__ ftgl-2.1.3~rc5/src/FTGL/FTSimpleLayout.h0000644000175000017500000001472011011634643014562 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * Copyright (c) 2008 Sam Hocevar * Copyright (c) 2008 Sean Morrison * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __ftgl__ # warning This header is deprecated. Please use from now. # include #endif #ifndef __FTSimpleLayout__ #define __FTSimpleLayout__ #ifdef __cplusplus class FTFont; /** * FTSimpleLayout is a specialisation of FTLayout for simple text boxes. * * This class has basic support for text wrapping, left, right and centered * alignment, and text justification. * * @see FTLayout */ class FTGL_EXPORT FTSimpleLayout : public FTLayout { public: /** * Initializes line spacing to 1.0, alignment to * ALIGN_LEFT and wrap to 100.0 */ FTSimpleLayout(); /** * Destructor */ ~FTSimpleLayout(); /** * Get the bounding box for a formatted string. * * @param string A char string. * @param len The length of the string. If < 0 then all characters * will be checked until a null character is encountered * (optional). * @param position The pen position of the first character (optional). * @return The corresponding bounding box. */ virtual FTBBox BBox(const char* string, const int len = -1, FTPoint position = FTPoint()); /** * Get the bounding box for a formatted string. * * @param string A wchar_t string. * @param len The length of the string. If < 0 then all characters * will be checked until a null character is encountered * (optional). * @param position The pen position of the first character (optional). * @return The corresponding bounding box. */ virtual FTBBox BBox(const wchar_t* string, const int len = -1, FTPoint position = FTPoint()); /** * Render a string of characters. * * @param string 'C' style string to be output. * @param len The length of the string. If < 0 then all characters * will be displayed until a null character is encountered * (optional). * @param position The pen position of the first character (optional). * @param renderMode Render mode to display (optional) */ virtual void Render(const char *string, const int len = -1, FTPoint position = FTPoint(), int renderMode = FTGL::RENDER_ALL); /** * Render a string of characters. * * @param string wchar_t string to be output. * @param len The length of the string. If < 0 then all characters * will be displayed until a null character is encountered * (optional). * @param position The pen position of the first character (optional). * @param renderMode Render mode to display (optional) */ virtual void Render(const wchar_t *string, const int len = -1, FTPoint position = FTPoint(), int renderMode = FTGL::RENDER_ALL); /** * Set the font to use for rendering the text. * * @param fontInit A pointer to the new font. The font is * referenced by this but will not be * disposed of when this is deleted. */ void SetFont(FTFont *fontInit); /** * @return The current font. */ FTFont *GetFont(); /** * The maximum line length for formatting text. * * @param LineLength The new line length. */ void SetLineLength(const float LineLength); /** * @return The current line length. */ float GetLineLength() const; /** * The text alignment mode used to distribute * space within a line or rendered text. * * @param Alignment The new alignment mode. */ void SetAlignment(const FTGL::TextAlignment Alignment); /** * @return The text alignment mode. */ FTGL::TextAlignment GetAlignment() const; /** * Sets the line height. * * @param LineSpacing The height of each line of text expressed as * a percentage of the current fonts line height. */ void SetLineSpacing(const float LineSpacing); /** * @return The line spacing. */ float GetLineSpacing() const; }; #endif //__cplusplus FTGL_BEGIN_C_DECLS FTGL_EXPORT FTGLlayout *ftglCreateSimpleLayout(void); FTGL_EXPORT void ftglSetLayoutFont(FTGLlayout *, FTGLfont*); FTGL_EXPORT FTGLfont *ftglGetLayoutFont(FTGLlayout *); FTGL_EXPORT void ftglSetLayoutLineLength(FTGLlayout *, const float); FTGL_EXPORT float ftglGetLayoutLineLength(FTGLlayout *); FTGL_EXPORT void ftglSetLayoutAlignment(FTGLlayout *, const int); FTGL_EXPORT int ftglGetLayoutAlignement(FTGLlayout *); FTGL_EXPORT void ftglSetLayoutLineSpacing(FTGLlayout *, const float); FTGL_EXPORT float ftglGetLayoutLineSpacing(FTGLlayout *); FTGL_END_C_DECLS #endif /* __FTSimpleLayout__ */ ftgl-2.1.3~rc5/src/FTFace.h0000644000175000017500000001223511011560551012230 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __FTFace__ #define __FTFace__ #include #include FT_FREETYPE_H #include FT_GLYPH_H #include "FTGL/ftgl.h" #include "FTSize.h" /** * FTFace class provides an abstraction layer for the Freetype Face. * * @see "Freetype 2 Documentation" * */ class FTFace { public: /** * Opens and reads a face file. Error is set. * * @param fontFilePath font file path. */ FTFace(const char* fontFilePath, bool precomputeKerning = true); /** * Read face data from an in-memory buffer. Error is set. * * @param pBufferBytes the in-memory buffer * @param bufferSizeInBytes the length of the buffer in bytes */ FTFace(const unsigned char *pBufferBytes, size_t bufferSizeInBytes, bool precomputeKerning = true); /** * Destructor * * Disposes of the current Freetype Face. */ virtual ~FTFace(); /** * Attach auxilliary file to font (e.g., font metrics). * * @param fontFilePath auxilliary font file path. * @return true if file has opened * successfully. */ bool Attach(const char* fontFilePath); /** * Attach auxilliary data to font (e.g., font metrics) from memory * * @param pBufferBytes the in-memory buffer * @param bufferSizeInBytes the length of the buffer in bytes * @return true if file has opened * successfully. */ bool Attach(const unsigned char *pBufferBytes, size_t bufferSizeInBytes); /** * Get the freetype face object.. * * @return pointer to an FT_Face. */ FT_Face* Face() const { return ftFace; } /** * Sets the char size for the current face. * * This doesn't guarantee that the size was set correctly. Clients * should check errors. * * @param size the face size in points (1/72 inch) * @param res the resolution of the target device. * @return FTSize object */ const FTSize& Size(const unsigned int size, const unsigned int res); /** * Get the number of character maps in this face. * * @return character map count. */ unsigned int CharMapCount() const; /** * Get a list of character maps in this face. * * @return pointer to the first encoding. */ FT_Encoding* CharMapList(); /** * Gets the kerning vector between two glyphs */ FTPoint KernAdvance(unsigned int index1, unsigned int index2); /** * Loads and creates a Freetype glyph. */ FT_GlyphSlot Glyph(unsigned int index, FT_Int load_flags); /** * Gets the number of glyphs in the current face. */ unsigned int GlyphCount() const { return numGlyphs; } /** * Queries for errors. * * @return The current error code. */ FT_Error Error() const { return err; } private: /** * The Freetype face */ FT_Face* ftFace; /** * The size object associated with this face */ FTSize charSize; /** * The number of glyphs in this face */ int numGlyphs; FT_Encoding* fontEncodingList; /** * This face has kerning tables */ bool hasKerningTable; /** * If this face has kerning tables, we can cache them. */ void BuildKerningCache(); static const unsigned int MAX_PRECOMPUTED = 128; float *kerningCache; /** * Current error code. Zero means no error. */ FT_Error err; }; #endif // __FTFace__ ftgl-2.1.3~rc5/ftgl.pc.in0000644000175000017500000000045411022777524012101 00000000000000prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: @PACKAGE_NAME@ Description: OpenGL frontend to Freetype 2 Version: @PACKAGE_VERSION@ Libs: -L${libdir} -lftgl Requires.private: freetype2 Libs.private: @GL_LIBS@ -lm Cflags: -I${includedir} -I${includedir}/FTGL ftgl-2.1.3~rc5/m4/0000777000175000017500000000000011021201372010573 500000000000000ftgl-2.1.3~rc5/m4/freetype2.m40000644000175000017500000001427011020644162012671 00000000000000# Configure paths for FreeType2 # Marcelo Magallon 2001-10-26, based on gtk.m4 by Owen Taylor # # Copyright 2001, 2003, 2007 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the FreeType project license, # LICENSE.TXT. By continuing to use, modify, or distribute this file you # indicate that you have read the license and understand and accept it # fully. # # As a special exception to the FreeType project license, this file may be # distributed as part of a program that contains a configuration script # generated by Autoconf, under the same distribution terms as the rest of # that program. # # serial 2 # AC_CHECK_FT2([MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) # Test for FreeType 2, and define FT2_CFLAGS and FT2_LIBS. # MINIMUM-VERSION is what libtool reports; the default is `7.0.1' (this is # FreeType 2.0.4). # AC_DEFUN([AC_CHECK_FT2], [# Get the cflags and libraries from the freetype-config script # AC_ARG_WITH([ft-prefix], dnl don't quote AS_HELP_STRING! AS_HELP_STRING([--with-ft-prefix=PREFIX], [Prefix where FreeType is installed (optional)]), [ft_config_prefix="$withval"], [ft_config_prefix=""]) AC_ARG_WITH([ft-exec-prefix], dnl don't quote AS_HELP_STRING! AS_HELP_STRING([--with-ft-exec-prefix=PREFIX], [Exec prefix where FreeType is installed (optional)]), [ft_config_exec_prefix="$withval"], [ft_config_exec_prefix=""]) AC_ARG_ENABLE([freetypetest], dnl don't quote AS_HELP_STRING! AS_HELP_STRING([--disable-freetypetest], [Do not try to compile and run a test FreeType program]), [], [enable_fttest=yes]) if test x$ft_config_exec_prefix != x ; then ft_config_args="$ft_config_args --exec-prefix=$ft_config_exec_prefix" if test x${FT2_CONFIG+set} != xset ; then FT2_CONFIG=$ft_config_exec_prefix/bin/freetype-config fi fi if test x$ft_config_prefix != x ; then ft_config_args="$ft_config_args --prefix=$ft_config_prefix" if test x${FT2_CONFIG+set} != xset ; then FT2_CONFIG=$ft_config_prefix/bin/freetype-config fi fi AC_PATH_PROG([FT2_CONFIG], [freetype-config], [no]) min_ft_version=m4_if([$1], [], [7.0.1], [$1]) AC_MSG_CHECKING([for FreeType -- version >= $min_ft_version]) no_ft="" if test "$FT2_CONFIG" = "no" ; then no_ft=yes else FT2_CFLAGS=`$FT2_CONFIG $ft_config_args --cflags` FT2_LIBS=`$FT2_CONFIG $ft_config_args --libs` ft_config_major_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` ft_config_minor_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` ft_config_micro_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` ft_min_major_version=`echo $min_ft_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` ft_min_minor_version=`echo $min_ft_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` ft_min_micro_version=`echo $min_ft_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` if test x$enable_fttest = xyes ; then ft_config_is_lt="" if test $ft_config_major_version -lt $ft_min_major_version ; then ft_config_is_lt=yes else if test $ft_config_major_version -eq $ft_min_major_version ; then if test $ft_config_minor_version -lt $ft_min_minor_version ; then ft_config_is_lt=yes else if test $ft_config_minor_version -eq $ft_min_minor_version ; then if test $ft_config_micro_version -lt $ft_min_micro_version ; then ft_config_is_lt=yes fi fi fi fi fi if test x$ft_config_is_lt = xyes ; then no_ft=yes else ac_save_CPPFLAGS="$CPPFLAGS" ac_save_LIBS="$LIBS" CPPFLAGS="$CPPFLAGS $FT2_CFLAGS" LIBS="$FT2_LIBS $LIBS" # # Sanity checks for the results of freetype-config to some extent. # AC_RUN_IFELSE([ AC_LANG_SOURCE([[ #include #include FT_FREETYPE_H #include #include int main() { FT_Library library; FT_Error error; error = FT_Init_FreeType(&library); if (error) return 1; else { FT_Done_FreeType(library); return 0; } } ]]) ], [], [no_ft=yes], [echo $ECHO_N "cross compiling; assuming OK... $ECHO_C"]) CPPFLAGS="$ac_save_CPPFLAGS" LIBS="$ac_save_LIBS" fi # test $ft_config_version -lt $ft_min_version fi # test x$enable_fttest = xyes fi # test "$FT2_CONFIG" = "no" if test x$no_ft = x ; then AC_MSG_RESULT([yes]) m4_if([$2], [], [:], [$2]) else AC_MSG_RESULT([no]) if test "$FT2_CONFIG" = "no" ; then # AC_MSG_WARN([ # The freetype-config script installed by FreeType 2 could not be found. # If FreeType 2 was installed in PREFIX, make sure PREFIX/bin is in # your path, or set the FT2_CONFIG environment variable to the # full path to freetype-config. # ]) : else if test x$ft_config_is_lt = xyes ; then AC_MSG_WARN([ Your installed version of the FreeType 2 library is too old. If you have different versions of FreeType 2, make sure that correct values for --with-ft-prefix or --with-ft-exec-prefix are used, or set the FT2_CONFIG environment variable to the full path to freetype-config. ]) else AC_MSG_WARN([ The FreeType test program failed to run. If your system uses shared libraries and they are installed outside the normal system library path, make sure the variable LD_LIBRARY_PATH (or whatever is appropriate for your system) is correctly set. ]) fi fi FT2_CFLAGS="" FT2_LIBS="" m4_if([$3], [], [:], [$3]) fi AC_SUBST([FT2_CFLAGS]) AC_SUBST([FT2_LIBS])]) # end of freetype2.m4 ftgl-2.1.3~rc5/m4/gl.m40000644000175000017500000001102711007617131011364 00000000000000dnl FTGL_CHECK_GL() dnl Check for OpenGL development environment and GLU >= 1.2 dnl AC_DEFUN([FTGL_CHECK_GL], [dnl AC_REQUIRE([AC_PROG_CC]) AC_REQUIRE([AC_PATH_X]) AC_REQUIRE([AC_PATH_XTRA]) AC_ARG_WITH([--with-gl-inc], AC_HELP_STRING([--with-gl-inc=DIR],[Directory where GL/gl.h is installed])) AC_ARG_WITH([--with-gl-lib], AC_HELP_STRING([--with-gl-lib=DIR],[Directory where OpenGL libraries are installed])) AC_LANG_SAVE AC_LANG_C GL_SAVE_CPPFLAGS="$CPPFLAGS" GL_SAVE_LIBS="$LIBS" if test "x$no_x" != xyes ; then GL_CFLAGS="$X_CFLAGS" GL_X_LIBS="$X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu $X_EXTRA_LIBS" fi if test "x$with_gl_inc" != "xnone" ; then if test -d "$with_gl_inc" ; then GL_CFLAGS="-I$with_gl_inc" else GL_CFLAGS="$with_gl_inc" fi else GL_CFLAGS= fi CPPFLAGS="$GL_CFLAGS" AC_CHECK_HEADER([GL/gl.h], [AC_DEFINE([HAVE_GL_GL_H], 1, [Define to 1 if you have the ], [glBegin(GL_POINTS)], [FRAMEWORK_OPENGL="-Xlinker -framework -Xlinker OpenGL" ; ac_cv_search_glBegin="-Xlinker -framework -Xlinker OpenGL" ; AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)]) with_gl_lib="$FRAMEWORK_OPENGL" AC_SUBST(FRAMEWORK_OPENGL) LIBS="$PRELIBS" AC_MSG_CHECKING([for GL library]) if test "x$with_gl_lib" != "x" ; then if test -d "$with_gl_lib" ; then LIBS="-L$with_gl_lib -lGL" else LIBS="$with_gl_lib" fi else LIBS="-lGL" fi AC_LINK_IFELSE([AC_LANG_CALL([],[glBegin])],[HAVE_GL=yes], [HAVE_GL=no]) if test "x$HAVE_GL" = xno ; then if test "x$GL_X_LIBS" != x ; then LIBS="-lGL $GL_X_LIBS" AC_LINK_IFELSE([AC_LANG_CALL([],[glBegin])],[HAVE_GL=yes], [HAVE_GL=no]) fi fi if test "x$HAVE_GL" = xyes ; then AC_MSG_RESULT([yes]) GL_LIBS=$LIBS else AC_MSG_RESULT([no]) AC_MSG_ERROR([GL library could not be found, please specify its location with --with-gl-lib. If this still fails, please contact henryj@paradise.net.nz, include the string FTGL somewhere in the subject line and provide a copy of the config.log file that was left behind.]) fi AC_CHECK_HEADER([GL/glu.h], [AC_DEFINE([HAVE_GL_GLU_H], 1, [Define to 1 if you have the = 1.2]) AC_TRY_COMPILE([ #ifdef HAVE_GL_GLU_H # include #endif #ifdef HAVE_OPENGL_GLU_H # include #endif ], [ #if !defined(GLU_VERSION_1_2) #error GLU too old #endif ], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]) AC_MSG_ERROR([GLU >= 1.2 is needed to compile this library]) ]) if test "x$FRAMEWORK_OPENGL" = "x" ; then AC_MSG_CHECKING([for GLU library]) LIBS="-lGLU $GL_LIBS" AC_LINK_IFELSE([AC_LANG_CALL([],[gluNewTess])],[HAVE_GLU=yes], [HAVE_GLU=no]) if test "x$HAVE_GLU" = xno ; then if test "x$GL_X_LIBS" != x ; then LIBS="-lGLU $GL_LIBS $GL_X_LIBS" AC_LINK_IFELSE([AC_LANG_CALL([],[gluNewTess])],[HAVE_GLU=yes], [HAVE_GLU=no]) fi fi if test "x$HAVE_GLU" = xyes ; then AC_MSG_RESULT([yes]) GL_LIBS="$LIBS" else AC_MSG_RESULT([no]) AC_MSG_ERROR([GLU library could not be found, please specify its location with --with-gl-lib. If this still fails, please contact henryj@paradise.net.nz, include the string FTGL somewhere in the subject line and provide a copy of the config.log file that was left behind.]) fi fi AC_SUBST(GL_CFLAGS) AC_SUBST(GL_LIBS) CPPFLAGS="$GL_SAVE_CPPFLAGS" LIBS="$GL_SAVE_LIBS" AC_LANG_RESTORE GL_X_LIBS="" ]) ftgl-2.1.3~rc5/m4/font.m40000644000175000017500000000310411021201372011715 00000000000000dnl FTGL_CHECK_FONT() dnl Look for a TrueType font somewhere on the system. If no font is found, dnl no big deal, example programs will just require one in the command line. dnl This finds DejaVu, Bitstream and Microsoft fonts on Debian, Ubuntu, Gentoo, dnl Fedora, Mandriva, Slackware and OS X systems. dnl Also, we prefer serif fonts because they have elegant curves that render dnl well in OpenGL. dnl AC_DEFUN([FTGL_CHECK_FONT], [dnl AC_MSG_CHECKING(for a TrueType font on the system) dnl First try: fontconfig FONT_FILE="`fc-match -sv serif 2>/dev/null| sed -ne 's/.*\file:@<:@^"@:>@*"\(@<:@^"@:>@*\)".*/\1/p' | sed q`" dnl Second try: look into known paths if test "$FONT_FILE" = ""; then for font in \ DejaVuSerif.ttf VeraSe.ttf DejaVuSans.ttf Vera.ttf \ times.ttf Times.ttf arial.ttf Arial.ttf; do for dir in \ /usr/share/fonts \ /usr/share/fonts/truetype \ /usr/share/fonts/truetype/ttf-dejavu \ /usr/share/fonts/truetype/ttf-bitstream-vera \ /usr/share/fonts/TTF \ /usr/share/fonts/TTF/dejavu \ /usr/share/fonts/dejavu \ /usr/share/fonts/ttf-dejavu \ /usr/share/fonts/ttf-bitstream-vera \ /usr/X11R6/lib/X11/fonts \ /usr/X11R6/lib/X11/fonts/TTF; do if test -f "$dir/$font"; then FONT_FILE="$dir/$font"; break; fi done if test "$FONT_FILE" != no; then break; fi done fi if test "$FONT_FILE" != ""; then AC_DEFINE_UNQUOTED(FONT_FILE, "$FONT_FILE", [Define to the path to a TrueType font]) fi AC_MSG_RESULT($FONT_FILE) ]) ftgl-2.1.3~rc5/m4/glut.m40000644000175000017500000000547011007253502011740 00000000000000dnl FTGL_CHECK_GLUT() dnl Check for GLUT development environment dnl AC_DEFUN([FTGL_CHECK_GLUT], [dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PATH_X])dnl AC_REQUIRE([AC_PATH_XTRA])dnl AC_REQUIRE([FTGL_CHECK_GL])dnl AC_ARG_WITH([--with-glut-inc], AC_HELP_STRING([--with-glut-inc=DIR],[Directory where GL/glut.h is installed (optional)])) AC_ARG_WITH([--with-glut-lib], AC_HELP_STRING([--with-glut-lib=DIR],[Directory where GLUT libraries are installed (optional)])) AC_LANG_SAVE AC_LANG_C GLUT_SAVE_CPPFLAGS="$CPPFLAGS" GLUT_SAVE_LIBS="$LIBS" if test "$no_x" != "yes"; then GLUT_CFLAGS="$X_CFLAGS" GLUT_X_LIBS="$X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu $X_EXTRA_LIBS" fi if test "$with_glut_inc" != "none"; then if test -d "$with_glut_inc"; then GLUT_CFLAGS="-I$with_glut_inc" else GLUT_CFLAGS="$with_glut_inc" fi else GLUT_CFLAGS="" fi # Check for GLUT headers CPPFLAGS="$GLUT_CFLAGS" AC_CHECK_HEADERS([GL/glut.h], [ac_cv_have_glut=yes], [AC_CHECK_HEADERS([GLUT/glut.h], [ac_cv_have_glut=yes], [ac_cv_have_glut=no])]) # Check for GLUT libraries if test "$ac_cv_have_glut" = "yes"; then AC_MSG_CHECKING([for GLUT library]) if test "$with_glut_lib" != ""; then if test -d "$with_glut_lib"; then LIBS="-L$with_glut_lib -lglut" else LIBS="$with_glut_lib" fi else LIBS="-lglut" fi AC_LINK_IFELSE( [AC_LANG_CALL([],[glutInit])], [ac_cv_have_glut=yes], [ac_cv_have_glut=no]) if test "$ac_cv_have_glut" = "no"; then # Try again with the GL libs LIBS="-lglut $GL_LIBS" AC_LINK_IFELSE( [AC_LANG_CALL([],[glutInit])], [ac_cv_have_glut=yes], [ac_cv_have_glut=no]) fi if test "$ac_cv_have_glut" = "no" && test "$GLUT_X_LIBS" != ""; then # Try again with the GL and X11 libs LIBS="-lglut $GL_LIBS $GLUT_X_LIBS" AC_LINK_IFELSE( [AC_LANG_CALL([],[glutInit])], [ac_cv_have_glut=yes], [ac_cv_have_glut=no]) fi if test "$ac_cv_have_glut" = "no"; then # Try again with GLUT framework LIBS="-Xlinker -framework -Xlinker OpenGL -Xlinker -framework -Xlinker GLUT" AC_LINK_IFELSE( [AC_LANG_CALL([],[glutInit])], [ac_cv_have_glut=yes], [ac_cv_have_glut=no]) fi if test "$ac_cv_have_glut" = "yes"; then AC_MSG_RESULT([yes]) GLUT_LIBS="$LIBS" else AC_MSG_RESULT([no]) fi fi if test "$ac_cv_have_glut" = "no"; then AC_MSG_WARN([GLUT headers not available, example program won't be compiled.]) fi AM_CONDITIONAL(HAVE_GLUT, [test "$ac_cv_have_glut" = "yes"]) AC_SUBST(GLUT_CFLAGS) AC_SUBST(GLUT_LIBS) AC_LANG_RESTORE CPPFLAGS="$GLUT_SAVE_CPPFLAGS" LIBS="$GLUT_SAVE_LIBS" GLUT_X_CFLAGS= GLUT_X_LIBS= ]) ftgl-2.1.3~rc5/m4/cxx.m40000644000175000017500000000136311005321433011561 00000000000000dnl FTGL_PROG_CXX() dnl Check the build platform and try to use the native compiler dnl AC_DEFUN([FTGL_PROG_CXX], [dnl AC_CANONICAL_BUILD AC_CANONICAL_HOST dnl I really don't know how to handle the cross-compiling case if test "$build" = "$host" ; then case "$build" in *-*-irix*) if test -z "$CXX" ; then CXX=CC fi if test -z "$CC" ; then CC=cc fi if test x$CXX = xCC -a -z "$CXXFLAGS" ; then # It might be worthwhile to move this out of here, say # EXTRA_CXXFLAGS. Forcing -n32 might cause trouble, too. CXXFLAGS="-LANG:std -n32 -woff 1201 -O3" fi ;; esac fi AC_PROG_CXX ]) ftgl-2.1.3~rc5/m4/pkg.m40000644000175000017500000001211411007401560011536 00000000000000# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # # Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # # Similar to PKG_CHECK_MODULES, make sure that the first instance of # this or PKG_CHECK_MODULES is called, or make sure to call # PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_ifval([$2], [$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$PKG_CONFIG"; then if test -n "$$1"; then pkg_cv_[]$1="$$1" else PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) fi else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` else $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD ifelse([$4], , [AC_MSG_ERROR(dnl [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT ])], [$4]) elif test $pkg_failed = untried; then ifelse([$4], , [AC_MSG_FAILURE(dnl [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])], [$4]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) ifelse([$3], , :, [$3]) fi[]dnl ])# PKG_CHECK_MODULES ftgl-2.1.3~rc5/README0000644000175000017500000000165511023236070011063 00000000000000FTGL 2.1 5 December 2004 DESCRIPTION: FTGL is a free open source library to enable developers to use arbitrary fonts in their OpenGL (www.opengl.org) applications. Unlike other OpenGL font libraries FTGL uses standard font file formats so doesn't need a preprocessing step to convert the high quality font data into a lesser quality, proprietary format. FTGL uses the Freetype (www.freetype.org) font library to open and 'decode' the fonts. It then takes that output and stores it in a format most efficient for OpenGL rendering. Rendering modes supported are: - Bit maps - Antialiased Pix maps - Outlines - Polygon meshes - Extruded polygon meshes - Texture maps - Buffer maps USAGE: FTGLPixmapFont font("Arial.ttf"); font.FaceSize(72); font.Render("Hello World!"); CONTACT: Please contact us if you have any suggestions, feature requests, or problems. Sam Hocevar Christopher Sean Morrison ftgl-2.1.3~rc5/config.h.in0000644000175000017500000000427711024231632012231 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* Define to the path to a TrueType font */ #undef FONT_FILE /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the header file. */ #undef HAVE_GLUT_GLUT_H /* Define to 1 if you have the header file. */ #undef HAVE_GL_GLUT_H /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the `strndup' function. */ #undef HAVE_STRNDUP /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to 1 if you have the `wcsdup' function. */ #undef HAVE_WCSDUP /* Define to 1 if your C compiler doesn't accept -c and -o together. */ #undef NO_MINUS_C_MINUS_O /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Define to 1 if the X Window System is missing or not being used. */ #undef X_DISPLAY_MISSING ftgl-2.1.3~rc5/aclocal.m40000644000175000017500000102335211024231626012045 00000000000000# generated automatically by aclocal 1.10.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(AC_AUTOCONF_VERSION, [2.61],, [m4_warning([this file was generated for autoconf 2.61. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # serial 52 Debian 1.5.26-4 AC_PROG_LIBTOOL # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) # ----------------------------------------------------------- # If this macro is not defined by Autoconf, define it here. m4_ifdef([AC_PROVIDE_IFELSE], [], [m4_define([AC_PROVIDE_IFELSE], [m4_ifdef([AC_PROVIDE_$1], [$2], [$3])])]) # AC_PROG_LIBTOOL # --------------- AC_DEFUN([AC_PROG_LIBTOOL], [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. AC_PROVIDE_IFELSE([AC_PROG_CXX], [AC_LIBTOOL_CXX], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX ])]) dnl And a similar setup for Fortran 77 support AC_PROVIDE_IFELSE([AC_PROG_F77], [AC_LIBTOOL_F77], [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 ])]) dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [ifdef([AC_PROG_GCJ], [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([A][M_PROG_GCJ], [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([LT_AC_PROG_GCJ], [define([LT_AC_PROG_GCJ], defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) ])])# AC_PROG_LIBTOOL # _AC_PROG_LIBTOOL # ---------------- AC_DEFUN([_AC_PROG_LIBTOOL], [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl # Prevent multiple expansion define([AC_PROG_LIBTOOL], []) ])# _AC_PROG_LIBTOOL # AC_LIBTOOL_SETUP # ---------------- AC_DEFUN([AC_LIBTOOL_SETUP], [AC_PREREQ(2.50)dnl AC_REQUIRE([AC_ENABLE_SHARED])dnl AC_REQUIRE([AC_ENABLE_STATIC])dnl AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_LD])dnl AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl AC_REQUIRE([AC_PROG_NM])dnl AC_REQUIRE([AC_PROG_LN_S])dnl AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! AC_REQUIRE([AC_OBJEXT])dnl AC_REQUIRE([AC_EXEEXT])dnl dnl AC_LIBTOOL_SYS_MAX_CMD_LEN AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE AC_LIBTOOL_OBJDIR AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_PROG_ECHO_BACKSLASH case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e 1s/^X//' [sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] # Same as above, but do not quote variable references. [double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" AC_CHECK_TOOL(AR, ar, false) AC_CHECK_TOOL(RANLIB, ranlib, :) AC_CHECK_TOOL(STRIP, strip, :) old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then AC_PATH_MAGIC fi ;; esac _LT_REQUIRED_DARWIN_CHECKS AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], enable_win32_dll=yes, enable_win32_dll=no) AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes AC_ARG_WITH([pic], [AC_HELP_STRING([--with-pic], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [pic_mode="$withval"], [pic_mode=default]) test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= AC_LIBTOOL_LANG_C_CONFIG _LT_AC_TAGCONFIG ])# AC_LIBTOOL_SETUP # _LT_AC_SYS_COMPILER # ------------------- AC_DEFUN([_LT_AC_SYS_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_AC_SYS_COMPILER # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. AC_DEFUN([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` ]) # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. AC_DEFUN([_LT_COMPILER_BOILERPLATE], [AC_REQUIRE([LT_AC_PROG_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. AC_DEFUN([_LT_LINKER_BOILERPLATE], [AC_REQUIRE([LT_AC_PROG_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # -------------------------- # Check for some things on darwin AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. echo "int foo(void){return 1;}" > conftest.c $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib ${wl}-single_module conftest.c if test -f libconftest.dylib; then lt_cv_apple_cc_single_mod=yes rm -rf libconftest.dylib* fi rm conftest.c fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS="$save_LDFLAGS" ]) case $host_os in rhapsody* | darwin1.[[0123]]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[[012]]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms="~$NMEDIT -s \$output_objdir/\${libname}-symbols.expsym \${lib}" fi if test "$DSYMUTIL" != ":"; then _lt_dsymutil="~$DSYMUTIL \$lib || :" else _lt_dsymutil= fi ;; esac ]) # _LT_AC_SYS_LIBPATH_AIX # ---------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], [AC_REQUIRE([LT_AC_PROG_SED])dnl AC_LINK_IFELSE(AC_LANG_PROGRAM,[ lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi ])# _LT_AC_SYS_LIBPATH_AIX # _LT_AC_SHELL_INIT(ARG) # ---------------------- AC_DEFUN([_LT_AC_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], [AC_DIVERT_PUSH(NOTICE)]) $1 AC_DIVERT_POP ])# _LT_AC_SHELL_INIT # _LT_AC_PROG_ECHO_BACKSLASH # -------------------------- # Add some code to the start of the generated configure script which # will find an echo command which doesn't interpret backslashes. AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], [_LT_AC_SHELL_INIT([ # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ;; esac echo=${ECHO-echo} if test "X[$]1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X[$]1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} fi if test "X[$]1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if (echo_test_string=`eval $cmd`) 2>/dev/null && echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL [$]0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL [$]0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "[$]0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" fi AC_SUBST(ECHO) ])])# _LT_AC_PROG_ECHO_BACKSLASH # _LT_AC_LOCK # ----------- AC_DEFUN([_LT_AC_LOCK], [AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line __oline__ "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], [*-*-cygwin* | *-*-mingw* | *-*-pw32*) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; ]) esac need_locks="$enable_libtool_lock" ])# _LT_AC_LOCK # AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED]) AC_CACHE_CHECK([$1], [$2], [$2=no ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $rm conftest* ]) if test x"[$]$2" = xyes; then ifelse([$5], , :, [$5]) else ifelse([$6], , :, [$6]) fi ])# AC_LIBTOOL_COMPILER_OPTION # AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ------------------------------------------------------------ # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $rm -r conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then ifelse([$4], , :, [$4]) else ifelse([$5], , :, [$5]) fi ])# AC_LIBTOOL_LINKER_OPTION # AC_LIBTOOL_SYS_MAX_CMD_LEN # -------------------------- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [# find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi ])# AC_LIBTOOL_SYS_MAX_CMD_LEN # _LT_AC_CHECK_DLFCN # ------------------ AC_DEFUN([_LT_AC_CHECK_DLFCN], [AC_CHECK_HEADERS(dlfcn.h)dnl ])# _LT_AC_CHECK_DLFCN # _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # --------------------------------------------------------------------- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); }] EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_AC_TRY_DLOPEN_SELF # AC_LIBTOOL_DLOPEN_SELF # ---------------------- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi ])# AC_LIBTOOL_DLOPEN_SELF # AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) # --------------------------------- # Check to see if options -c and -o are simultaneously supported by compiler AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], [AC_REQUIRE([LT_AC_PROG_SED])dnl AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* ]) ])# AC_LIBTOOL_PROG_CC_C_O # AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) # ----------------------------------------- # Check to see if we can do hard links to lock some files if needed AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_REQUIRE([_LT_AC_LOCK])dnl hard_links="nottested" if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi ])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS # AC_LIBTOOL_OBJDIR # ----------------- AC_DEFUN([AC_LIBTOOL_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir ])# AC_LIBTOOL_OBJDIR # AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) # ---------------------------------------------- # Check hardcoding attributes. AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_AC_TAGVAR(hardcode_action, $1)= if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existant directories. if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_AC_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_AC_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_AC_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi ])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH # AC_LIBTOOL_SYS_LIB_STRIP # ------------------------ AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], [striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi ])# AC_LIBTOOL_SYS_LIB_STRIP # AC_LIBTOOL_SYS_DYNAMIC_LINKER # ----------------------------- # PORTME Fill in your ld.so characteristics AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_REQUIRE([LT_AC_PROG_SED])dnl AC_MSG_CHECKING([dynamic linker characteristics]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" m4_if($1,[],[ if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$lt_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e 's/;/ /g'` else lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`echo $lt_tmp_lt_search_path_spec | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` sys_lib_search_path_spec=`echo $lt_search_path_spec` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[[4-9]]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[123]]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[[3-9]]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no AC_CACHE_VAL([lt_cv_sys_lib_search_path_spec], [lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec"]) sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" AC_CACHE_VAL([lt_cv_sys_lib_dlsearch_path_spec], [lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec"]) sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi ])# AC_LIBTOOL_SYS_DYNAMIC_LINKER # _LT_AC_TAGCONFIG # ---------------- AC_DEFUN([_LT_AC_TAGCONFIG], [AC_REQUIRE([LT_AC_PROG_SED])dnl AC_ARG_WITH([tags], [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], [include additional configurations @<:@automatic@:>@])], [tagnames="$withval"]) if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then AC_MSG_WARN([output file `$ofile' does not exist]) fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) else AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) fi fi if test -z "$LTCFLAGS"; then eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in "") ;; *) AC_MSG_ERROR([invalid tag name: $tagname]) ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then AC_MSG_ERROR([tag name \"$tagname\" already exists]) fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_LIBTOOL_LANG_CXX_CONFIG else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then AC_LIBTOOL_LANG_F77_CONFIG else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then AC_LIBTOOL_LANG_GCJ_CONFIG else tagname="" fi ;; RC) AC_LIBTOOL_LANG_RC_CONFIG ;; *) AC_MSG_ERROR([Unsupported tag name: $tagname]) ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" AC_MSG_ERROR([unable to update list of available tagged configurations.]) fi fi ])# _LT_AC_TAGCONFIG # AC_LIBTOOL_DLOPEN # ----------------- # enable checks for dlopen support AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_DLOPEN # AC_LIBTOOL_WIN32_DLL # -------------------- # declare package support for building win32 DLLs AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_WIN32_DLL # AC_ENABLE_SHARED([DEFAULT]) # --------------------------- # implement the --enable-shared flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_SHARED], [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([shared], [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]AC_ENABLE_SHARED_DEFAULT) ])# AC_ENABLE_SHARED # AC_DISABLE_SHARED # ----------------- # set the default shared flag to --disable-shared AC_DEFUN([AC_DISABLE_SHARED], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_SHARED(no) ])# AC_DISABLE_SHARED # AC_ENABLE_STATIC([DEFAULT]) # --------------------------- # implement the --enable-static flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_STATIC], [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([static], [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]AC_ENABLE_STATIC_DEFAULT) ])# AC_ENABLE_STATIC # AC_DISABLE_STATIC # ----------------- # set the default static flag to --disable-static AC_DEFUN([AC_DISABLE_STATIC], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_STATIC(no) ])# AC_DISABLE_STATIC # AC_ENABLE_FAST_INSTALL([DEFAULT]) # --------------------------------- # implement the --enable-fast-install flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_FAST_INSTALL], [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([fast-install], [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) ])# AC_ENABLE_FAST_INSTALL # AC_DISABLE_FAST_INSTALL # ----------------------- # set the default to --disable-fast-install AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_FAST_INSTALL(no) ])# AC_DISABLE_FAST_INSTALL # AC_LIBTOOL_PICMODE([MODE]) # -------------------------- # implement the --with-pic flag # MODE is either `yes' or `no'. If omitted, it defaults to `both'. AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl pic_mode=ifelse($#,1,$1,default) ])# AC_LIBTOOL_PICMODE # AC_PROG_EGREP # ------------- # This is predefined starting with Autoconf 2.54, so this conditional # definition can be removed once we require Autoconf 2.54 or later. m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], [if echo a | (grep -E '(a|b)') >/dev/null 2>&1 then ac_cv_prog_egrep='grep -E' else ac_cv_prog_egrep='egrep' fi]) EGREP=$ac_cv_prog_egrep AC_SUBST([EGREP]) ])]) # AC_PATH_TOOL_PREFIX # ------------------- # find a file program which can recognize shared library AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="ifelse([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi ])# AC_PATH_TOOL_PREFIX # AC_PATH_MAGIC # ------------- # find a file program which can recognize a shared library AC_DEFUN([AC_PATH_MAGIC], [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# AC_PATH_MAGIC # AC_PROG_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([AC_PROG_LD], [AC_ARG_WITH([gnu-ld], [AC_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no]) AC_REQUIRE([LT_AC_PROG_SED])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux* | k*bsd*-gnu) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown ])# AC_DEPLIBS_CHECK_METHOD # AC_PROG_NM # ---------- # find the pathname to a BSD-compatible name lister AC_DEFUN([AC_PROG_NM], [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi]) NM="$lt_cv_path_NM" ])# AC_PROG_NM # AC_CHECK_LIBM # ------------- # check for math library AC_DEFUN([AC_CHECK_LIBM], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac ])# AC_CHECK_LIBM # AC_LIBLTDL_CONVENIENCE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl convenience library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-convenience to the configure arguments. Note that # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, # it is assumed to be `libltdl'. LIBLTDL will be prefixed with # '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/' # (note the single quotes!). If your package is not flat and you're not # using automake, define top_builddir and top_srcdir appropriately in # the Makefiles. AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl case $enable_ltdl_convenience in no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; "") enable_ltdl_convenience=yes ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; esac LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_CONVENIENCE # AC_LIBLTDL_INSTALLABLE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl installable library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-install to the configure arguments. Note that # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, # and an installed libltdl is not found, it is assumed to be `libltdl'. # LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with # '${top_srcdir}/' (note the single quotes!). If your package is not # flat and you're not using automake, define top_builddir and top_srcdir # appropriately in the Makefiles. # In the future, this macro may have to be called after AC_PROG_LIBTOOL. AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_CHECK_LIB(ltdl, lt_dlinit, [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], [if test x"$enable_ltdl_install" = xno; then AC_MSG_WARN([libltdl not installed, but installation disabled]) else enable_ltdl_install=yes fi ]) if test x"$enable_ltdl_install" = x"yes"; then ac_configure_args="$ac_configure_args --enable-ltdl-install" LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) else ac_configure_args="$ac_configure_args --enable-ltdl-install=no" LIBLTDL="-lltdl" LTDLINCL= fi # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_INSTALLABLE # AC_LIBTOOL_CXX # -------------- # enable support for C++ libraries AC_DEFUN([AC_LIBTOOL_CXX], [AC_REQUIRE([_LT_AC_LANG_CXX]) ])# AC_LIBTOOL_CXX # _LT_AC_LANG_CXX # --------------- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) ])# _LT_AC_LANG_CXX # _LT_AC_PROG_CXXCPP # ------------------ AC_DEFUN([_LT_AC_PROG_CXXCPP], [ AC_REQUIRE([AC_PROG_CXX]) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP fi ])# _LT_AC_PROG_CXXCPP # AC_LIBTOOL_F77 # -------------- # enable support for Fortran 77 libraries AC_DEFUN([AC_LIBTOOL_F77], [AC_REQUIRE([_LT_AC_LANG_F77]) ])# AC_LIBTOOL_F77 # _LT_AC_LANG_F77 # --------------- AC_DEFUN([_LT_AC_LANG_F77], [AC_REQUIRE([AC_PROG_F77]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) ])# _LT_AC_LANG_F77 # AC_LIBTOOL_GCJ # -------------- # enable support for GCJ libraries AC_DEFUN([AC_LIBTOOL_GCJ], [AC_REQUIRE([_LT_AC_LANG_GCJ]) ])# AC_LIBTOOL_GCJ # _LT_AC_LANG_GCJ # --------------- AC_DEFUN([_LT_AC_LANG_GCJ], [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) ])# _LT_AC_LANG_GCJ # AC_LIBTOOL_RC # ------------- # enable support for Windows resource files AC_DEFUN([AC_LIBTOOL_RC], [AC_REQUIRE([LT_AC_PROG_RC]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) ])# AC_LIBTOOL_RC # AC_LIBTOOL_LANG_C_CONFIG # ------------------------ # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) AC_DEFUN([_LT_AC_LANG_C_CONFIG], [lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_SYS_LIB_STRIP AC_LIBTOOL_DLOPEN_SELF # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_C_CONFIG # AC_LIBTOOL_LANG_CXX_CONFIG # -------------------------- # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++) AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_AC_TAGVAR(no_undefined_flag, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Dependencies to place before and after the object being linked: _LT_AC_TAGVAR(predep_objects, $1)= _LT_AC_TAGVAR(postdep_objects, $1)= _LT_AC_TAGVAR(predeps, $1)= _LT_AC_TAGVAR(postdeps, $1)= _LT_AC_TAGVAR(compiler_lib_search_path, $1)= _LT_AC_TAGVAR(compiler_lib_search_dirs, $1)= # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration AC_PROG_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_AC_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; darwin* | rhapsody*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" if test "$GXX" = yes ; then output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" _LT_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" _LT_AC_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" if test "$lt_cv_apple_cc_single_mod" != "yes"; then _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi else case $cc_basename in xlc*) output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd[[12]]*) # C++ shared libraries reported to be fairly broken before switch to ELF _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_AC_TAGVAR(ld_shlibs, $1)=yes ;; gnu*) ;; hpux9*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; linux* | k*bsd*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc*) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; openbsd2*) # C++ shared libraries are fairly broken _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd='echo' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; osf3*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. # So that behaviour is only enabled if SCOABSPATH is set to a # non-empty value in the environment. Most likely only useful for # creating official distributions of packages. # This is a hack until libtool officially supports absolute path # names for shared libraries. _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_AC_TAGVAR(GCC, $1)="$GXX" _LT_AC_TAGVAR(LD, $1)="$LD" AC_LIBTOOL_POSTDEP_PREDEP($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld ])# AC_LIBTOOL_LANG_CXX_CONFIG # AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME]) # ------------------------------------ # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP], [AC_REQUIRE([LT_AC_PROG_SED])dnl dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then _LT_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then _LT_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; esac ]) case " $_LT_AC_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac ])# AC_LIBTOOL_POSTDEP_PREDEP # AC_LIBTOOL_LANG_F77_CONFIG # -------------------------- # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)]) AC_DEFUN([_LT_AC_LANG_F77_CONFIG], [AC_REQUIRE([AC_PROG_F77]) AC_LANG_PUSH(Fortran 77) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_AC_TAGVAR(no_undefined_flag, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${F77-"f77"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_AC_TAGVAR(GCC, $1)="$G77" _LT_AC_TAGVAR(LD, $1)="$LD" AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_F77_CONFIG # AC_LIBTOOL_LANG_GCJ_CONFIG # -------------------------- # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)]) AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG], [AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${GCJ-"gcj"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_CONFIG($1) AC_LANG_RESTORE CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_GCJ_CONFIG # AC_LIBTOOL_LANG_RC_CONFIG # ------------------------- # Ensure that the configuration vars for the Windows resource compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)]) AC_DEFUN([_LT_AC_LANG_RC_CONFIG], [AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${RC-"windres"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes AC_LIBTOOL_CONFIG($1) AC_LANG_RESTORE CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_RC_CONFIG # AC_LIBTOOL_CONFIG([TAGNAME]) # ---------------------------- # If TAGNAME is not passed, then create an initial libtool script # with a default configuration from the untagged config vars. Otherwise # add code to config.status for appending the configuration named by # TAGNAME from the matching tagged config vars. AC_DEFUN([AC_LIBTOOL_CONFIG], [# The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ _LT_AC_TAGVAR(compiler, $1) \ _LT_AC_TAGVAR(CC, $1) \ _LT_AC_TAGVAR(LD, $1) \ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \ _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \ _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \ _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \ _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \ _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \ _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \ _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \ _LT_AC_TAGVAR(old_archive_cmds, $1) \ _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \ _LT_AC_TAGVAR(predep_objects, $1) \ _LT_AC_TAGVAR(postdep_objects, $1) \ _LT_AC_TAGVAR(predeps, $1) \ _LT_AC_TAGVAR(postdeps, $1) \ _LT_AC_TAGVAR(compiler_lib_search_path, $1) \ _LT_AC_TAGVAR(compiler_lib_search_dirs, $1) \ _LT_AC_TAGVAR(archive_cmds, $1) \ _LT_AC_TAGVAR(archive_expsym_cmds, $1) \ _LT_AC_TAGVAR(postinstall_cmds, $1) \ _LT_AC_TAGVAR(postuninstall_cmds, $1) \ _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \ _LT_AC_TAGVAR(allow_undefined_flag, $1) \ _LT_AC_TAGVAR(no_undefined_flag, $1) \ _LT_AC_TAGVAR(export_symbols_cmds, $1) \ _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \ _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \ _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \ _LT_AC_TAGVAR(hardcode_automatic, $1) \ _LT_AC_TAGVAR(module_cmds, $1) \ _LT_AC_TAGVAR(module_expsym_cmds, $1) \ _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \ _LT_AC_TAGVAR(fix_srcfile_path, $1) \ _LT_AC_TAGVAR(exclude_expsyms, $1) \ _LT_AC_TAGVAR(include_expsyms, $1); do case $var in _LT_AC_TAGVAR(old_archive_cmds, $1) | \ _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \ _LT_AC_TAGVAR(archive_cmds, $1) | \ _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \ _LT_AC_TAGVAR(module_cmds, $1) | \ _LT_AC_TAGVAR(module_expsym_cmds, $1) | \ _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \ _LT_AC_TAGVAR(export_symbols_cmds, $1) | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\[$]0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'` ;; esac ifelse([$1], [], [cfgfile="${ofile}T" trap "$rm \"$cfgfile\"; exit 1" 1 2 15 $rm -f "$cfgfile" AC_MSG_NOTICE([creating $ofile])], [cfgfile="$ofile"]) cat <<__EOF__ >> "$cfgfile" ifelse([$1], [], [#! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG], [# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) # Is the compiler the GNU C compiler? with_gcc=$_LT_AC_TAGVAR(GCC, $1) # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_[]_LT_AC_TAGVAR(LD, $1) # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) # Commands used to build and install a shared archive. archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1) # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1) # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) # The directories searched by this compiler when creating a shared # library compiler_lib_search_dirs=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_dirs, $1) # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) # Flag that forces no undefined symbols. no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to yes if exported symbols are required. always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) # The commands to list exported symbols. export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) # Symbols that must always be exported. include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) ifelse([$1],[], [# ### END LIBTOOL CONFIG], [# ### END LIBTOOL TAG CONFIG: $tagname]) __EOF__ ifelse([$1],[], [ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ]) else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ])# AC_LIBTOOL_CONFIG # AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi ])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # --------------------------------- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([LT_AC_PROG_SED]) AC_REQUIRE([AC_PROG_NM]) AC_REQUIRE([AC_OBJEXT]) # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32*) symcode='[[ABCDGISTW]]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; linux* | k*bsd*-gnu) if test "$host_cpu" = ia64; then symcode='[[ABCDGIRSTW]]' lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[[]] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi ]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) # --------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)= AC_MSG_CHECKING([for $compiler option to produce PIC]) ifelse([$1],[CXX],[ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; dgux*) case $cc_basename in ec++*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; icpc* | ecpc*) # Intel C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler. _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; vxworks*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; hpux9* | hpux10* | hpux11*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; newsos6) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; linux* | k*bsd*-gnu) case $cc_basename in icc* | ecc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Sun\ F*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='' ;; esac ;; esac ;; osf3* | osf4* | osf5*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], _LT_AC_TAGVAR(lt_cv_prog_compiler_pic_works, $1), [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" ;; esac # # Check to make sure the static flag actually works. # wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_AC_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) ]) # AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) # ------------------------------------ # See if the linker supports building shared libraries. AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_REQUIRE([LT_AC_PROG_SED])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) ifelse([$1],[CXX],[ _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw*) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' ;; linux* | k*bsd*-gnu) _LT_AC_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] ],[ runpath_var= _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)= _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_AC_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. _LT_CC_BASENAME([$compiler]) case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac _LT_AC_TAGVAR(ld_shlibs, $1)=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; interix[[3-9]]*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | k*bsd*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; *) tmp_sharedflag='-shared' ;; esac _LT_AC_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi _LT_AC_TAGVAR(link_all_deplibs, $1)=no else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=yes _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # see comment about different semantics on the GNU ld section _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; bsdi[[45]]*) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_AC_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" _LT_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" _LT_AC_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else case $cc_basename in xlc*) output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ;; dgux*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; freebsd1*) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' if test "$GCC" = yes; then wlarc='${wl}' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_AC_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_AC_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_AC_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_MSG_CHECKING([whether -lc should be explicitly linked in]) $rm conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) _LT_AC_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) then _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no else _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) ;; esac fi ;; esac ])# AC_LIBTOOL_PROG_LD_SHLIBS # _LT_AC_FILE_LTDLL_C # ------------------- # Be careful that the start marker always follows a newline. AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ # /* ltdll.c starts here */ # #define WIN32_LEAN_AND_MEAN # #include # #undef WIN32_LEAN_AND_MEAN # #include # # #ifndef __CYGWIN__ # # ifdef __CYGWIN32__ # # define __CYGWIN__ __CYGWIN32__ # # endif # #endif # # #ifdef __cplusplus # extern "C" { # #endif # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); # #ifdef __cplusplus # } # #endif # # #ifdef __CYGWIN__ # #include # DECLARE_CYGWIN_DLL( DllMain ); # #endif # HINSTANCE __hDllInstance_base; # # BOOL APIENTRY # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) # { # __hDllInstance_base = hInst; # return TRUE; # } # /* ltdll.c ends here */ ])# _LT_AC_FILE_LTDLL_C # _LT_AC_TAGVAR(VARNAME, [TAGNAME]) # --------------------------------- AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) # old names AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) # This is just to silence aclocal about the macro not being used ifelse([AC_DISABLE_FAST_INSTALL]) AC_DEFUN([LT_AC_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj, no) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS) ]) AC_DEFUN([LT_AC_PROG_RC], [AC_CHECK_TOOL(RC, windres, no) ]) # Cheap backport of AS_EXECUTABLE_P and required macros # from Autoconf 2.59; we should not use $as_executable_p directly. # _AS_TEST_PREPARE # ---------------- m4_ifndef([_AS_TEST_PREPARE], [m4_defun([_AS_TEST_PREPARE], [if test -x / >/dev/null 2>&1; then as_executable_p='test -x' else as_executable_p='test -f' fi ])])# _AS_TEST_PREPARE # AS_EXECUTABLE_P # --------------- # Check whether a file is executable. m4_ifndef([AS_EXECUTABLE_P], [m4_defun([AS_EXECUTABLE_P], [AS_REQUIRE([_AS_TEST_PREPARE])dnl $as_executable_p $1[]dnl ])])# AS_EXECUTABLE_P # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # # LT_AC_PROG_SED # -------------- # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. AC_DEFUN([LT_AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if AS_EXECUTABLE_P(["$as_dir/$lt_ac_prog$ac_exec_ext"]); then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ]) # Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.10' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.10.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.10.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 9 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 3 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 13 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.60])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AM_PROG_INSTALL_SH AM_PROG_INSTALL_STRIP AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) ]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_PROG_CC_C_O # -------------- # Like AC_PROG_CC_C_O, but changed for automake. AC_DEFUN([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC_C_O])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl # FIXME: we rely on the cache variable name because # there is no other way. set dummy $CC ac_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" != yes"; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi dnl Make sure AC_PROG_CC is never called again, or it will override our dnl setting of CC. m4_define([AC_PROG_CC], [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # ------------------------------ # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([m4/cxx.m4]) m4_include([m4/font.m4]) m4_include([m4/freetype2.m4]) m4_include([m4/gl.m4]) m4_include([m4/glut.m4]) m4_include([m4/pkg.m4]) ftgl-2.1.3~rc5/test/0000777000175000017500000000000011024234670011244 500000000000000ftgl-2.1.3~rc5/test/FTSize-Test.cpp0000644000175000017500000000445311005341320013741 00000000000000#include #include #include #include #include #include #include FT_FREETYPE_H #include FT_GLYPH_H #include "Fontdefs.h" #include "FTSize.h" class FTSizeTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTSizeTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testSetCharSize); CPPUNIT_TEST_SUITE_END(); public: FTSizeTest() : CppUnit::TestCase("FTSize Test") {} FTSizeTest(const std::string& name) : CppUnit::TestCase(name) {} void testConstructor() { FTSize size; CPPUNIT_ASSERT_DOUBLES_EQUAL(0, size.CharSize(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, size.Ascender(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, size.Descender(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, size.Height(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, size.Width(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, size.Underline(), 0.01); } void testSetCharSize() { setUpFreetype(); FTSize size; CPPUNIT_ASSERT(size.CharSize(&face, FONT_POINT_SIZE, RESOLUTION, RESOLUTION)); CPPUNIT_ASSERT(size.Error() == 0); CPPUNIT_ASSERT_DOUBLES_EQUAL(72, size.CharSize(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(52, size.Ascender(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(-15, size.Descender(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(81.86, size.Height(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(76.32, size.Width(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, size.Underline(), 0.01); tearDownFreetype(); } void setUp() {} void tearDown() {} private: FT_Library library; FT_Face face; void setUpFreetype() { FT_Error error = FT_Init_FreeType(&library); assert(!error); error = FT_New_Face(library, GOOD_FONT_FILE, 0, &face); assert(!error); } void tearDownFreetype() { FT_Done_Face(face); FT_Done_FreeType(library); } }; CPPUNIT_TEST_SUITE_REGISTRATION(FTSizeTest); ftgl-2.1.3~rc5/test/FTVector-Test.cpp0000644000175000017500000000402011005341320014257 00000000000000#include #include #include #include #include "FTVector.h" class FTVectorTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTVectorTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testReserve); CPPUNIT_TEST(testPushBack); CPPUNIT_TEST(testOperatorSquareBrackets); CPPUNIT_TEST_SUITE_END(); public: FTVectorTest() : CppUnit::TestCase("FTVector Test") {} FTVectorTest(const std::string& name) : CppUnit::TestCase(name) {} void testConstructor() { FTVector floatVector; CPPUNIT_ASSERT(floatVector.size() == 0); CPPUNIT_ASSERT(floatVector.empty()); CPPUNIT_ASSERT(floatVector.capacity() == 0); } void testReserve() { FTVector floatVector; floatVector.reserve(128); CPPUNIT_ASSERT(floatVector.capacity() == 256); CPPUNIT_ASSERT(floatVector.empty()); CPPUNIT_ASSERT(floatVector.size() == 0); } void testPushBack() { FTVector integerVector; CPPUNIT_ASSERT(integerVector.size() == 0); integerVector.push_back(0); integerVector.push_back(1); integerVector.push_back(2); integerVector.push_back(3); CPPUNIT_ASSERT(!integerVector.empty()); CPPUNIT_ASSERT(integerVector.size() == 4); } void testOperatorSquareBrackets() { FTVector integerVector; integerVector.push_back(1); integerVector.push_back(2); integerVector.push_back(4); integerVector.push_back(8); CPPUNIT_ASSERT(integerVector[0] == 1); CPPUNIT_ASSERT(integerVector[2] == 4); } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTVectorTest); ftgl-2.1.3~rc5/test/FTPixmapGlyph-Test.cpp0000644000175000017500000000454311006143072015276 00000000000000#include #include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTInternals.h" #define GL_ASSERT() {GLenum sci_err; while ((sci_err = glGetError()) != GL_NO_ERROR) \ std::cerr << "OpenGL error: " << (char *)gluErrorString(sci_err) << " at " << __FILE__ <<":" << __LINE__ << std::endl; } extern void buildGLContext(); class FTPixmapGlyphTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTPixmapGlyphTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testRender); CPPUNIT_TEST_SUITE_END(); public: FTPixmapGlyphTest() : CppUnit::TestCase("FTPixmapGlyph Test") { } FTPixmapGlyphTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTPixmapGlyphTest() { } void testConstructor() { setUpFreetype(); buildGLContext(); FTPixmapGlyph* PixmapGlyph = new FTPixmapGlyph(face->glyph); CPPUNIT_ASSERT(PixmapGlyph->Error() == 0); CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR); tearDownFreetype(); } void testRender() { setUpFreetype(); buildGLContext(); FTPixmapGlyph* pixmapGlyph = new FTPixmapGlyph(face->glyph); CPPUNIT_ASSERT(pixmapGlyph->Error() == 0); pixmapGlyph->Render(FTPoint(0, 0, 0), FTGL::RENDER_FRONT); CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR); tearDownFreetype(); } void setUp() {} void tearDown() {} private: FT_Library library; FT_Face face; void setUpFreetype() { FT_Error error = FT_Init_FreeType(&library); assert(!error); error = FT_New_Face(library, FONT_FILE, 0, &face); assert(!error); FT_Set_Char_Size(face, 0L, FONT_POINT_SIZE * 64, RESOLUTION, RESOLUTION); error = FT_Load_Char(face, CHARACTER_CODE_A, FT_LOAD_DEFAULT); assert(!error); } void tearDownFreetype() { FT_Done_Face(face); FT_Done_FreeType(library); } }; CPPUNIT_TEST_SUITE_REGISTRATION(FTPixmapGlyphTest); ftgl-2.1.3~rc5/test/FTFace-Test.cpp0000644000175000017500000000700611011560551013670 00000000000000#include "cppunit/extensions/HelperMacros.h" #include "cppunit/TestCaller.h" #include "cppunit/TestCase.h" #include "cppunit/TestSuite.h" #include "Fontdefs.h" #include "FTFace.h" class FTFaceTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTFaceTest); CPPUNIT_TEST(testOpenFace); CPPUNIT_TEST(testOpenFaceFromMemory); CPPUNIT_TEST(testAttachFile); CPPUNIT_TEST(testAttachMemoryData); CPPUNIT_TEST(testGlyphCount); CPPUNIT_TEST(testSetFontSize); CPPUNIT_TEST(testGetCharmapList); CPPUNIT_TEST(testKerning); CPPUNIT_TEST_SUITE_END(); public: FTFaceTest() : CppUnit::TestCase("FTFace test") {}; FTFaceTest(const std::string& name) : CppUnit::TestCase(name) {}; void testOpenFace() { FTFace face1(BAD_FONT_FILE); CPPUNIT_ASSERT_EQUAL(face1.Error(), 0x06); FTFace face2(GOOD_FONT_FILE); CPPUNIT_ASSERT_EQUAL(face2.Error(), 0); } void testOpenFaceFromMemory() { FTFace face1((unsigned char*)100, 0); CPPUNIT_ASSERT_EQUAL(face1.Error(), 0x02); FTFace face2(HPGCalc_pfb.dataBytes, HPGCalc_pfb.numBytes); CPPUNIT_ASSERT_EQUAL(face2.Error(), 0); } void testAttachFile() { CPPUNIT_ASSERT(!testFace->Attach(TYPE1_AFM_FILE)); CPPUNIT_ASSERT_EQUAL(testFace->Error(), 0x07); // unimplemented feature FTFace test(TYPE1_FONT_FILE); CPPUNIT_ASSERT_EQUAL(test.Error(), 0); CPPUNIT_ASSERT(test.Attach(TYPE1_AFM_FILE)); CPPUNIT_ASSERT_EQUAL(test.Error(), 0); } void testAttachMemoryData() { CPPUNIT_ASSERT(!testFace->Attach((unsigned char*)100, 0)); CPPUNIT_ASSERT_EQUAL(testFace->Error(), 0x07); // unimplemented feature FTFace test(TYPE1_FONT_FILE); CPPUNIT_ASSERT_EQUAL(test.Error(), 0); CPPUNIT_ASSERT(test.Attach(HPGCalc_afm.dataBytes, HPGCalc_afm.numBytes)); CPPUNIT_ASSERT_EQUAL(test.Error(), 0); } void testGlyphCount() { CPPUNIT_ASSERT_EQUAL(testFace->GlyphCount(), 14099U); } void testSetFontSize() { FTSize size = testFace->Size(FONT_POINT_SIZE, RESOLUTION); CPPUNIT_ASSERT_EQUAL(testFace->Error(), 0); } void testGetCharmapList() { CPPUNIT_ASSERT_EQUAL(testFace->CharMapCount(), 2U); FT_Encoding* charmapList = testFace->CharMapList(); CPPUNIT_ASSERT_EQUAL(charmapList[0], ft_encoding_unicode); CPPUNIT_ASSERT_EQUAL(charmapList[1], ft_encoding_adobe_standard); } void testKerning() { FTFace test(ARIAL_FONT_FILE); FTPoint kerningVector = test.KernAdvance('A', 'A'); CPPUNIT_ASSERT_EQUAL(kerningVector.X(), 0.); CPPUNIT_ASSERT_EQUAL(kerningVector.Y(), 0.); CPPUNIT_ASSERT_EQUAL(kerningVector.Z(), 0.); kerningVector = test.KernAdvance(0x6FB3, 0x9580); CPPUNIT_ASSERT_EQUAL(kerningVector.X(), 0.); CPPUNIT_ASSERT_EQUAL(kerningVector.Y(), 0.); CPPUNIT_ASSERT_EQUAL(kerningVector.Z(), 0.); } void setUp() { testFace = new FTFace(GOOD_FONT_FILE); } void tearDown() { delete testFace; } private: FTFace* testFace; }; CPPUNIT_TEST_SUITE_REGISTRATION(FTFaceTest); ftgl-2.1.3~rc5/test/FTTextureFont-Test.cpp0000644000175000017500000000533611006540240015322 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTInternals.h" extern void buildGLContext(); class FTTextureFontTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTTextureFontTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testResizeBug); CPPUNIT_TEST(testRender); CPPUNIT_TEST(testDisplayList); CPPUNIT_TEST_SUITE_END(); public: FTTextureFontTest() : CppUnit::TestCase("FTTextureFontTest Test") { } FTTextureFontTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTTextureFontTest() { } void testConstructor() { buildGLContext(); FTTextureFont* textureFont = new FTTextureFont(FONT_FILE); CPPUNIT_ASSERT_EQUAL(textureFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete textureFont; } void testResizeBug() { buildGLContext(); FTTextureFont* textureFont = new FTTextureFont(FONT_FILE); CPPUNIT_ASSERT_EQUAL(textureFont->Error(), 0); textureFont->FaceSize(18); textureFont->Render("first"); textureFont->FaceSize(38); textureFont->Render("second"); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete textureFont; } void testRender() { buildGLContext(); FTTextureFont* textureFont = new FTTextureFont(FONT_FILE); textureFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(textureFont->Error(), 0x97); // Invalid pixels per em CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); textureFont->FaceSize(18); textureFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(textureFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete textureFont; } void testDisplayList() { buildGLContext(); FTTextureFont* textureFont = new FTTextureFont(FONT_FILE); textureFont->FaceSize(18); int glList = glGenLists(1); glNewList(glList, GL_COMPILE); textureFont->Render(GOOD_ASCII_TEST_STRING); glEndList(); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete textureFont; } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTTextureFontTest); ftgl-2.1.3~rc5/test/HPGCalc_afm.cpp0000644000175000017500000021603611005341320013706 00000000000000/* * Conversion of HPGCalc.afm */ #ifndef DEFINED_BINARYFILEDUMP #define DEFINED_BINARYFILEDUMP typedef struct BINARYFILEDUMP_struct { const unsigned char * dataBytes; int numBytes; } BINARYFILEDUMP; #endif const unsigned char byte_data_HPGCalc_afm[ ] = { 0x53, 0x74, 0x61, 0x72, 0x74, 0x46, 0x6f, 0x6e, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x20, 0x32, 0x2e, 0x30, 0x0d, 0x0a, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x70, 0x66, 0x61, 0x65, 0x64, 0x69, 0x74, 0x0d, 0x0a, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x20, 0x54, 0x68, 0x75, 0x20, 0x4f, 0x63, 0x74, 0x20, 0x33, 0x31, 0x20, 0x31, 0x37, 0x3a, 0x33, 0x31, 0x3a, 0x30, 0x33, 0x20, 0x32, 0x30, 0x30, 0x32, 0x0d, 0x0a, 0x46, 0x6f, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x48, 0x50, 0x47, 0x43, 0x61, 0x6c, 0x63, 0x0d, 0x0a, 0x46, 0x75, 0x6c, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x48, 0x50, 0x20, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x20, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0d, 0x0a, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x48, 0x50, 0x47, 0x43, 0x61, 0x6c, 0x63, 0x0d, 0x0a, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x20, 0x4d, 0x65, 0x64, 0x69, 0x75, 0x6d, 0x0d, 0x0a, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x20, 0x28, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x4a, 0x6f, 0x73, 0x68, 0x75, 0x61, 0x20, 0x4b, 0x69, 0x6e, 0x67, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x50, 0x66, 0x61, 0x45, 0x64, 0x69, 0x74, 0x20, 0x31, 0x2e, 0x30, 0x20, 0x28, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x70, 0x66, 0x61, 0x65, 0x64, 0x69, 0x74, 0x2e, 0x73, 0x66, 0x2e, 0x6e, 0x65, 0x74, 0x29, 0x20, 0x53, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x20, 0x64, 0x65, 0x73, 0x69, 0x67, 0x6e, 0x20, 0x6f, 0x66, 0x20, 0x48, 0x65, 0x77, 0x6c, 0x65, 0x74, 0x74, 0x20, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x72, 0x64, 0x20, 0x61, 0x73, 0x20, 0x75, 0x73, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x69, 0x72, 0x20, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x63, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x20, 0x48, 0x50, 0x33, 0x38, 0x47, 0x2c, 0x20, 0x48, 0x50, 0x33, 0x39, 0x47, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x48, 0x50, 0x34, 0x30, 0x47, 0x2e, 0x29, 0x0d, 0x0a, 0x49, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x41, 0x6e, 0x67, 0x6c, 0x65, 0x20, 0x30, 0x0d, 0x0a, 0x49, 0x73, 0x46, 0x69, 0x78, 0x65, 0x64, 0x50, 0x69, 0x74, 0x63, 0x68, 0x20, 0x74, 0x72, 0x75, 0x65, 0x0d, 0x0a, 0x55, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x31, 0x30, 0x30, 0x0d, 0x0a, 0x55, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x54, 0x68, 0x69, 0x63, 0x6b, 0x6e, 0x65, 0x73, 0x73, 0x20, 0x35, 0x30, 0x0d, 0x0a, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x30, 0x30, 0x34, 0x2e, 0x30, 0x30, 0x30, 0x0d, 0x0a, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x65, 0x20, 0x46, 0x6f, 0x6e, 0x74, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, 0x0d, 0x0a, 0x46, 0x6f, 0x6e, 0x74, 0x42, 0x42, 0x6f, 0x78, 0x20, 0x33, 0x37, 0x20, 0x34, 0x31, 0x20, 0x35, 0x35, 0x39, 0x20, 0x39, 0x30, 0x32, 0x0d, 0x0a, 0x43, 0x61, 0x70, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x20, 0x39, 0x30, 0x31, 0x0d, 0x0a, 0x58, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x20, 0x36, 0x34, 0x34, 0x0d, 0x0a, 0x41, 0x73, 0x63, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x20, 0x39, 0x30, 0x31, 0x0d, 0x0a, 0x44, 0x65, 0x73, 0x63, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x20, 0x34, 0x33, 0x0d, 0x0a, 0x53, 0x74, 0x61, 0x72, 0x74, 0x43, 0x68, 0x61, 0x72, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x20, 0x32, 0x32, 0x36, 0x0d, 0x0a, 0x43, 0x20, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x2e, 0x6e, 0x6f, 0x74, 0x64, 0x65, 0x66, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x33, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x73, 0x70, 0x61, 0x63, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x33, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x65, 0x78, 0x63, 0x6c, 0x61, 0x6d, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x35, 0x34, 0x20, 0x31, 0x32, 0x39, 0x20, 0x33, 0x34, 0x31, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x33, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x62, 0x6c, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x35, 0x35, 0x38, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x33, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x69, 0x67, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x33, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x64, 0x6f, 0x6c, 0x6c, 0x61, 0x72, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x33, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x33, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x6d, 0x70, 0x65, 0x72, 0x73, 0x61, 0x6e, 0x64, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x33, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x35, 0x34, 0x20, 0x35, 0x35, 0x38, 0x20, 0x33, 0x34, 0x31, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x34, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x34, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x34, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x73, 0x74, 0x65, 0x72, 0x69, 0x73, 0x6b, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x33, 0x30, 0x30, 0x20, 0x35, 0x31, 0x33, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x34, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x70, 0x6c, 0x75, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x33, 0x30, 0x30, 0x20, 0x35, 0x31, 0x33, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x34, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x31, 0x31, 0x20, 0x34, 0x33, 0x20, 0x33, 0x38, 0x34, 0x20, 0x33, 0x38, 0x37, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x34, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x37, 0x32, 0x20, 0x35, 0x31, 0x33, 0x20, 0x35, 0x35, 0x39, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x34, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x31, 0x31, 0x20, 0x31, 0x32, 0x39, 0x20, 0x33, 0x38, 0x34, 0x20, 0x33, 0x30, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x34, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x33, 0x30, 0x30, 0x20, 0x35, 0x31, 0x33, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x34, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x7a, 0x65, 0x72, 0x6f, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x34, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x35, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x35, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x35, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x66, 0x6f, 0x75, 0x72, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x35, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x66, 0x69, 0x76, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x35, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x73, 0x69, 0x78, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x35, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x35, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x65, 0x69, 0x67, 0x68, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x35, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6e, 0x69, 0x6e, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x35, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x31, 0x31, 0x20, 0x33, 0x30, 0x30, 0x20, 0x33, 0x38, 0x34, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x35, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x73, 0x65, 0x6d, 0x69, 0x63, 0x6f, 0x6c, 0x6f, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x31, 0x31, 0x20, 0x34, 0x33, 0x20, 0x33, 0x38, 0x34, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x36, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6c, 0x65, 0x73, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x36, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x33, 0x38, 0x36, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x36, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x36, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x36, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x36, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x41, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x36, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x42, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x36, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x43, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x36, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x44, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x36, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x45, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x37, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x46, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x37, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x47, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x37, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x48, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x37, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x49, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x37, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4a, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x37, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4b, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x37, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4c, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x37, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4d, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x37, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x37, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4f, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x38, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x50, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x38, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x51, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x38, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x52, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x38, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x53, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x38, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x54, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x38, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x55, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x38, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x56, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x38, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x57, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x38, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x58, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x38, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x59, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x39, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x5a, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x39, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x62, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x39, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x33, 0x30, 0x30, 0x20, 0x35, 0x31, 0x33, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x39, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x62, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x39, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x73, 0x63, 0x69, 0x69, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x36, 0x34, 0x34, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x32, 0x31, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x39, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x31, 0x31, 0x20, 0x36, 0x34, 0x34, 0x20, 0x33, 0x38, 0x34, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x39, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x39, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x62, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x39, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x63, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x30, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x64, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x30, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x30, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x66, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x30, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x67, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x33, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x30, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x68, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x30, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x69, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x38, 0x31, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x30, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6a, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x32, 0x36, 0x20, 0x34, 0x33, 0x20, 0x34, 0x37, 0x30, 0x20, 0x38, 0x31, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x30, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6b, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x32, 0x36, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x37, 0x30, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x30, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6c, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x30, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6d, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x31, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x31, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x31, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x70, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x33, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x31, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x71, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x33, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x31, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x72, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x31, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x31, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x32, 0x36, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x37, 0x30, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x31, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x75, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x31, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x76, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x31, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x77, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x32, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x78, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x32, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x79, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x33, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x32, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x7a, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x32, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x62, 0x72, 0x61, 0x63, 0x65, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x32, 0x36, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x37, 0x30, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x32, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x62, 0x61, 0x72, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x35, 0x34, 0x20, 0x31, 0x32, 0x39, 0x20, 0x33, 0x34, 0x31, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x32, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x62, 0x72, 0x61, 0x63, 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x32, 0x36, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x37, 0x30, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x32, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x73, 0x63, 0x69, 0x69, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x37, 0x32, 0x20, 0x35, 0x31, 0x33, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x32, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x73, 0x68, 0x61, 0x64, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x32, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x75, 0x6e, 0x69, 0x32, 0x32, 0x32, 0x31, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x32, 0x30, 0x38, 0x20, 0x35, 0x30, 0x37, 0x20, 0x37, 0x35, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x32, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x63, 0x68, 0x69, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x37, 0x30, 0x39, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x33, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x32, 0x39, 0x31, 0x20, 0x35, 0x30, 0x37, 0x20, 0x37, 0x30, 0x39, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x33, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x72, 0x61, 0x64, 0x69, 0x63, 0x61, 0x6c, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x33, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x6c, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x33, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x53, 0x69, 0x67, 0x6d, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x33, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x32, 0x33, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x33, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x70, 0x69, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x36, 0x30, 0x20, 0x35, 0x30, 0x37, 0x20, 0x35, 0x31, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x33, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x64, 0x69, 0x66, 0x66, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x33, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6c, 0x65, 0x73, 0x73, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x32, 0x30, 0x38, 0x20, 0x35, 0x30, 0x37, 0x20, 0x37, 0x39, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x33, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x32, 0x30, 0x38, 0x20, 0x35, 0x30, 0x37, 0x20, 0x37, 0x39, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x33, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x67, 0x75, 0x69, 0x6c, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x32, 0x30, 0x38, 0x20, 0x35, 0x30, 0x37, 0x20, 0x37, 0x39, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x34, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x35, 0x34, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x34, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x32, 0x35, 0x30, 0x20, 0x35, 0x30, 0x37, 0x20, 0x37, 0x35, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x34, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x32, 0x35, 0x30, 0x20, 0x35, 0x30, 0x37, 0x20, 0x37, 0x35, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x34, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x34, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x75, 0x70, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x34, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x67, 0x61, 0x6d, 0x6d, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x35, 0x34, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x34, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x34, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x65, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x35, 0x34, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x34, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x65, 0x74, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x37, 0x30, 0x39, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x34, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x74, 0x68, 0x65, 0x74, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x35, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6c, 0x61, 0x6d, 0x62, 0x64, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x37, 0x32, 0x38, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x35, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x72, 0x68, 0x6f, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x34, 0x31, 0x20, 0x35, 0x30, 0x37, 0x20, 0x36, 0x32, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x35, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x73, 0x69, 0x67, 0x6d, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x35, 0x34, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x35, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x74, 0x61, 0x75, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x37, 0x30, 0x39, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x35, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x6d, 0x65, 0x67, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x36, 0x32, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x35, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x32, 0x39, 0x31, 0x20, 0x35, 0x30, 0x37, 0x20, 0x36, 0x32, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x35, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x50, 0x69, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x35, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4f, 0x6d, 0x65, 0x67, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x35, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x62, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x37, 0x32, 0x20, 0x32, 0x39, 0x31, 0x20, 0x34, 0x32, 0x33, 0x20, 0x36, 0x32, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x35, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x69, 0x6e, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x33, 0x37, 0x20, 0x39, 0x32, 0x20, 0x35, 0x35, 0x39, 0x20, 0x34, 0x31, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x36, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6e, 0x6f, 0x6e, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x73, 0x70, 0x61, 0x63, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x32, 0x39, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x36, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x65, 0x78, 0x63, 0x6c, 0x61, 0x6d, 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x35, 0x34, 0x20, 0x31, 0x32, 0x39, 0x20, 0x33, 0x34, 0x31, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x36, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x63, 0x65, 0x6e, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x33, 0x20, 0x35, 0x31, 0x33, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x36, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x73, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x36, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x39, 0x20, 0x31, 0x32, 0x35, 0x20, 0x35, 0x30, 0x37, 0x20, 0x37, 0x30, 0x39, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x36, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x79, 0x65, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x36, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x6e, 0x62, 0x61, 0x72, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x35, 0x34, 0x20, 0x31, 0x32, 0x39, 0x20, 0x33, 0x34, 0x31, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x36, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x37, 0x32, 0x20, 0x31, 0x32, 0x35, 0x20, 0x34, 0x32, 0x33, 0x20, 0x38, 0x37, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x36, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x38, 0x31, 0x35, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x36, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x63, 0x6f, 0x70, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x32, 0x35, 0x37, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x37, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x72, 0x64, 0x66, 0x65, 0x6d, 0x69, 0x6e, 0x69, 0x6e, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x32, 0x36, 0x20, 0x33, 0x38, 0x36, 0x20, 0x34, 0x37, 0x30, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x37, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x67, 0x75, 0x69, 0x6c, 0x6c, 0x65, 0x6d, 0x6f, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x33, 0x30, 0x30, 0x20, 0x35, 0x31, 0x33, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x37, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, 0x6e, 0x6f, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x32, 0x36, 0x20, 0x33, 0x38, 0x36, 0x20, 0x34, 0x37, 0x30, 0x20, 0x35, 0x35, 0x39, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x37, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x41, 0x44, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x32, 0x36, 0x20, 0x35, 0x35, 0x38, 0x20, 0x34, 0x37, 0x30, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x37, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x65, 0x64, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x33, 0x30, 0x30, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x37, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x38, 0x31, 0x35, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x37, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x64, 0x65, 0x67, 0x72, 0x65, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x36, 0x34, 0x34, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x37, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x70, 0x6c, 0x75, 0x73, 0x6d, 0x69, 0x6e, 0x75, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x32, 0x31, 0x34, 0x20, 0x35, 0x31, 0x33, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x37, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x74, 0x77, 0x6f, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x72, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x34, 0x37, 0x32, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x37, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x72, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x34, 0x37, 0x32, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x38, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x31, 0x32, 0x20, 0x37, 0x33, 0x30, 0x20, 0x33, 0x38, 0x34, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x38, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6d, 0x75, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x33, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x38, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x70, 0x61, 0x72, 0x61, 0x67, 0x72, 0x61, 0x70, 0x68, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x38, 0x31, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x38, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x64, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x31, 0x31, 0x20, 0x33, 0x38, 0x36, 0x20, 0x33, 0x38, 0x34, 0x20, 0x35, 0x35, 0x39, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x38, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x63, 0x65, 0x64, 0x69, 0x6c, 0x6c, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x33, 0x38, 0x37, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x38, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x6e, 0x65, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x72, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x34, 0x37, 0x32, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x38, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x72, 0x64, 0x6d, 0x61, 0x73, 0x63, 0x75, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x33, 0x20, 0x33, 0x38, 0x34, 0x20, 0x34, 0x33, 0x32, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x38, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x67, 0x75, 0x69, 0x6c, 0x6c, 0x65, 0x6d, 0x6f, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x33, 0x30, 0x30, 0x20, 0x35, 0x31, 0x33, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x38, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x6e, 0x65, 0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x32, 0x31, 0x34, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x38, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x6e, 0x65, 0x68, 0x61, 0x6c, 0x66, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x39, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x32, 0x31, 0x34, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x39, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x39, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x41, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x39, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x41, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x39, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x41, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x41, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x39, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x41, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x39, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x41, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x39, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x41, 0x45, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x31, 0x39, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x43, 0x63, 0x65, 0x64, 0x69, 0x6c, 0x6c, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x33, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x30, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x45, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x30, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x45, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x30, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x45, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x30, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x45, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x30, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x49, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x30, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x49, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x30, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x49, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x30, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x49, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x30, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x45, 0x74, 0x68, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x30, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4e, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x31, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4f, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x31, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4f, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x31, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4f, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x31, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4f, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x31, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4f, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x31, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x79, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x33, 0x30, 0x30, 0x20, 0x35, 0x31, 0x33, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x31, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x4f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x31, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x55, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x31, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x55, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x31, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x55, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x32, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x55, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x32, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x59, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x32, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x54, 0x68, 0x6f, 0x72, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x38, 0x31, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x32, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x62, 0x65, 0x74, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x33, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x32, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x32, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x32, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x32, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x32, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x38, 0x31, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x32, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x33, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x61, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x36, 0x34, 0x35, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x33, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x63, 0x63, 0x65, 0x64, 0x69, 0x6c, 0x6c, 0x61, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x33, 0x20, 0x35, 0x31, 0x33, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x33, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x65, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x33, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x33, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x65, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x33, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x65, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x38, 0x31, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x33, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x69, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x33, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x69, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x33, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x69, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x33, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x69, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x31, 0x36, 0x39, 0x20, 0x31, 0x32, 0x39, 0x20, 0x34, 0x32, 0x37, 0x20, 0x38, 0x31, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x34, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x65, 0x74, 0x68, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x34, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6e, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x34, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x34, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x34, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x34, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x34, 0x36, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x38, 0x31, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x34, 0x37, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x64, 0x69, 0x76, 0x69, 0x64, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x33, 0x30, 0x30, 0x20, 0x35, 0x31, 0x33, 0x20, 0x37, 0x33, 0x31, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x34, 0x38, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x6f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x35, 0x35, 0x39, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x34, 0x39, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x75, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x35, 0x30, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x75, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x35, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x75, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x39, 0x30, 0x32, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x35, 0x32, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x75, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x31, 0x32, 0x39, 0x20, 0x35, 0x31, 0x33, 0x20, 0x38, 0x31, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x35, 0x33, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x79, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x33, 0x20, 0x35, 0x31, 0x33, 0x20, 0x38, 0x31, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x35, 0x34, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x74, 0x68, 0x6f, 0x72, 0x6e, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x33, 0x20, 0x35, 0x31, 0x33, 0x20, 0x38, 0x31, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x32, 0x35, 0x35, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x79, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x38, 0x33, 0x20, 0x34, 0x33, 0x20, 0x35, 0x31, 0x33, 0x20, 0x38, 0x31, 0x36, 0x20, 0x3b, 0x0d, 0x0a, 0x43, 0x20, 0x2d, 0x31, 0x20, 0x3b, 0x20, 0x57, 0x58, 0x20, 0x35, 0x39, 0x35, 0x20, 0x3b, 0x20, 0x4e, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x64, 0x20, 0x3b, 0x20, 0x42, 0x20, 0x32, 0x31, 0x31, 0x20, 0x33, 0x38, 0x36, 0x20, 0x33, 0x38, 0x34, 0x20, 0x35, 0x35, 0x39, 0x20, 0x3b, 0x0d, 0x0a, 0x45, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x72, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x0d, 0x0a, 0x45, 0x6e, 0x64, 0x46, 0x6f, 0x6e, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x0d, 0x0a, }; const int byte_size_HPGCalc_afm = 11394; BINARYFILEDUMP const HPGCalc_afm = { byte_data_HPGCalc_afm, byte_size_HPGCalc_afm }; ftgl-2.1.3~rc5/test/FTBitmapGlyph-Test.cpp0000644000175000017500000000416311006143072015252 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTInternals.h" extern void buildGLContext(); class FTBitmapGlyphTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTBitmapGlyphTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testRender); CPPUNIT_TEST_SUITE_END(); public: FTBitmapGlyphTest() : CppUnit::TestCase("FTBitmapGlyph Test") { } FTBitmapGlyphTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTBitmapGlyphTest() { } void testConstructor() { setUpFreetype(); buildGLContext(); FTBitmapGlyph* bitmapGlyph = new FTBitmapGlyph(face->glyph); CPPUNIT_ASSERT(bitmapGlyph->Error() == 0); CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR); tearDownFreetype(); } void testRender() { setUpFreetype(); buildGLContext(); FTBitmapGlyph* bitmapGlyph = new FTBitmapGlyph(face->glyph); CPPUNIT_ASSERT(bitmapGlyph->Error() == 0); bitmapGlyph->Render(FTPoint(0, 0, 0), FTGL::RENDER_FRONT); CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR); tearDownFreetype(); } void setUp() {} void tearDown() {} private: FT_Library library; FT_Face face; void setUpFreetype() { FT_Error error = FT_Init_FreeType(&library); assert(!error); error = FT_New_Face(library, FONT_FILE, 0, &face); assert(!error); FT_Set_Char_Size(face, 0L, FONT_POINT_SIZE * 64, RESOLUTION, RESOLUTION); error = FT_Load_Char(face, CHARACTER_CODE_A, FT_LOAD_DEFAULT); assert(!error); } void tearDownFreetype() { FT_Done_Face(face); FT_Done_FreeType(library); } }; CPPUNIT_TEST_SUITE_REGISTRATION(FTBitmapGlyphTest); ftgl-2.1.3~rc5/test/FTGlyphContainer-Test.cpp0000644000175000017500000000643011022777016015770 00000000000000#include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTFace.h" #include "FTGlyphContainer.h" class TestGlyph : public FTGlyph { public: TestGlyph() : FTGlyph((FT_GlyphSlot)0) { advance = FTPoint(50.0f, 0.0f, 0.0f); } virtual const FTPoint& Render(const FTPoint& pen, int renderMode){ return advance; } private: FTPoint advance; }; class FTGlyphContainerTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTGlyphContainerTest); CPPUNIT_TEST(testAdd); CPPUNIT_TEST(testSetCharMap); CPPUNIT_TEST(testGlyphIndex); CPPUNIT_TEST(testAdvance); CPPUNIT_TEST(testRender); CPPUNIT_TEST_SUITE_END(); public: FTGlyphContainerTest() : CppUnit::TestCase("FTGlyphContainer Test") { face = new FTFace(GOOD_FONT_FILE); face->Size(72, 72); } FTGlyphContainerTest(const std::string& name) : CppUnit::TestCase(name) { delete face; } void testAdd() { TestGlyph* glyph = new TestGlyph(); CPPUNIT_ASSERT(glyphContainer->Glyph(CHARACTER_CODE_A) == NULL); glyphContainer->Add(glyph, CHARACTER_CODE_A); glyphContainer->Add(NULL, 0); CPPUNIT_ASSERT(glyphContainer->Glyph(0) == NULL); CPPUNIT_ASSERT(glyphContainer->Glyph(999) == NULL); CPPUNIT_ASSERT(glyphContainer->Glyph(CHARACTER_CODE_A) == glyph); } void testSetCharMap() { CPPUNIT_ASSERT(glyphContainer->CharMap(ft_encoding_unicode)); CPPUNIT_ASSERT_EQUAL(glyphContainer->Error(), 0); CPPUNIT_ASSERT(!glyphContainer->CharMap(ft_encoding_johab)); CPPUNIT_ASSERT_EQUAL(glyphContainer->Error(), 0x06); // invalid argument } void testGlyphIndex() { CPPUNIT_ASSERT_EQUAL(glyphContainer->FontIndex(CHARACTER_CODE_A), FONT_INDEX_OF_A); CPPUNIT_ASSERT_EQUAL(glyphContainer->FontIndex(BIG_CHARACTER_CODE), BIG_FONT_INDEX); } void testAdvance() { TestGlyph* glyph = new TestGlyph(); glyphContainer->Add(glyph, CHARACTER_CODE_A); float advance = glyphContainer->Advance(CHARACTER_CODE_A, 0); CPPUNIT_ASSERT_DOUBLES_EQUAL(50, advance, 0.01); } void testRender() { TestGlyph* glyph = new TestGlyph(); glyphContainer->Add(glyph, 'A'); FTPoint pen; float advance = glyphContainer->Render('A', 0, pen, FTGL::RENDER_FRONT | FTGL::RENDER_BACK | FTGL::RENDER_SIDE).X(); CPPUNIT_ASSERT_DOUBLES_EQUAL(50, advance, 0.01); } void setUp() { glyphContainer = new FTGlyphContainer(face); } void tearDown() { delete glyphContainer; } private: FTFace* face; FTGlyphContainer* glyphContainer; }; CPPUNIT_TEST_SUITE_REGISTRATION(FTGlyphContainerTest); ftgl-2.1.3~rc5/test/Fontdefs.h0000644000175000017500000000515611005631743013111 00000000000000/* * FTGL - OpenGL font library * * Copyright (c) 2001-2004 Henry Maddocks * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __Font_defs__ #define __Font_defs__ const char* const BAD_FONT_FILE = "missing_font.ttf"; const char* const GOOD_FONT_FILE = "../../test/font_pack/MHei-Medium-Acro"; const char* const ARIAL_FONT_FILE = "../../test/font_pack/arial.ttf"; const char* const FONT_FILE = "../../test/font_pack/times.ttf"; const char* const TYPE1_FONT_FILE = "../../test/font_pack/HPGCalc.pfb"; const char* const TYPE1_AFM_FILE = "../../test/font_pack/HPGCalc.afm"; const char* const GOOD_ASCII_TEST_STRING = "test string"; const char* const BAD_ASCII_TEST_STRING = ""; const wchar_t GOOD_UNICODE_TEST_STRING[4] = { 0x6FB3, 0x9580, 0x0}; const wchar_t* const BAD_UNICODE_TEST_STRING = L""; const unsigned int FONT_POINT_SIZE = 72; const unsigned int RESOLUTION = 72; const unsigned int CHARACTER_CODE_A = 'A'; const unsigned int CHARACTER_CODE_G = 'g'; const unsigned int BIG_CHARACTER_CODE = 0x6FB3; const unsigned int NULL_CHARACTER_CODE = 512; const unsigned int NULL_CHARACTER_INDEX = ' '; const unsigned int SIMPLE_CHARACTER_INDEX = 'i'; const unsigned int COMPLEX_CHARACTER_INDEX = 'd'; const unsigned int FONT_INDEX_OF_A = 34; const unsigned int BIG_FONT_INDEX = 4838; const unsigned int NULL_FONT_INDEX = 0; const unsigned int NUMBER_OF_GLYPHS = 50; const unsigned int TOO_MANY_GLYPHS = 14100; // MHei-Medium-Acro has 14099 #include "HPGCalc_pfb.cpp" #include "HPGCalc_afm.cpp" #endif // __Font_defs__ ftgl-2.1.3~rc5/test/FTCharmap-Test.cpp0000644000175000017500000001075611005341320014405 00000000000000#include #include #include #include #include #include #include #include FT_FREETYPE_H #include FT_GLYPH_H #include "Fontdefs.h" #include "FTFace.h" #include "FTCharmap.h" class FTCharmapTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTCharmapTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testSetEncoding); CPPUNIT_TEST(testGetGlyphListIndex); CPPUNIT_TEST(testGetFontIndex); CPPUNIT_TEST(testInsertCharacterIndex); CPPUNIT_TEST_SUITE_END(); public: FTCharmapTest() : CppUnit::TestCase("FTCharmap Test") { setUpFreetype(); } FTCharmapTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTCharmapTest() { tearDownFreetype(); } void testConstructor() { CPPUNIT_ASSERT_EQUAL(0, charmap->Error()); CPPUNIT_ASSERT_EQUAL(ft_encoding_unicode, charmap->Encoding()); } void testSetEncoding() { CPPUNIT_ASSERT(charmap->CharMap(ft_encoding_unicode)); CPPUNIT_ASSERT_EQUAL(0, charmap->Error()); CPPUNIT_ASSERT_EQUAL(ft_encoding_unicode, charmap->Encoding()); CPPUNIT_ASSERT(!charmap->CharMap(ft_encoding_johab)); CPPUNIT_ASSERT_EQUAL(0x06, charmap->Error()); // invalid argument CPPUNIT_ASSERT_EQUAL(ft_encoding_unicode, charmap->Encoding()); } void testGetGlyphListIndex() { charmap->CharMap(ft_encoding_johab); CPPUNIT_ASSERT_EQUAL(0x06, charmap->Error()); // invalid argument CPPUNIT_ASSERT_EQUAL(0U, charmap->GlyphListIndex(CHARACTER_CODE_A)); CPPUNIT_ASSERT_EQUAL(0U, charmap->GlyphListIndex(BIG_CHARACTER_CODE)); CPPUNIT_ASSERT_EQUAL(0U, charmap->GlyphListIndex(NULL_CHARACTER_CODE)); charmap->CharMap(ft_encoding_unicode); CPPUNIT_ASSERT_EQUAL(0, charmap->Error()); CPPUNIT_ASSERT_EQUAL(0U, charmap->GlyphListIndex(CHARACTER_CODE_A)); CPPUNIT_ASSERT_EQUAL(0U, charmap->GlyphListIndex(BIG_CHARACTER_CODE)); CPPUNIT_ASSERT_EQUAL(0U, charmap->GlyphListIndex(NULL_CHARACTER_CODE)); // Check that the error flag is reset. charmap->CharMap(ft_encoding_johab); CPPUNIT_ASSERT_EQUAL(0x06, charmap->Error()); // invalid argument charmap->CharMap(ft_encoding_unicode); CPPUNIT_ASSERT_EQUAL(0, charmap->Error()); } void testGetFontIndex() { charmap->CharMap(ft_encoding_johab); CPPUNIT_ASSERT_EQUAL(0x06, charmap->Error()); // invalid argument CPPUNIT_ASSERT_EQUAL(FONT_INDEX_OF_A, charmap->FontIndex(CHARACTER_CODE_A)); CPPUNIT_ASSERT_EQUAL(BIG_FONT_INDEX, charmap->FontIndex(BIG_CHARACTER_CODE)); CPPUNIT_ASSERT_EQUAL(NULL_FONT_INDEX, charmap->FontIndex(NULL_CHARACTER_CODE)); charmap->CharMap(ft_encoding_unicode); CPPUNIT_ASSERT_EQUAL(0, charmap->Error()); CPPUNIT_ASSERT_EQUAL(FONT_INDEX_OF_A, charmap->FontIndex(CHARACTER_CODE_A)); CPPUNIT_ASSERT_EQUAL(BIG_FONT_INDEX, charmap->FontIndex(BIG_CHARACTER_CODE)); CPPUNIT_ASSERT_EQUAL(NULL_FONT_INDEX, charmap->FontIndex(NULL_CHARACTER_CODE)); } void testInsertCharacterIndex() { CPPUNIT_ASSERT_EQUAL(0U, charmap->GlyphListIndex(CHARACTER_CODE_A)); CPPUNIT_ASSERT_EQUAL(FONT_INDEX_OF_A, charmap->FontIndex(CHARACTER_CODE_A)); charmap->InsertIndex(69, CHARACTER_CODE_A); CPPUNIT_ASSERT_EQUAL(FONT_INDEX_OF_A, charmap->FontIndex(CHARACTER_CODE_A)); CPPUNIT_ASSERT_EQUAL(69U, charmap->GlyphListIndex(CHARACTER_CODE_A)); charmap->InsertIndex(999, CHARACTER_CODE_G); CPPUNIT_ASSERT_EQUAL(999U, charmap->GlyphListIndex(CHARACTER_CODE_G)); } void setUp() { charmap = new FTCharmap(face); } void tearDown() { delete charmap; } private: FTFace* face; FTCharmap* charmap; void setUpFreetype() { face = new FTFace(GOOD_FONT_FILE); CPPUNIT_ASSERT(!face->Error()); } void tearDownFreetype() { delete face; } }; CPPUNIT_TEST_SUITE_REGISTRATION(FTCharmapTest); ftgl-2.1.3~rc5/test/Makefile.in0000644000175000017500000025023211024231635013227 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ @HAVE_CPPUNIT_TRUE@@HAVE_GLUT_TRUE@noinst_PROGRAMS = CTest$(EXEEXT) \ @HAVE_CPPUNIT_TRUE@@HAVE_GLUT_TRUE@ CXXTest$(EXEEXT) subdir = test DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/cxx.m4 $(top_srcdir)/m4/font.m4 \ $(top_srcdir)/m4/freetype2.m4 $(top_srcdir)/m4/gl.m4 \ $(top_srcdir)/m4/glut.m4 $(top_srcdir)/m4/pkg.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = PROGRAMS = $(noinst_PROGRAMS) am__objects_1 = am_CTest_OBJECTS = CTest-CTest.$(OBJEXT) $(am__objects_1) CTest_OBJECTS = $(am_CTest_OBJECTS) CTest_DEPENDENCIES = ../src/libftgl.la CTest_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(CTest_CFLAGS) $(CFLAGS) $(CTest_LDFLAGS) \ $(LDFLAGS) -o $@ am_CXXTest_OBJECTS = CXXTest-CXXTest.$(OBJEXT) \ CXXTest-FTBBox-Test.$(OBJEXT) \ CXXTest-FTBitmapFont-Test.$(OBJEXT) \ CXXTest-FTBitmapGlyph-Test.$(OBJEXT) \ CXXTest-FTCharmap-Test.$(OBJEXT) \ CXXTest-FTCharToGlyphIndexMap-Test.$(OBJEXT) \ CXXTest-FTContour-Test.$(OBJEXT) \ CXXTest-FTExtrudeFont-Test.$(OBJEXT) \ CXXTest-FTExtrudeGlyph-Test.$(OBJEXT) \ CXXTest-FTFace-Test.$(OBJEXT) CXXTest-FTFont-Test.$(OBJEXT) \ CXXTest-FTGlyph-Test.$(OBJEXT) \ CXXTest-FTGlyphContainer-Test.$(OBJEXT) \ CXXTest-FTlayout-Test.$(OBJEXT) \ CXXTest-FTLibrary-Test.$(OBJEXT) CXXTest-FTList-Test.$(OBJEXT) \ CXXTest-FTMesh-Test.$(OBJEXT) \ CXXTest-FTOutlineFont-Test.$(OBJEXT) \ CXXTest-FTOutlineGlyph-Test.$(OBJEXT) \ CXXTest-FTPixmapFont-Test.$(OBJEXT) \ CXXTest-FTPixmapGlyph-Test.$(OBJEXT) \ CXXTest-FTPoint-Test.$(OBJEXT) \ CXXTest-FTPolygonFont-Test.$(OBJEXT) \ CXXTest-FTPolygonGlyph-Test.$(OBJEXT) \ CXXTest-FTSize-Test.$(OBJEXT) \ CXXTest-FTTesselation-Test.$(OBJEXT) \ CXXTest-FTTextureFont-Test.$(OBJEXT) \ CXXTest-FTTextureGlyph-Test.$(OBJEXT) \ CXXTest-FTVectoriser-Test.$(OBJEXT) \ CXXTest-FTVector-Test.$(OBJEXT) CXXTest-HPGCalc_afm.$(OBJEXT) \ CXXTest-HPGCalc_pfb.$(OBJEXT) $(am__objects_1) CXXTest_OBJECTS = $(am_CXXTest_OBJECTS) CXXTest_DEPENDENCIES = ../src/libftgl.la CXXTest_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(CXXTest_CXXFLAGS) $(CXXFLAGS) \ $(CXXTest_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/.auto/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(CTest_SOURCES) $(CXXTest_SOURCES) DIST_SOURCES = $(CTest_SOURCES) $(CXXTest_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CONVERT = @CONVERT@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CPPUNIT_CFLAGS = @CPPUNIT_CFLAGS@ CPPUNIT_LIBS = @CPPUNIT_LIBS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DOXYGEN = @DOXYGEN@ DSYMUTIL = @DSYMUTIL@ DVIPS = @DVIPS@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EPSTOPDF = @EPSTOPDF@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FRAMEWORK_OPENGL = @FRAMEWORK_OPENGL@ FT2_CFLAGS = @FT2_CFLAGS@ FT2_CONFIG = @FT2_CONFIG@ FT2_LIBS = @FT2_LIBS@ GLUT_CFLAGS = @GLUT_CFLAGS@ GLUT_LIBS = @GLUT_LIBS@ GL_CFLAGS = @GL_CFLAGS@ GL_LIBS = @GL_LIBS@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ KPSEWHICH = @KPSEWHICH@ LATEX = @LATEX@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_MAJOR = @LT_MAJOR@ LT_MICRO = @LT_MICRO@ LT_MINOR = @LT_MINOR@ LT_VERSION = @LT_VERSION@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ CXXTest_SOURCES = \ $(DEACTIVATED) \ CXXTest.cpp \ Fontdefs.h \ FTBBox-Test.cpp \ FTBitmapFont-Test.cpp \ FTBitmapGlyph-Test.cpp \ FTCharmap-Test.cpp \ FTCharToGlyphIndexMap-Test.cpp \ FTContour-Test.cpp \ FTExtrudeFont-Test.cpp \ FTExtrudeGlyph-Test.cpp \ FTFace-Test.cpp \ FTFont-Test.cpp \ FTGlyph-Test.cpp \ FTGlyphContainer-Test.cpp \ FTlayout-Test.cpp \ FTLibrary-Test.cpp \ FTList-Test.cpp \ FTMesh-Test.cpp \ FTOutlineFont-Test.cpp \ FTOutlineGlyph-Test.cpp \ FTPixmapFont-Test.cpp \ FTPixmapGlyph-Test.cpp \ FTPoint-Test.cpp \ FTPolygonFont-Test.cpp \ FTPolygonGlyph-Test.cpp \ FTSize-Test.cpp \ FTTesselation-Test.cpp \ FTTextureFont-Test.cpp \ FTTextureGlyph-Test.cpp \ FTVectoriser-Test.cpp \ FTVector-Test.cpp \ HPGCalc_afm.cpp \ HPGCalc_pfb.cpp \ $(NULL) AM_CPPFLAGS = \ $(FT2_CPPFLAGS) \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/FTFont \ -I$(top_srcdir)/src/FTGlyph \ -I$(top_srcdir)/src/FTLayout \ $(NULL) CXXTest_CXXFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) CXXTest_LDFLAGS = $(FT2_LIBS) $(GLUT_LIBS) -lcppunit CXXTest_LDADD = ../src/libftgl.la CTest_SOURCES = \ CTest.c \ $(NULL) CTest_CPPFLAGS = \ -I$(top_srcdir)/include \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/FTGlyph \ -I$(top_srcdir)/src/FTFont \ -I$(top_srcdir)/src/FTLayout CTest_CFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) CTest_LDFLAGS = $(FT2_LIBS) $(GLUT_LIBS) CTest_LDADD = ../src/libftgl.la NULL = all: all-am .SUFFIXES: .SUFFIXES: .c .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu test/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstPROGRAMS: @list='$(noinst_PROGRAMS)'; for p in $$list; do \ f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ echo " rm -f $$p $$f"; \ rm -f $$p $$f ; \ done CTest$(EXEEXT): $(CTest_OBJECTS) $(CTest_DEPENDENCIES) @rm -f CTest$(EXEEXT) $(CTest_LINK) $(CTest_OBJECTS) $(CTest_LDADD) $(LIBS) CXXTest$(EXEEXT): $(CXXTest_OBJECTS) $(CXXTest_DEPENDENCIES) @rm -f CXXTest$(EXEEXT) $(CXXTest_LINK) $(CXXTest_OBJECTS) $(CXXTest_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CTest-CTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-CXXTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTBBox-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTBitmapFont-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTBitmapGlyph-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTCharToGlyphIndexMap-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTCharmap-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTContour-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTExtrudeFont-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTExtrudeGlyph-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTFace-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTFont-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTGlyph-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTGlyphContainer-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTLibrary-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTList-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTMesh-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTOutlineFont-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTOutlineGlyph-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTPixmapFont-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTPixmapGlyph-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTPoint-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTPolygonFont-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTPolygonGlyph-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTSize-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTTesselation-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTTextureFont-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTTextureGlyph-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTVector-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTVectoriser-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-FTlayout-Test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-HPGCalc_afm.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CXXTest-HPGCalc_pfb.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< CTest-CTest.o: CTest.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CTest_CPPFLAGS) $(CPPFLAGS) $(CTest_CFLAGS) $(CFLAGS) -MT CTest-CTest.o -MD -MP -MF $(DEPDIR)/CTest-CTest.Tpo -c -o CTest-CTest.o `test -f 'CTest.c' || echo '$(srcdir)/'`CTest.c @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/CTest-CTest.Tpo $(DEPDIR)/CTest-CTest.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='CTest.c' object='CTest-CTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CTest_CPPFLAGS) $(CPPFLAGS) $(CTest_CFLAGS) $(CFLAGS) -c -o CTest-CTest.o `test -f 'CTest.c' || echo '$(srcdir)/'`CTest.c CTest-CTest.obj: CTest.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CTest_CPPFLAGS) $(CPPFLAGS) $(CTest_CFLAGS) $(CFLAGS) -MT CTest-CTest.obj -MD -MP -MF $(DEPDIR)/CTest-CTest.Tpo -c -o CTest-CTest.obj `if test -f 'CTest.c'; then $(CYGPATH_W) 'CTest.c'; else $(CYGPATH_W) '$(srcdir)/CTest.c'; fi` @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/CTest-CTest.Tpo $(DEPDIR)/CTest-CTest.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='CTest.c' object='CTest-CTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CTest_CPPFLAGS) $(CPPFLAGS) $(CTest_CFLAGS) $(CFLAGS) -c -o CTest-CTest.obj `if test -f 'CTest.c'; then $(CYGPATH_W) 'CTest.c'; else $(CYGPATH_W) '$(srcdir)/CTest.c'; fi` .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< CXXTest-CXXTest.o: CXXTest.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-CXXTest.o -MD -MP -MF $(DEPDIR)/CXXTest-CXXTest.Tpo -c -o CXXTest-CXXTest.o `test -f 'CXXTest.cpp' || echo '$(srcdir)/'`CXXTest.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-CXXTest.Tpo $(DEPDIR)/CXXTest-CXXTest.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='CXXTest.cpp' object='CXXTest-CXXTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-CXXTest.o `test -f 'CXXTest.cpp' || echo '$(srcdir)/'`CXXTest.cpp CXXTest-CXXTest.obj: CXXTest.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-CXXTest.obj -MD -MP -MF $(DEPDIR)/CXXTest-CXXTest.Tpo -c -o CXXTest-CXXTest.obj `if test -f 'CXXTest.cpp'; then $(CYGPATH_W) 'CXXTest.cpp'; else $(CYGPATH_W) '$(srcdir)/CXXTest.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-CXXTest.Tpo $(DEPDIR)/CXXTest-CXXTest.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='CXXTest.cpp' object='CXXTest-CXXTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-CXXTest.obj `if test -f 'CXXTest.cpp'; then $(CYGPATH_W) 'CXXTest.cpp'; else $(CYGPATH_W) '$(srcdir)/CXXTest.cpp'; fi` CXXTest-FTBBox-Test.o: FTBBox-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTBBox-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTBBox-Test.Tpo -c -o CXXTest-FTBBox-Test.o `test -f 'FTBBox-Test.cpp' || echo '$(srcdir)/'`FTBBox-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTBBox-Test.Tpo $(DEPDIR)/CXXTest-FTBBox-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTBBox-Test.cpp' object='CXXTest-FTBBox-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTBBox-Test.o `test -f 'FTBBox-Test.cpp' || echo '$(srcdir)/'`FTBBox-Test.cpp CXXTest-FTBBox-Test.obj: FTBBox-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTBBox-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTBBox-Test.Tpo -c -o CXXTest-FTBBox-Test.obj `if test -f 'FTBBox-Test.cpp'; then $(CYGPATH_W) 'FTBBox-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTBBox-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTBBox-Test.Tpo $(DEPDIR)/CXXTest-FTBBox-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTBBox-Test.cpp' object='CXXTest-FTBBox-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTBBox-Test.obj `if test -f 'FTBBox-Test.cpp'; then $(CYGPATH_W) 'FTBBox-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTBBox-Test.cpp'; fi` CXXTest-FTBitmapFont-Test.o: FTBitmapFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTBitmapFont-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTBitmapFont-Test.Tpo -c -o CXXTest-FTBitmapFont-Test.o `test -f 'FTBitmapFont-Test.cpp' || echo '$(srcdir)/'`FTBitmapFont-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTBitmapFont-Test.Tpo $(DEPDIR)/CXXTest-FTBitmapFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTBitmapFont-Test.cpp' object='CXXTest-FTBitmapFont-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTBitmapFont-Test.o `test -f 'FTBitmapFont-Test.cpp' || echo '$(srcdir)/'`FTBitmapFont-Test.cpp CXXTest-FTBitmapFont-Test.obj: FTBitmapFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTBitmapFont-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTBitmapFont-Test.Tpo -c -o CXXTest-FTBitmapFont-Test.obj `if test -f 'FTBitmapFont-Test.cpp'; then $(CYGPATH_W) 'FTBitmapFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTBitmapFont-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTBitmapFont-Test.Tpo $(DEPDIR)/CXXTest-FTBitmapFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTBitmapFont-Test.cpp' object='CXXTest-FTBitmapFont-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTBitmapFont-Test.obj `if test -f 'FTBitmapFont-Test.cpp'; then $(CYGPATH_W) 'FTBitmapFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTBitmapFont-Test.cpp'; fi` CXXTest-FTBitmapGlyph-Test.o: FTBitmapGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTBitmapGlyph-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTBitmapGlyph-Test.Tpo -c -o CXXTest-FTBitmapGlyph-Test.o `test -f 'FTBitmapGlyph-Test.cpp' || echo '$(srcdir)/'`FTBitmapGlyph-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTBitmapGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTBitmapGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTBitmapGlyph-Test.cpp' object='CXXTest-FTBitmapGlyph-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTBitmapGlyph-Test.o `test -f 'FTBitmapGlyph-Test.cpp' || echo '$(srcdir)/'`FTBitmapGlyph-Test.cpp CXXTest-FTBitmapGlyph-Test.obj: FTBitmapGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTBitmapGlyph-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTBitmapGlyph-Test.Tpo -c -o CXXTest-FTBitmapGlyph-Test.obj `if test -f 'FTBitmapGlyph-Test.cpp'; then $(CYGPATH_W) 'FTBitmapGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTBitmapGlyph-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTBitmapGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTBitmapGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTBitmapGlyph-Test.cpp' object='CXXTest-FTBitmapGlyph-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTBitmapGlyph-Test.obj `if test -f 'FTBitmapGlyph-Test.cpp'; then $(CYGPATH_W) 'FTBitmapGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTBitmapGlyph-Test.cpp'; fi` CXXTest-FTCharmap-Test.o: FTCharmap-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTCharmap-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTCharmap-Test.Tpo -c -o CXXTest-FTCharmap-Test.o `test -f 'FTCharmap-Test.cpp' || echo '$(srcdir)/'`FTCharmap-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTCharmap-Test.Tpo $(DEPDIR)/CXXTest-FTCharmap-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTCharmap-Test.cpp' object='CXXTest-FTCharmap-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTCharmap-Test.o `test -f 'FTCharmap-Test.cpp' || echo '$(srcdir)/'`FTCharmap-Test.cpp CXXTest-FTCharmap-Test.obj: FTCharmap-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTCharmap-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTCharmap-Test.Tpo -c -o CXXTest-FTCharmap-Test.obj `if test -f 'FTCharmap-Test.cpp'; then $(CYGPATH_W) 'FTCharmap-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTCharmap-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTCharmap-Test.Tpo $(DEPDIR)/CXXTest-FTCharmap-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTCharmap-Test.cpp' object='CXXTest-FTCharmap-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTCharmap-Test.obj `if test -f 'FTCharmap-Test.cpp'; then $(CYGPATH_W) 'FTCharmap-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTCharmap-Test.cpp'; fi` CXXTest-FTCharToGlyphIndexMap-Test.o: FTCharToGlyphIndexMap-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTCharToGlyphIndexMap-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTCharToGlyphIndexMap-Test.Tpo -c -o CXXTest-FTCharToGlyphIndexMap-Test.o `test -f 'FTCharToGlyphIndexMap-Test.cpp' || echo '$(srcdir)/'`FTCharToGlyphIndexMap-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTCharToGlyphIndexMap-Test.Tpo $(DEPDIR)/CXXTest-FTCharToGlyphIndexMap-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTCharToGlyphIndexMap-Test.cpp' object='CXXTest-FTCharToGlyphIndexMap-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTCharToGlyphIndexMap-Test.o `test -f 'FTCharToGlyphIndexMap-Test.cpp' || echo '$(srcdir)/'`FTCharToGlyphIndexMap-Test.cpp CXXTest-FTCharToGlyphIndexMap-Test.obj: FTCharToGlyphIndexMap-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTCharToGlyphIndexMap-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTCharToGlyphIndexMap-Test.Tpo -c -o CXXTest-FTCharToGlyphIndexMap-Test.obj `if test -f 'FTCharToGlyphIndexMap-Test.cpp'; then $(CYGPATH_W) 'FTCharToGlyphIndexMap-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTCharToGlyphIndexMap-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTCharToGlyphIndexMap-Test.Tpo $(DEPDIR)/CXXTest-FTCharToGlyphIndexMap-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTCharToGlyphIndexMap-Test.cpp' object='CXXTest-FTCharToGlyphIndexMap-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTCharToGlyphIndexMap-Test.obj `if test -f 'FTCharToGlyphIndexMap-Test.cpp'; then $(CYGPATH_W) 'FTCharToGlyphIndexMap-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTCharToGlyphIndexMap-Test.cpp'; fi` CXXTest-FTContour-Test.o: FTContour-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTContour-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTContour-Test.Tpo -c -o CXXTest-FTContour-Test.o `test -f 'FTContour-Test.cpp' || echo '$(srcdir)/'`FTContour-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTContour-Test.Tpo $(DEPDIR)/CXXTest-FTContour-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTContour-Test.cpp' object='CXXTest-FTContour-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTContour-Test.o `test -f 'FTContour-Test.cpp' || echo '$(srcdir)/'`FTContour-Test.cpp CXXTest-FTContour-Test.obj: FTContour-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTContour-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTContour-Test.Tpo -c -o CXXTest-FTContour-Test.obj `if test -f 'FTContour-Test.cpp'; then $(CYGPATH_W) 'FTContour-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTContour-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTContour-Test.Tpo $(DEPDIR)/CXXTest-FTContour-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTContour-Test.cpp' object='CXXTest-FTContour-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTContour-Test.obj `if test -f 'FTContour-Test.cpp'; then $(CYGPATH_W) 'FTContour-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTContour-Test.cpp'; fi` CXXTest-FTExtrudeFont-Test.o: FTExtrudeFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTExtrudeFont-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTExtrudeFont-Test.Tpo -c -o CXXTest-FTExtrudeFont-Test.o `test -f 'FTExtrudeFont-Test.cpp' || echo '$(srcdir)/'`FTExtrudeFont-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTExtrudeFont-Test.Tpo $(DEPDIR)/CXXTest-FTExtrudeFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTExtrudeFont-Test.cpp' object='CXXTest-FTExtrudeFont-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTExtrudeFont-Test.o `test -f 'FTExtrudeFont-Test.cpp' || echo '$(srcdir)/'`FTExtrudeFont-Test.cpp CXXTest-FTExtrudeFont-Test.obj: FTExtrudeFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTExtrudeFont-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTExtrudeFont-Test.Tpo -c -o CXXTest-FTExtrudeFont-Test.obj `if test -f 'FTExtrudeFont-Test.cpp'; then $(CYGPATH_W) 'FTExtrudeFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTExtrudeFont-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTExtrudeFont-Test.Tpo $(DEPDIR)/CXXTest-FTExtrudeFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTExtrudeFont-Test.cpp' object='CXXTest-FTExtrudeFont-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTExtrudeFont-Test.obj `if test -f 'FTExtrudeFont-Test.cpp'; then $(CYGPATH_W) 'FTExtrudeFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTExtrudeFont-Test.cpp'; fi` CXXTest-FTExtrudeGlyph-Test.o: FTExtrudeGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTExtrudeGlyph-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTExtrudeGlyph-Test.Tpo -c -o CXXTest-FTExtrudeGlyph-Test.o `test -f 'FTExtrudeGlyph-Test.cpp' || echo '$(srcdir)/'`FTExtrudeGlyph-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTExtrudeGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTExtrudeGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTExtrudeGlyph-Test.cpp' object='CXXTest-FTExtrudeGlyph-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTExtrudeGlyph-Test.o `test -f 'FTExtrudeGlyph-Test.cpp' || echo '$(srcdir)/'`FTExtrudeGlyph-Test.cpp CXXTest-FTExtrudeGlyph-Test.obj: FTExtrudeGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTExtrudeGlyph-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTExtrudeGlyph-Test.Tpo -c -o CXXTest-FTExtrudeGlyph-Test.obj `if test -f 'FTExtrudeGlyph-Test.cpp'; then $(CYGPATH_W) 'FTExtrudeGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTExtrudeGlyph-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTExtrudeGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTExtrudeGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTExtrudeGlyph-Test.cpp' object='CXXTest-FTExtrudeGlyph-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTExtrudeGlyph-Test.obj `if test -f 'FTExtrudeGlyph-Test.cpp'; then $(CYGPATH_W) 'FTExtrudeGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTExtrudeGlyph-Test.cpp'; fi` CXXTest-FTFace-Test.o: FTFace-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTFace-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTFace-Test.Tpo -c -o CXXTest-FTFace-Test.o `test -f 'FTFace-Test.cpp' || echo '$(srcdir)/'`FTFace-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTFace-Test.Tpo $(DEPDIR)/CXXTest-FTFace-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFace-Test.cpp' object='CXXTest-FTFace-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTFace-Test.o `test -f 'FTFace-Test.cpp' || echo '$(srcdir)/'`FTFace-Test.cpp CXXTest-FTFace-Test.obj: FTFace-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTFace-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTFace-Test.Tpo -c -o CXXTest-FTFace-Test.obj `if test -f 'FTFace-Test.cpp'; then $(CYGPATH_W) 'FTFace-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTFace-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTFace-Test.Tpo $(DEPDIR)/CXXTest-FTFace-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFace-Test.cpp' object='CXXTest-FTFace-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTFace-Test.obj `if test -f 'FTFace-Test.cpp'; then $(CYGPATH_W) 'FTFace-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTFace-Test.cpp'; fi` CXXTest-FTFont-Test.o: FTFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTFont-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTFont-Test.Tpo -c -o CXXTest-FTFont-Test.o `test -f 'FTFont-Test.cpp' || echo '$(srcdir)/'`FTFont-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTFont-Test.Tpo $(DEPDIR)/CXXTest-FTFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFont-Test.cpp' object='CXXTest-FTFont-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTFont-Test.o `test -f 'FTFont-Test.cpp' || echo '$(srcdir)/'`FTFont-Test.cpp CXXTest-FTFont-Test.obj: FTFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTFont-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTFont-Test.Tpo -c -o CXXTest-FTFont-Test.obj `if test -f 'FTFont-Test.cpp'; then $(CYGPATH_W) 'FTFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTFont-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTFont-Test.Tpo $(DEPDIR)/CXXTest-FTFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTFont-Test.cpp' object='CXXTest-FTFont-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTFont-Test.obj `if test -f 'FTFont-Test.cpp'; then $(CYGPATH_W) 'FTFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTFont-Test.cpp'; fi` CXXTest-FTGlyph-Test.o: FTGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTGlyph-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTGlyph-Test.Tpo -c -o CXXTest-FTGlyph-Test.o `test -f 'FTGlyph-Test.cpp' || echo '$(srcdir)/'`FTGlyph-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyph-Test.cpp' object='CXXTest-FTGlyph-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTGlyph-Test.o `test -f 'FTGlyph-Test.cpp' || echo '$(srcdir)/'`FTGlyph-Test.cpp CXXTest-FTGlyph-Test.obj: FTGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTGlyph-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTGlyph-Test.Tpo -c -o CXXTest-FTGlyph-Test.obj `if test -f 'FTGlyph-Test.cpp'; then $(CYGPATH_W) 'FTGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTGlyph-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyph-Test.cpp' object='CXXTest-FTGlyph-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTGlyph-Test.obj `if test -f 'FTGlyph-Test.cpp'; then $(CYGPATH_W) 'FTGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTGlyph-Test.cpp'; fi` CXXTest-FTGlyphContainer-Test.o: FTGlyphContainer-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTGlyphContainer-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTGlyphContainer-Test.Tpo -c -o CXXTest-FTGlyphContainer-Test.o `test -f 'FTGlyphContainer-Test.cpp' || echo '$(srcdir)/'`FTGlyphContainer-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTGlyphContainer-Test.Tpo $(DEPDIR)/CXXTest-FTGlyphContainer-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyphContainer-Test.cpp' object='CXXTest-FTGlyphContainer-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTGlyphContainer-Test.o `test -f 'FTGlyphContainer-Test.cpp' || echo '$(srcdir)/'`FTGlyphContainer-Test.cpp CXXTest-FTGlyphContainer-Test.obj: FTGlyphContainer-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTGlyphContainer-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTGlyphContainer-Test.Tpo -c -o CXXTest-FTGlyphContainer-Test.obj `if test -f 'FTGlyphContainer-Test.cpp'; then $(CYGPATH_W) 'FTGlyphContainer-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTGlyphContainer-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTGlyphContainer-Test.Tpo $(DEPDIR)/CXXTest-FTGlyphContainer-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTGlyphContainer-Test.cpp' object='CXXTest-FTGlyphContainer-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTGlyphContainer-Test.obj `if test -f 'FTGlyphContainer-Test.cpp'; then $(CYGPATH_W) 'FTGlyphContainer-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTGlyphContainer-Test.cpp'; fi` CXXTest-FTlayout-Test.o: FTlayout-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTlayout-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTlayout-Test.Tpo -c -o CXXTest-FTlayout-Test.o `test -f 'FTlayout-Test.cpp' || echo '$(srcdir)/'`FTlayout-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTlayout-Test.Tpo $(DEPDIR)/CXXTest-FTlayout-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTlayout-Test.cpp' object='CXXTest-FTlayout-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTlayout-Test.o `test -f 'FTlayout-Test.cpp' || echo '$(srcdir)/'`FTlayout-Test.cpp CXXTest-FTlayout-Test.obj: FTlayout-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTlayout-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTlayout-Test.Tpo -c -o CXXTest-FTlayout-Test.obj `if test -f 'FTlayout-Test.cpp'; then $(CYGPATH_W) 'FTlayout-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTlayout-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTlayout-Test.Tpo $(DEPDIR)/CXXTest-FTlayout-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTlayout-Test.cpp' object='CXXTest-FTlayout-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTlayout-Test.obj `if test -f 'FTlayout-Test.cpp'; then $(CYGPATH_W) 'FTlayout-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTlayout-Test.cpp'; fi` CXXTest-FTLibrary-Test.o: FTLibrary-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTLibrary-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTLibrary-Test.Tpo -c -o CXXTest-FTLibrary-Test.o `test -f 'FTLibrary-Test.cpp' || echo '$(srcdir)/'`FTLibrary-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTLibrary-Test.Tpo $(DEPDIR)/CXXTest-FTLibrary-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTLibrary-Test.cpp' object='CXXTest-FTLibrary-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTLibrary-Test.o `test -f 'FTLibrary-Test.cpp' || echo '$(srcdir)/'`FTLibrary-Test.cpp CXXTest-FTLibrary-Test.obj: FTLibrary-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTLibrary-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTLibrary-Test.Tpo -c -o CXXTest-FTLibrary-Test.obj `if test -f 'FTLibrary-Test.cpp'; then $(CYGPATH_W) 'FTLibrary-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTLibrary-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTLibrary-Test.Tpo $(DEPDIR)/CXXTest-FTLibrary-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTLibrary-Test.cpp' object='CXXTest-FTLibrary-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTLibrary-Test.obj `if test -f 'FTLibrary-Test.cpp'; then $(CYGPATH_W) 'FTLibrary-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTLibrary-Test.cpp'; fi` CXXTest-FTList-Test.o: FTList-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTList-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTList-Test.Tpo -c -o CXXTest-FTList-Test.o `test -f 'FTList-Test.cpp' || echo '$(srcdir)/'`FTList-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTList-Test.Tpo $(DEPDIR)/CXXTest-FTList-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTList-Test.cpp' object='CXXTest-FTList-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTList-Test.o `test -f 'FTList-Test.cpp' || echo '$(srcdir)/'`FTList-Test.cpp CXXTest-FTList-Test.obj: FTList-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTList-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTList-Test.Tpo -c -o CXXTest-FTList-Test.obj `if test -f 'FTList-Test.cpp'; then $(CYGPATH_W) 'FTList-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTList-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTList-Test.Tpo $(DEPDIR)/CXXTest-FTList-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTList-Test.cpp' object='CXXTest-FTList-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTList-Test.obj `if test -f 'FTList-Test.cpp'; then $(CYGPATH_W) 'FTList-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTList-Test.cpp'; fi` CXXTest-FTMesh-Test.o: FTMesh-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTMesh-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTMesh-Test.Tpo -c -o CXXTest-FTMesh-Test.o `test -f 'FTMesh-Test.cpp' || echo '$(srcdir)/'`FTMesh-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTMesh-Test.Tpo $(DEPDIR)/CXXTest-FTMesh-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTMesh-Test.cpp' object='CXXTest-FTMesh-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTMesh-Test.o `test -f 'FTMesh-Test.cpp' || echo '$(srcdir)/'`FTMesh-Test.cpp CXXTest-FTMesh-Test.obj: FTMesh-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTMesh-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTMesh-Test.Tpo -c -o CXXTest-FTMesh-Test.obj `if test -f 'FTMesh-Test.cpp'; then $(CYGPATH_W) 'FTMesh-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTMesh-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTMesh-Test.Tpo $(DEPDIR)/CXXTest-FTMesh-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTMesh-Test.cpp' object='CXXTest-FTMesh-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTMesh-Test.obj `if test -f 'FTMesh-Test.cpp'; then $(CYGPATH_W) 'FTMesh-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTMesh-Test.cpp'; fi` CXXTest-FTOutlineFont-Test.o: FTOutlineFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTOutlineFont-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTOutlineFont-Test.Tpo -c -o CXXTest-FTOutlineFont-Test.o `test -f 'FTOutlineFont-Test.cpp' || echo '$(srcdir)/'`FTOutlineFont-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTOutlineFont-Test.Tpo $(DEPDIR)/CXXTest-FTOutlineFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTOutlineFont-Test.cpp' object='CXXTest-FTOutlineFont-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTOutlineFont-Test.o `test -f 'FTOutlineFont-Test.cpp' || echo '$(srcdir)/'`FTOutlineFont-Test.cpp CXXTest-FTOutlineFont-Test.obj: FTOutlineFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTOutlineFont-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTOutlineFont-Test.Tpo -c -o CXXTest-FTOutlineFont-Test.obj `if test -f 'FTOutlineFont-Test.cpp'; then $(CYGPATH_W) 'FTOutlineFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTOutlineFont-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTOutlineFont-Test.Tpo $(DEPDIR)/CXXTest-FTOutlineFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTOutlineFont-Test.cpp' object='CXXTest-FTOutlineFont-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTOutlineFont-Test.obj `if test -f 'FTOutlineFont-Test.cpp'; then $(CYGPATH_W) 'FTOutlineFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTOutlineFont-Test.cpp'; fi` CXXTest-FTOutlineGlyph-Test.o: FTOutlineGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTOutlineGlyph-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTOutlineGlyph-Test.Tpo -c -o CXXTest-FTOutlineGlyph-Test.o `test -f 'FTOutlineGlyph-Test.cpp' || echo '$(srcdir)/'`FTOutlineGlyph-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTOutlineGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTOutlineGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTOutlineGlyph-Test.cpp' object='CXXTest-FTOutlineGlyph-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTOutlineGlyph-Test.o `test -f 'FTOutlineGlyph-Test.cpp' || echo '$(srcdir)/'`FTOutlineGlyph-Test.cpp CXXTest-FTOutlineGlyph-Test.obj: FTOutlineGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTOutlineGlyph-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTOutlineGlyph-Test.Tpo -c -o CXXTest-FTOutlineGlyph-Test.obj `if test -f 'FTOutlineGlyph-Test.cpp'; then $(CYGPATH_W) 'FTOutlineGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTOutlineGlyph-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTOutlineGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTOutlineGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTOutlineGlyph-Test.cpp' object='CXXTest-FTOutlineGlyph-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTOutlineGlyph-Test.obj `if test -f 'FTOutlineGlyph-Test.cpp'; then $(CYGPATH_W) 'FTOutlineGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTOutlineGlyph-Test.cpp'; fi` CXXTest-FTPixmapFont-Test.o: FTPixmapFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTPixmapFont-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTPixmapFont-Test.Tpo -c -o CXXTest-FTPixmapFont-Test.o `test -f 'FTPixmapFont-Test.cpp' || echo '$(srcdir)/'`FTPixmapFont-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTPixmapFont-Test.Tpo $(DEPDIR)/CXXTest-FTPixmapFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTPixmapFont-Test.cpp' object='CXXTest-FTPixmapFont-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTPixmapFont-Test.o `test -f 'FTPixmapFont-Test.cpp' || echo '$(srcdir)/'`FTPixmapFont-Test.cpp CXXTest-FTPixmapFont-Test.obj: FTPixmapFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTPixmapFont-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTPixmapFont-Test.Tpo -c -o CXXTest-FTPixmapFont-Test.obj `if test -f 'FTPixmapFont-Test.cpp'; then $(CYGPATH_W) 'FTPixmapFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTPixmapFont-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTPixmapFont-Test.Tpo $(DEPDIR)/CXXTest-FTPixmapFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTPixmapFont-Test.cpp' object='CXXTest-FTPixmapFont-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTPixmapFont-Test.obj `if test -f 'FTPixmapFont-Test.cpp'; then $(CYGPATH_W) 'FTPixmapFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTPixmapFont-Test.cpp'; fi` CXXTest-FTPixmapGlyph-Test.o: FTPixmapGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTPixmapGlyph-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTPixmapGlyph-Test.Tpo -c -o CXXTest-FTPixmapGlyph-Test.o `test -f 'FTPixmapGlyph-Test.cpp' || echo '$(srcdir)/'`FTPixmapGlyph-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTPixmapGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTPixmapGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTPixmapGlyph-Test.cpp' object='CXXTest-FTPixmapGlyph-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTPixmapGlyph-Test.o `test -f 'FTPixmapGlyph-Test.cpp' || echo '$(srcdir)/'`FTPixmapGlyph-Test.cpp CXXTest-FTPixmapGlyph-Test.obj: FTPixmapGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTPixmapGlyph-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTPixmapGlyph-Test.Tpo -c -o CXXTest-FTPixmapGlyph-Test.obj `if test -f 'FTPixmapGlyph-Test.cpp'; then $(CYGPATH_W) 'FTPixmapGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTPixmapGlyph-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTPixmapGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTPixmapGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTPixmapGlyph-Test.cpp' object='CXXTest-FTPixmapGlyph-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTPixmapGlyph-Test.obj `if test -f 'FTPixmapGlyph-Test.cpp'; then $(CYGPATH_W) 'FTPixmapGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTPixmapGlyph-Test.cpp'; fi` CXXTest-FTPoint-Test.o: FTPoint-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTPoint-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTPoint-Test.Tpo -c -o CXXTest-FTPoint-Test.o `test -f 'FTPoint-Test.cpp' || echo '$(srcdir)/'`FTPoint-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTPoint-Test.Tpo $(DEPDIR)/CXXTest-FTPoint-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTPoint-Test.cpp' object='CXXTest-FTPoint-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTPoint-Test.o `test -f 'FTPoint-Test.cpp' || echo '$(srcdir)/'`FTPoint-Test.cpp CXXTest-FTPoint-Test.obj: FTPoint-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTPoint-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTPoint-Test.Tpo -c -o CXXTest-FTPoint-Test.obj `if test -f 'FTPoint-Test.cpp'; then $(CYGPATH_W) 'FTPoint-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTPoint-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTPoint-Test.Tpo $(DEPDIR)/CXXTest-FTPoint-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTPoint-Test.cpp' object='CXXTest-FTPoint-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTPoint-Test.obj `if test -f 'FTPoint-Test.cpp'; then $(CYGPATH_W) 'FTPoint-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTPoint-Test.cpp'; fi` CXXTest-FTPolygonFont-Test.o: FTPolygonFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTPolygonFont-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTPolygonFont-Test.Tpo -c -o CXXTest-FTPolygonFont-Test.o `test -f 'FTPolygonFont-Test.cpp' || echo '$(srcdir)/'`FTPolygonFont-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTPolygonFont-Test.Tpo $(DEPDIR)/CXXTest-FTPolygonFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTPolygonFont-Test.cpp' object='CXXTest-FTPolygonFont-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTPolygonFont-Test.o `test -f 'FTPolygonFont-Test.cpp' || echo '$(srcdir)/'`FTPolygonFont-Test.cpp CXXTest-FTPolygonFont-Test.obj: FTPolygonFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTPolygonFont-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTPolygonFont-Test.Tpo -c -o CXXTest-FTPolygonFont-Test.obj `if test -f 'FTPolygonFont-Test.cpp'; then $(CYGPATH_W) 'FTPolygonFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTPolygonFont-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTPolygonFont-Test.Tpo $(DEPDIR)/CXXTest-FTPolygonFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTPolygonFont-Test.cpp' object='CXXTest-FTPolygonFont-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTPolygonFont-Test.obj `if test -f 'FTPolygonFont-Test.cpp'; then $(CYGPATH_W) 'FTPolygonFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTPolygonFont-Test.cpp'; fi` CXXTest-FTPolygonGlyph-Test.o: FTPolygonGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTPolygonGlyph-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTPolygonGlyph-Test.Tpo -c -o CXXTest-FTPolygonGlyph-Test.o `test -f 'FTPolygonGlyph-Test.cpp' || echo '$(srcdir)/'`FTPolygonGlyph-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTPolygonGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTPolygonGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTPolygonGlyph-Test.cpp' object='CXXTest-FTPolygonGlyph-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTPolygonGlyph-Test.o `test -f 'FTPolygonGlyph-Test.cpp' || echo '$(srcdir)/'`FTPolygonGlyph-Test.cpp CXXTest-FTPolygonGlyph-Test.obj: FTPolygonGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTPolygonGlyph-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTPolygonGlyph-Test.Tpo -c -o CXXTest-FTPolygonGlyph-Test.obj `if test -f 'FTPolygonGlyph-Test.cpp'; then $(CYGPATH_W) 'FTPolygonGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTPolygonGlyph-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTPolygonGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTPolygonGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTPolygonGlyph-Test.cpp' object='CXXTest-FTPolygonGlyph-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTPolygonGlyph-Test.obj `if test -f 'FTPolygonGlyph-Test.cpp'; then $(CYGPATH_W) 'FTPolygonGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTPolygonGlyph-Test.cpp'; fi` CXXTest-FTSize-Test.o: FTSize-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTSize-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTSize-Test.Tpo -c -o CXXTest-FTSize-Test.o `test -f 'FTSize-Test.cpp' || echo '$(srcdir)/'`FTSize-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTSize-Test.Tpo $(DEPDIR)/CXXTest-FTSize-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTSize-Test.cpp' object='CXXTest-FTSize-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTSize-Test.o `test -f 'FTSize-Test.cpp' || echo '$(srcdir)/'`FTSize-Test.cpp CXXTest-FTSize-Test.obj: FTSize-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTSize-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTSize-Test.Tpo -c -o CXXTest-FTSize-Test.obj `if test -f 'FTSize-Test.cpp'; then $(CYGPATH_W) 'FTSize-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTSize-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTSize-Test.Tpo $(DEPDIR)/CXXTest-FTSize-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTSize-Test.cpp' object='CXXTest-FTSize-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTSize-Test.obj `if test -f 'FTSize-Test.cpp'; then $(CYGPATH_W) 'FTSize-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTSize-Test.cpp'; fi` CXXTest-FTTesselation-Test.o: FTTesselation-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTTesselation-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTTesselation-Test.Tpo -c -o CXXTest-FTTesselation-Test.o `test -f 'FTTesselation-Test.cpp' || echo '$(srcdir)/'`FTTesselation-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTTesselation-Test.Tpo $(DEPDIR)/CXXTest-FTTesselation-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTTesselation-Test.cpp' object='CXXTest-FTTesselation-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTTesselation-Test.o `test -f 'FTTesselation-Test.cpp' || echo '$(srcdir)/'`FTTesselation-Test.cpp CXXTest-FTTesselation-Test.obj: FTTesselation-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTTesselation-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTTesselation-Test.Tpo -c -o CXXTest-FTTesselation-Test.obj `if test -f 'FTTesselation-Test.cpp'; then $(CYGPATH_W) 'FTTesselation-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTTesselation-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTTesselation-Test.Tpo $(DEPDIR)/CXXTest-FTTesselation-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTTesselation-Test.cpp' object='CXXTest-FTTesselation-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTTesselation-Test.obj `if test -f 'FTTesselation-Test.cpp'; then $(CYGPATH_W) 'FTTesselation-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTTesselation-Test.cpp'; fi` CXXTest-FTTextureFont-Test.o: FTTextureFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTTextureFont-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTTextureFont-Test.Tpo -c -o CXXTest-FTTextureFont-Test.o `test -f 'FTTextureFont-Test.cpp' || echo '$(srcdir)/'`FTTextureFont-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTTextureFont-Test.Tpo $(DEPDIR)/CXXTest-FTTextureFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTTextureFont-Test.cpp' object='CXXTest-FTTextureFont-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTTextureFont-Test.o `test -f 'FTTextureFont-Test.cpp' || echo '$(srcdir)/'`FTTextureFont-Test.cpp CXXTest-FTTextureFont-Test.obj: FTTextureFont-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTTextureFont-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTTextureFont-Test.Tpo -c -o CXXTest-FTTextureFont-Test.obj `if test -f 'FTTextureFont-Test.cpp'; then $(CYGPATH_W) 'FTTextureFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTTextureFont-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTTextureFont-Test.Tpo $(DEPDIR)/CXXTest-FTTextureFont-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTTextureFont-Test.cpp' object='CXXTest-FTTextureFont-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTTextureFont-Test.obj `if test -f 'FTTextureFont-Test.cpp'; then $(CYGPATH_W) 'FTTextureFont-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTTextureFont-Test.cpp'; fi` CXXTest-FTTextureGlyph-Test.o: FTTextureGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTTextureGlyph-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTTextureGlyph-Test.Tpo -c -o CXXTest-FTTextureGlyph-Test.o `test -f 'FTTextureGlyph-Test.cpp' || echo '$(srcdir)/'`FTTextureGlyph-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTTextureGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTTextureGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTTextureGlyph-Test.cpp' object='CXXTest-FTTextureGlyph-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTTextureGlyph-Test.o `test -f 'FTTextureGlyph-Test.cpp' || echo '$(srcdir)/'`FTTextureGlyph-Test.cpp CXXTest-FTTextureGlyph-Test.obj: FTTextureGlyph-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTTextureGlyph-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTTextureGlyph-Test.Tpo -c -o CXXTest-FTTextureGlyph-Test.obj `if test -f 'FTTextureGlyph-Test.cpp'; then $(CYGPATH_W) 'FTTextureGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTTextureGlyph-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTTextureGlyph-Test.Tpo $(DEPDIR)/CXXTest-FTTextureGlyph-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTTextureGlyph-Test.cpp' object='CXXTest-FTTextureGlyph-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTTextureGlyph-Test.obj `if test -f 'FTTextureGlyph-Test.cpp'; then $(CYGPATH_W) 'FTTextureGlyph-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTTextureGlyph-Test.cpp'; fi` CXXTest-FTVectoriser-Test.o: FTVectoriser-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTVectoriser-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTVectoriser-Test.Tpo -c -o CXXTest-FTVectoriser-Test.o `test -f 'FTVectoriser-Test.cpp' || echo '$(srcdir)/'`FTVectoriser-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTVectoriser-Test.Tpo $(DEPDIR)/CXXTest-FTVectoriser-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTVectoriser-Test.cpp' object='CXXTest-FTVectoriser-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTVectoriser-Test.o `test -f 'FTVectoriser-Test.cpp' || echo '$(srcdir)/'`FTVectoriser-Test.cpp CXXTest-FTVectoriser-Test.obj: FTVectoriser-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTVectoriser-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTVectoriser-Test.Tpo -c -o CXXTest-FTVectoriser-Test.obj `if test -f 'FTVectoriser-Test.cpp'; then $(CYGPATH_W) 'FTVectoriser-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTVectoriser-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTVectoriser-Test.Tpo $(DEPDIR)/CXXTest-FTVectoriser-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTVectoriser-Test.cpp' object='CXXTest-FTVectoriser-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTVectoriser-Test.obj `if test -f 'FTVectoriser-Test.cpp'; then $(CYGPATH_W) 'FTVectoriser-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTVectoriser-Test.cpp'; fi` CXXTest-FTVector-Test.o: FTVector-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTVector-Test.o -MD -MP -MF $(DEPDIR)/CXXTest-FTVector-Test.Tpo -c -o CXXTest-FTVector-Test.o `test -f 'FTVector-Test.cpp' || echo '$(srcdir)/'`FTVector-Test.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTVector-Test.Tpo $(DEPDIR)/CXXTest-FTVector-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTVector-Test.cpp' object='CXXTest-FTVector-Test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTVector-Test.o `test -f 'FTVector-Test.cpp' || echo '$(srcdir)/'`FTVector-Test.cpp CXXTest-FTVector-Test.obj: FTVector-Test.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-FTVector-Test.obj -MD -MP -MF $(DEPDIR)/CXXTest-FTVector-Test.Tpo -c -o CXXTest-FTVector-Test.obj `if test -f 'FTVector-Test.cpp'; then $(CYGPATH_W) 'FTVector-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTVector-Test.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-FTVector-Test.Tpo $(DEPDIR)/CXXTest-FTVector-Test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FTVector-Test.cpp' object='CXXTest-FTVector-Test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-FTVector-Test.obj `if test -f 'FTVector-Test.cpp'; then $(CYGPATH_W) 'FTVector-Test.cpp'; else $(CYGPATH_W) '$(srcdir)/FTVector-Test.cpp'; fi` CXXTest-HPGCalc_afm.o: HPGCalc_afm.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-HPGCalc_afm.o -MD -MP -MF $(DEPDIR)/CXXTest-HPGCalc_afm.Tpo -c -o CXXTest-HPGCalc_afm.o `test -f 'HPGCalc_afm.cpp' || echo '$(srcdir)/'`HPGCalc_afm.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-HPGCalc_afm.Tpo $(DEPDIR)/CXXTest-HPGCalc_afm.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='HPGCalc_afm.cpp' object='CXXTest-HPGCalc_afm.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-HPGCalc_afm.o `test -f 'HPGCalc_afm.cpp' || echo '$(srcdir)/'`HPGCalc_afm.cpp CXXTest-HPGCalc_afm.obj: HPGCalc_afm.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-HPGCalc_afm.obj -MD -MP -MF $(DEPDIR)/CXXTest-HPGCalc_afm.Tpo -c -o CXXTest-HPGCalc_afm.obj `if test -f 'HPGCalc_afm.cpp'; then $(CYGPATH_W) 'HPGCalc_afm.cpp'; else $(CYGPATH_W) '$(srcdir)/HPGCalc_afm.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-HPGCalc_afm.Tpo $(DEPDIR)/CXXTest-HPGCalc_afm.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='HPGCalc_afm.cpp' object='CXXTest-HPGCalc_afm.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-HPGCalc_afm.obj `if test -f 'HPGCalc_afm.cpp'; then $(CYGPATH_W) 'HPGCalc_afm.cpp'; else $(CYGPATH_W) '$(srcdir)/HPGCalc_afm.cpp'; fi` CXXTest-HPGCalc_pfb.o: HPGCalc_pfb.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-HPGCalc_pfb.o -MD -MP -MF $(DEPDIR)/CXXTest-HPGCalc_pfb.Tpo -c -o CXXTest-HPGCalc_pfb.o `test -f 'HPGCalc_pfb.cpp' || echo '$(srcdir)/'`HPGCalc_pfb.cpp @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-HPGCalc_pfb.Tpo $(DEPDIR)/CXXTest-HPGCalc_pfb.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='HPGCalc_pfb.cpp' object='CXXTest-HPGCalc_pfb.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-HPGCalc_pfb.o `test -f 'HPGCalc_pfb.cpp' || echo '$(srcdir)/'`HPGCalc_pfb.cpp CXXTest-HPGCalc_pfb.obj: HPGCalc_pfb.cpp @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -MT CXXTest-HPGCalc_pfb.obj -MD -MP -MF $(DEPDIR)/CXXTest-HPGCalc_pfb.Tpo -c -o CXXTest-HPGCalc_pfb.obj `if test -f 'HPGCalc_pfb.cpp'; then $(CYGPATH_W) 'HPGCalc_pfb.cpp'; else $(CYGPATH_W) '$(srcdir)/HPGCalc_pfb.cpp'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/CXXTest-HPGCalc_pfb.Tpo $(DEPDIR)/CXXTest-HPGCalc_pfb.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='HPGCalc_pfb.cpp' object='CXXTest-HPGCalc_pfb.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXTest_CXXFLAGS) $(CXXFLAGS) -c -o CXXTest-HPGCalc_pfb.obj `if test -f 'HPGCalc_pfb.cpp'; then $(CYGPATH_W) 'HPGCalc_pfb.cpp'; else $(CYGPATH_W) '$(srcdir)/HPGCalc_pfb.cpp'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-exec-am: install-html: install-html-am install-info: install-info-am install-man: install-pdf: install-pdf-am install-ps: install-ps-am installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstPROGRAMS ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ftgl-2.1.3~rc5/test/FTCharToGlyphIndexMap-Test.cpp0000644000175000017500000000265411005341320016642 00000000000000#include #include #include #include #include "FTCharToGlyphIndexMap.h" class FTCharToGlyphIndexMapTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTCharToGlyphIndexMapTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testInsert); CPPUNIT_TEST(testClear); CPPUNIT_TEST_SUITE_END(); public: FTCharToGlyphIndexMapTest() : CppUnit::TestCase("FTCharToGlyphIndexMap Test") {} FTCharToGlyphIndexMapTest(const std::string& name) : CppUnit::TestCase(name) {} void testConstructor() { FTCharToGlyphIndexMap testMap; CPPUNIT_ASSERT(testMap.find(2) == 0); CPPUNIT_ASSERT(testMap.find(5) == 0); } void testInsert() { FTCharToGlyphIndexMap testMap; testMap.insert(2, 37); CPPUNIT_ASSERT(testMap.find(2) == 37); CPPUNIT_ASSERT(testMap.find(5) == 0); } void testClear() { FTCharToGlyphIndexMap testMap; testMap.insert(2, 37); testMap.clear(); CPPUNIT_ASSERT(testMap.find(2) == 0); CPPUNIT_ASSERT(testMap.find(5) == 0); } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTCharToGlyphIndexMapTest); ftgl-2.1.3~rc5/test/FTlayout-Test.cpp0000644000175000017500000000131711011547674014361 00000000000000#include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" static const int SCRIPT = 2; // arabic class FTLayoutTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTLayoutTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST_SUITE_END(); public: FTLayoutTest() : CppUnit::TestCase("FTLayout Test") {} FTLayoutTest(const std::string& name) : CppUnit::TestCase(name) {} void testConstructor() {} void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTLayoutTest); ftgl-2.1.3~rc5/test/FTPixmapFont-Test.cpp0000644000175000017500000000430011006540240015106 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTInternals.h" extern void buildGLContext(); class FTPixmapFontTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTPixmapFontTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testRender); CPPUNIT_TEST(testDisplayList); CPPUNIT_TEST_SUITE_END(); public: FTPixmapFontTest() : CppUnit::TestCase("FTPixmapFont Test") { } FTPixmapFontTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTPixmapFontTest() { } void testConstructor() { buildGLContext(); FTPixmapFont* pixmapFont = new FTPixmapFont(FONT_FILE); CPPUNIT_ASSERT_EQUAL(pixmapFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete pixmapFont; } void testRender() { buildGLContext(); FTPixmapFont* pixmapFont = new FTPixmapFont(FONT_FILE); pixmapFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(pixmapFont->Error(), 0x97); // Invalid pixels per em CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); pixmapFont->FaceSize(18); pixmapFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(pixmapFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete pixmapFont; } void testDisplayList() { buildGLContext(); FTPixmapFont* pixmapFont = new FTPixmapFont(FONT_FILE); pixmapFont->FaceSize(18); int glList = glGenLists(1); glNewList(glList, GL_COMPILE); pixmapFont->Render(GOOD_ASCII_TEST_STRING); glEndList(); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete pixmapFont; } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTPixmapFontTest); ftgl-2.1.3~rc5/test/FTPoint-Test.cpp0000644000175000017500000000767511006143072014136 00000000000000#include #include #include #include #include "FTGL/ftgl.h" class FTPointTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTPointTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testOperatorEqual); CPPUNIT_TEST(testOperatorPlus); CPPUNIT_TEST(testOperatorMultiply); CPPUNIT_TEST(testOperatorNotEqual); CPPUNIT_TEST(testOperatorPlusEquals); CPPUNIT_TEST(testOperatorDouble); CPPUNIT_TEST(testSetters); CPPUNIT_TEST(testGetters); CPPUNIT_TEST_SUITE_END(); public: FTPointTest() : CppUnit::TestCase("FTPoint Test") {} FTPointTest(const std::string& name) : CppUnit::TestCase(name) {} void testConstructor() { FTPoint point1; CPPUNIT_ASSERT(point1.X() == 0.0f); CPPUNIT_ASSERT(point1.Y() == 0.0f); CPPUNIT_ASSERT(point1.Z() == 0.0f); FTPoint point2(1.0f, 2.0f, 3.0f); CPPUNIT_ASSERT(point2.X() == 1.0f); CPPUNIT_ASSERT(point2.Y() == 2.0f); CPPUNIT_ASSERT(point2.Z() == 3.0f); FT_Vector ftVector; ftVector.x = 4; ftVector.y = 23; FTPoint point3(ftVector); CPPUNIT_ASSERT(point3.X() == 4.0f); CPPUNIT_ASSERT(point3.Y() == 23.0f); CPPUNIT_ASSERT(point3.Z() == 0.0f); } void testOperatorEqual() { FTPoint point1(1.0f, 2.0f, 3.0f); FTPoint point2(1.0f, 2.0f, 3.0f); FTPoint point3(-1.0f, 2.3f, 23.0f); CPPUNIT_ASSERT(point1 == point1); CPPUNIT_ASSERT(point1 == point2); CPPUNIT_ASSERT(!(point1 == point3)); } void testOperatorNotEqual() { FTPoint point1(1.0f, 2.0f, 3.0f); FTPoint point2(1.0f, 2.0f, 3.0f); FTPoint point3(-1.0f, 2.3f, 23.0f); CPPUNIT_ASSERT(!(point1 != point1)); CPPUNIT_ASSERT(!(point1 != point2)); CPPUNIT_ASSERT(point1 != point3); } void testOperatorPlus() { FTPoint point1(1.0f, 2.0f, 3.0f); FTPoint point2(1.0f, 2.0f, 3.0f); FTPoint point3(2.0f, 4.0f, 6.0f); FTPoint point4 = point1 + point2; CPPUNIT_ASSERT(point4 == point3); } void testOperatorMultiply() { FTPoint point1(1.0f, 2.0f, 3.0f); FTPoint point2(1.0f, 2.0f, 3.0f); FTPoint point3(2.0f, 4.0f, 6.0f); FTPoint point4 = point1 * 2.0; CPPUNIT_ASSERT(point4 == point3); point4 = 2.0 * point2; CPPUNIT_ASSERT(point4 == point3); } void testOperatorPlusEquals() { FTPoint point1(1.0f, 2.0f, 3.0f); FTPoint point2(-2.0f, 21.0f, 0.0f); FTPoint point3(-1.0f, 23.0f, 3.0f); point1 += point2; CPPUNIT_ASSERT(point1 == point3); } void testOperatorDouble() { FTPoint point1(1.0f, 2.0f, 3.0f); const double* pointer = static_cast(point1); CPPUNIT_ASSERT(pointer[0] == 1.0f); CPPUNIT_ASSERT(pointer[1] == 2.0f); CPPUNIT_ASSERT(pointer[2] == 3.0f); } void testSetters() { FTPoint point; FTPoint point1(1, 2, 3); point.X(1); point.Y(2); point.Z(3); CPPUNIT_ASSERT(point == point1); } void testGetters() { FTPoint point(1.0f, 2.0f, 3.0f); CPPUNIT_ASSERT(point.X() == 1.0); CPPUNIT_ASSERT(point.Y() == 2.0); CPPUNIT_ASSERT(point.Z() == 3.0); } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTPointTest); ftgl-2.1.3~rc5/test/FTPolygonGlyph-Test.cpp0000644000175000017500000000421211006346176015472 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTInternals.h" extern void buildGLContext(); class FTPolygonGlyphTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTPolygonGlyphTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testRender); CPPUNIT_TEST_SUITE_END(); public: FTPolygonGlyphTest() : CppUnit::TestCase("FTPolygonGlyph Test") { } FTPolygonGlyphTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTPolygonGlyphTest() { } void testConstructor() { setUpFreetype(); buildGLContext(); FTPolygonGlyph* polyGlyph = new FTPolygonGlyph(face->glyph, 0, true); CPPUNIT_ASSERT(polyGlyph->Error() == 0); CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR); tearDownFreetype(); } void testRender() { setUpFreetype(); buildGLContext(); FTPolygonGlyph* polyGlyph = new FTPolygonGlyph(face->glyph, 0.0f, true); polyGlyph->Render(FTPoint(0, 0, 0), FTGL::RENDER_FRONT); CPPUNIT_ASSERT(polyGlyph->Error() == 0); CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR); tearDownFreetype(); } void setUp() {} void tearDown() {} private: FT_Library library; FT_Face face; void setUpFreetype() { FT_Error error = FT_Init_FreeType(&library); assert(!error); error = FT_New_Face(library, FONT_FILE, 0, &face); assert(!error); FT_Set_Char_Size(face, 0L, FONT_POINT_SIZE * 64, RESOLUTION, RESOLUTION); error = FT_Load_Char(face, CHARACTER_CODE_A, FT_LOAD_DEFAULT); assert(!error); } void tearDownFreetype() { FT_Done_Face(face); FT_Done_FreeType(library); } }; CPPUNIT_TEST_SUITE_REGISTRATION(FTPolygonGlyphTest); ftgl-2.1.3~rc5/test/FTBBox-Test.cpp0000644000175000017500000001521111011547674013674 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" class FTBBoxTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTBBoxTest); CPPUNIT_TEST(testDefaultConstructor); CPPUNIT_TEST(testGlyphConstructor); CPPUNIT_TEST(testBitmapConstructor); CPPUNIT_TEST(testMoveBBox); CPPUNIT_TEST(testPlusEquals); CPPUNIT_TEST(testSetDepth); CPPUNIT_TEST_SUITE_END(); public: FTBBoxTest() : CppUnit::TestCase("FTBBox Test") {} FTBBoxTest(const std::string& name) : CppUnit::TestCase(name) {} void testDefaultConstructor() { FTBBox boundingBox; CPPUNIT_ASSERT(boundingBox.Lower().X() == 0.0f); CPPUNIT_ASSERT(boundingBox.Lower().Y() == 0.0f); CPPUNIT_ASSERT(boundingBox.Lower().Z() == 0.0f); CPPUNIT_ASSERT(boundingBox.Upper().X() == 0.0f); CPPUNIT_ASSERT(boundingBox.Upper().Y() == 0.0f); CPPUNIT_ASSERT(boundingBox.Upper().Z() == 0.0f); } void testGlyphConstructor() { setUpFreetype(GOOD_FONT_FILE); // FTBBox boundingBox2((FT_GlyphSlot)(0)); // CPPUNIT_ASSERT(boundingBox2.Lower().X() == 0.0f); // CPPUNIT_ASSERT(boundingBox2.Lower().Y() == 0.0f); // CPPUNIT_ASSERT(boundingBox2.Lower().Z() == 0.0f); // CPPUNIT_ASSERT(boundingBox2.Upper().X() == 0.0f); // CPPUNIT_ASSERT(boundingBox2.Upper().Y() == 0.0f); // CPPUNIT_ASSERT(boundingBox2.Upper().Z() == 0.0f); FTBBox boundingBox(face->glyph); CPPUNIT_ASSERT_DOUBLES_EQUAL(2, boundingBox.Lower().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(-15, boundingBox.Lower().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, boundingBox.Lower().Z(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(35, boundingBox.Upper().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(38, boundingBox.Upper().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, boundingBox.Upper().Z(), 0.01); tearDownFreetype(); } void testBitmapConstructor() { setUpFreetype(GOOD_FONT_FILE); FT_Load_Char(face, CHARACTER_CODE_G, FT_LOAD_MONOCHROME); CPPUNIT_ASSERT(ft_glyph_format_bitmap != face->glyph->format); FTBBox boundingBox3(face->glyph); CPPUNIT_ASSERT_DOUBLES_EQUAL(2, boundingBox3.Lower().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(-15, boundingBox3.Lower().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, boundingBox3.Lower().Z(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(35, boundingBox3.Upper().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(38, boundingBox3.Upper().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, boundingBox3.Upper().Z(), 0.01); } void testMoveBBox() { FTBBox boundingBox; FTPoint firstMove(3.5f, 1.0f, -2.5f); FTPoint secondMove(-3.5f, -1.0f, 2.5f); boundingBox += firstMove; CPPUNIT_ASSERT(boundingBox.Lower().X() == 3.5f); CPPUNIT_ASSERT(boundingBox.Lower().Y() == 1.0f); CPPUNIT_ASSERT(boundingBox.Lower().Z() == -2.5f); CPPUNIT_ASSERT(boundingBox.Upper().X() == 3.5f); CPPUNIT_ASSERT(boundingBox.Upper().Y() == 1.0f); CPPUNIT_ASSERT(boundingBox.Upper().Z() == -2.5f); boundingBox += secondMove; CPPUNIT_ASSERT(boundingBox.Lower().X() == 0.0f); CPPUNIT_ASSERT(boundingBox.Lower().Y() == 0.0f); CPPUNIT_ASSERT(boundingBox.Lower().Z() == 0.0f); CPPUNIT_ASSERT(boundingBox.Upper().X() == 0.0f); CPPUNIT_ASSERT(boundingBox.Upper().Y() == 0.0f); CPPUNIT_ASSERT(boundingBox.Upper().Z() == 0.0f); } void testPlusEquals() { setUpFreetype(GOOD_FONT_FILE); FTBBox boundingBox1; FTBBox boundingBox2(face->glyph); boundingBox1 |= boundingBox2; CPPUNIT_ASSERT_DOUBLES_EQUAL(2, boundingBox2.Lower().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(-15, boundingBox2.Lower().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, boundingBox2.Lower().Z(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(35, boundingBox2.Upper().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(38, boundingBox2.Upper().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, boundingBox2.Upper().Z(), 0.01); float advance = 40; boundingBox2 += FTPoint(advance, 0, 0); boundingBox1 |= boundingBox2; CPPUNIT_ASSERT_DOUBLES_EQUAL(42, boundingBox2.Lower().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(-15, boundingBox2.Lower().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, boundingBox2.Lower().Z(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(75, boundingBox2.Upper().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(38, boundingBox2.Upper().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, boundingBox2.Upper().Z(), 0.01); tearDownFreetype(); } void testSetDepth() { setUpFreetype(GOOD_FONT_FILE); FTBBox boundingBox(face->glyph); boundingBox.SetDepth(37.754); CPPUNIT_ASSERT_DOUBLES_EQUAL(2, boundingBox.Lower().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(-15, boundingBox.Lower().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, boundingBox.Lower().Z(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(35, boundingBox.Upper().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(38, boundingBox.Upper().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(37.754, boundingBox.Upper().Z(), 0.01); tearDownFreetype(); } void setUp() {} void tearDown() {} private: FT_Library library; FT_Face face; void setUpFreetype(const char *fontName) { FT_Error error = FT_Init_FreeType(&library); CPPUNIT_ASSERT(!error); error = FT_New_Face(library, fontName, 0, &face); CPPUNIT_ASSERT(!error); FT_Set_Char_Size(face, 0L, FONT_POINT_SIZE * 64, RESOLUTION, RESOLUTION); error = FT_Load_Char(face, CHARACTER_CODE_G, FT_LOAD_RENDER); CPPUNIT_ASSERT(!error); } void tearDownFreetype() { FT_Done_Face(face); FT_Done_FreeType(library); } }; CPPUNIT_TEST_SUITE_REGISTRATION(FTBBoxTest); ftgl-2.1.3~rc5/test/FTExtrudeGlyph-Test.cpp0000644000175000017500000000466511006346176015477 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTInternals.h" extern void buildGLContext(); class FTExtrudeGlyphTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTExtrudeGlyphTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testRender); CPPUNIT_TEST_SUITE_END(); public: FTExtrudeGlyphTest() : CppUnit::TestCase("FTExtrudeGlyph Test") { } FTExtrudeGlyphTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTExtrudeGlyphTest() { } void testConstructor() { setUpFreetype(); buildGLContext(); FTExtrudeGlyph* extrudedGlyph = new FTExtrudeGlyph(face->glyph, 0.0f, 0.0f, 0.0f, true); CPPUNIT_ASSERT(extrudedGlyph->Error() == 0); CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR); tearDownFreetype(); } void testRender() { setUpFreetype(); buildGLContext(); FTExtrudeGlyph* extrudedGlyph = new FTExtrudeGlyph(face->glyph, 0.0f, 0.0f, 0.0f, true); CPPUNIT_ASSERT(extrudedGlyph->Error() == 0); extrudedGlyph->Render(FTPoint(0, 0, 0), FTGL::RENDER_FRONT | FTGL::RENDER_BACK | FTGL::RENDER_SIDE); CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR); tearDownFreetype(); } void setUp() {} void tearDown() {} private: FT_Library library; FT_Face face; void setUpFreetype() { FT_Error error = FT_Init_FreeType(&library); assert(!error); error = FT_New_Face(library, FONT_FILE, 0, &face); assert(!error); FT_Set_Char_Size(face, 0L, FONT_POINT_SIZE * 64, RESOLUTION, RESOLUTION); error = FT_Load_Char(face, CHARACTER_CODE_A, FT_LOAD_DEFAULT); assert(!error); } void tearDownFreetype() { FT_Done_Face(face); FT_Done_FreeType(library); } }; CPPUNIT_TEST_SUITE_REGISTRATION(FTExtrudeGlyphTest); ftgl-2.1.3~rc5/test/CXXTest.cpp0000644000175000017500000000201311006346176013167 00000000000000#include "config.h" #include #include #if defined HAVE_GL_GLUT_H # include #elif defined HAVE_GLUT_GLUT_H # include #else # error GLUT headers not present #endif int main(int argc, const char* argv[]) { CppUnit::TextTestRunner runner; runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest()); runner.run(); return 0; } void buildGLContext() { static bool glutInitialised = false; char* pointer; int number; if(!glutInitialised) { glutInit(&number, &pointer); glutInitDisplayMode(GLUT_DEPTH | GLUT_RGB | GLUT_DOUBLE | GLUT_MULTISAMPLE); glutInitWindowPosition(0, 0); glutInitWindowSize(150, 150); glutCreateWindow("FTGL TEST"); glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluOrtho2D(0.0, 150, 0.0, 150); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); glutInitialised = true; } } ftgl-2.1.3~rc5/test/HPGCalc_pfb.cpp0000644000175000017500000143057011005341320013714 00000000000000/* * Conversion of HPGCalc.pfb */ #ifndef DEFINED_BINARYFILEDUMP #define DEFINED_BINARYFILEDUMP typedef struct BINARYFILEDUMP_struct { const unsigned char * dataBytes; int numBytes; } BINARYFILEDUMP; #endif const unsigned char byte_data_HPGCalc_pfb[ ] = { 0x80, 0x01, 0xc9, 0x15, 0x00, 0x00, 0x25, 0x21, 0x50, 0x53, 0x2d, 0x41, 0x64, 0x6f, 0x62, 0x65, 0x46, 0x6f, 0x6e, 0x74, 0x2d, 0x31, 0x2e, 0x30, 0x3a, 0x20, 0x48, 0x50, 0x47, 0x43, 0x61, 0x6c, 0x63, 0x20, 0x30, 0x30, 0x34, 0x2e, 0x30, 0x30, 0x30, 0x0a, 0x25, 0x25, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x20, 0x48, 0x50, 0x47, 0x43, 0x61, 0x6c, 0x63, 0x0a, 0x25, 0x25, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x20, 0x54, 0x68, 0x75, 0x20, 0x4f, 0x63, 0x74, 0x20, 0x33, 0x31, 0x20, 0x31, 0x37, 0x3a, 0x33, 0x31, 0x3a, 0x30, 0x33, 0x20, 0x32, 0x30, 0x30, 0x32, 0x0a, 0x25, 0x25, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x3a, 0x20, 0x4a, 0x6f, 0x73, 0x68, 0x75, 0x61, 0x20, 0x4b, 0x69, 0x6e, 0x67, 0x2c, 0x2c, 0x2c, 0x28, 0x30, 0x38, 0x29, 0x20, 0x39, 0x34, 0x30, 0x31, 0x20, 0x37, 0x32, 0x36, 0x39, 0x0a, 0x25, 0x25, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3a, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x20, 0x48, 0x50, 0x47, 0x43, 0x61, 0x6c, 0x63, 0x0a, 0x25, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x4a, 0x6f, 0x73, 0x68, 0x75, 0x61, 0x20, 0x4b, 0x69, 0x6e, 0x67, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x50, 0x66, 0x61, 0x45, 0x64, 0x69, 0x74, 0x20, 0x31, 0x2e, 0x30, 0x20, 0x28, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x70, 0x66, 0x61, 0x65, 0x64, 0x69, 0x74, 0x2e, 0x73, 0x66, 0x2e, 0x6e, 0x65, 0x74, 0x29, 0x20, 0x53, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x0a, 0x25, 0x20, 0x32, 0x30, 0x30, 0x32, 0x2d, 0x31, 0x30, 0x2d, 0x33, 0x31, 0x3a, 0x20, 0x46, 0x69, 0x78, 0x65, 0x64, 0x20, 0x6d, 0x61, 0x70, 0x20, 0x6f, 0x66, 0x20, 0x58, 0x20, 0x42, 0x61, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x68, 0x69, 0x20, 0x2d, 0x20, 0x6e, 0x6f, 0x20, 0x58, 0x20, 0x42, 0x61, 0x72, 0x20, 0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x20, 0x55, 0x6e, 0x69, 0x63, 0x6f, 0x64, 0x65, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x73, 0x2e, 0x20, 0x0a, 0x25, 0x20, 0x32, 0x30, 0x30, 0x32, 0x2d, 0x31, 0x30, 0x2d, 0x31, 0x33, 0x3a, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x0a, 0x25, 0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x50, 0x66, 0x61, 0x45, 0x64, 0x69, 0x74, 0x20, 0x31, 0x2e, 0x30, 0x20, 0x28, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x70, 0x66, 0x61, 0x65, 0x64, 0x69, 0x74, 0x2e, 0x73, 0x66, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x29, 0x0a, 0x25, 0x25, 0x45, 0x6e, 0x64, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x0a, 0x46, 0x6f, 0x6e, 0x74, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x2f, 0x48, 0x50, 0x47, 0x43, 0x61, 0x6c, 0x63, 0x20, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x7b, 0x2f, 0x48, 0x50, 0x47, 0x43, 0x61, 0x6c, 0x63, 0x20, 0x66, 0x69, 0x6e, 0x64, 0x66, 0x6f, 0x6e, 0x74, 0x20, 0x64, 0x75, 0x70, 0x2f, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x49, 0x44, 0x20, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x7b, 0x64, 0x75, 0x70, 0x0a, 0x2f, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x49, 0x44, 0x20, 0x67, 0x65, 0x74, 0x20, 0x34, 0x32, 0x35, 0x38, 0x38, 0x39, 0x30, 0x20, 0x65, 0x71, 0x20, 0x65, 0x78, 0x63, 0x68, 0x2f, 0x46, 0x6f, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x20, 0x67, 0x65, 0x74, 0x20, 0x31, 0x20, 0x65, 0x71, 0x20, 0x61, 0x6e, 0x64, 0x7d, 0x7b, 0x70, 0x6f, 0x70, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x69, 0x66, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x7b, 0x73, 0x61, 0x76, 0x65, 0x20, 0x74, 0x72, 0x75, 0x65, 0x7d, 0x7b, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x69, 0x66, 0x65, 0x6c, 0x73, 0x65, 0x7d, 0x7b, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x69, 0x66, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x31, 0x31, 0x20, 0x64, 0x69, 0x63, 0x74, 0x20, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x0a, 0x2f, 0x46, 0x6f, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x20, 0x31, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x2f, 0x46, 0x6f, 0x6e, 0x74, 0x4d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x20, 0x5b, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x32, 0x32, 0x39, 0x37, 0x37, 0x39, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x32, 0x32, 0x39, 0x37, 0x37, 0x39, 0x20, 0x30, 0x20, 0x30, 0x20, 0x5d, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x2f, 0x46, 0x6f, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x2f, 0x48, 0x50, 0x47, 0x43, 0x61, 0x6c, 0x63, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x2f, 0x46, 0x6f, 0x6e, 0x74, 0x42, 0x42, 0x6f, 0x78, 0x20, 0x5b, 0x31, 0x36, 0x31, 0x20, 0x31, 0x38, 0x32, 0x20, 0x32, 0x34, 0x33, 0x31, 0x20, 0x33, 0x39, 0x32, 0x34, 0x20, 0x5d, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x2f, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x49, 0x44, 0x20, 0x34, 0x32, 0x35, 0x38, 0x38, 0x39, 0x30, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x2f, 0x50, 0x61, 0x69, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x20, 0x30, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x2f, 0x46, 0x6f, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x20, 0x31, 0x31, 0x20, 0x64, 0x69, 0x63, 0x74, 0x20, 0x64, 0x75, 0x70, 0x20, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x0a, 0x20, 0x2f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x30, 0x30, 0x34, 0x2e, 0x30, 0x30, 0x30, 0x29, 0x20, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x20, 0x2f, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x20, 0x28, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x4a, 0x6f, 0x73, 0x68, 0x75, 0x61, 0x20, 0x4b, 0x69, 0x6e, 0x67, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x50, 0x66, 0x61, 0x45, 0x64, 0x69, 0x74, 0x20, 0x31, 0x2e, 0x30, 0x20, 0x5c, 0x30, 0x35, 0x30, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x70, 0x66, 0x61, 0x65, 0x64, 0x69, 0x74, 0x2e, 0x73, 0x66, 0x2e, 0x6e, 0x65, 0x74, 0x5c, 0x30, 0x35, 0x31, 0x20, 0x53, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x20, 0x64, 0x65, 0x73, 0x69, 0x67, 0x6e, 0x20, 0x6f, 0x66, 0x20, 0x48, 0x65, 0x77, 0x6c, 0x65, 0x74, 0x74, 0x20, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x72, 0x64, 0x20, 0x61, 0x73, 0x20, 0x75, 0x73, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x69, 0x72, 0x20, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x63, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x20, 0x48, 0x50, 0x33, 0x38, 0x47, 0x2c, 0x20, 0x48, 0x50, 0x33, 0x39, 0x47, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x48, 0x50, 0x34, 0x30, 0x47, 0x2e, 0x29, 0x20, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x20, 0x2f, 0x46, 0x75, 0x6c, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x28, 0x48, 0x50, 0x20, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x20, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x29, 0x20, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x20, 0x2f, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x28, 0x48, 0x50, 0x47, 0x43, 0x61, 0x6c, 0x63, 0x29, 0x20, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x20, 0x2f, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x20, 0x28, 0x4d, 0x65, 0x64, 0x69, 0x75, 0x6d, 0x29, 0x20, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x20, 0x2f, 0x46, 0x53, 0x54, 0x79, 0x70, 0x65, 0x20, 0x30, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x20, 0x2f, 0x49, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x41, 0x6e, 0x67, 0x6c, 0x65, 0x20, 0x30, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x20, 0x2f, 0x69, 0x73, 0x46, 0x69, 0x78, 0x65, 0x64, 0x50, 0x69, 0x74, 0x63, 0x68, 0x20, 0x74, 0x72, 0x75, 0x65, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x20, 0x2f, 0x55, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x31, 0x30, 0x30, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x20, 0x2f, 0x55, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x54, 0x68, 0x69, 0x63, 0x6b, 0x6e, 0x65, 0x73, 0x73, 0x20, 0x35, 0x30, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x20, 0x2f, 0x61, 0x73, 0x63, 0x65, 0x6e, 0x74, 0x20, 0x34, 0x30, 0x36, 0x35, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x65, 0x6e, 0x64, 0x20, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x2f, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x32, 0x35, 0x36, 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x0a, 0x20, 0x30, 0x20, 0x31, 0x20, 0x32, 0x35, 0x35, 0x20, 0x7b, 0x20, 0x31, 0x20, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x20, 0x65, 0x78, 0x63, 0x68, 0x20, 0x2f, 0x2e, 0x6e, 0x6f, 0x74, 0x64, 0x65, 0x66, 0x20, 0x70, 0x75, 0x74, 0x7d, 0x20, 0x66, 0x6f, 0x72, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x33, 0x32, 0x2f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x33, 0x33, 0x2f, 0x65, 0x78, 0x63, 0x6c, 0x61, 0x6d, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x33, 0x34, 0x2f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x62, 0x6c, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x33, 0x35, 0x2f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x69, 0x67, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x33, 0x36, 0x2f, 0x64, 0x6f, 0x6c, 0x6c, 0x61, 0x72, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x33, 0x37, 0x2f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x33, 0x38, 0x2f, 0x61, 0x6d, 0x70, 0x65, 0x72, 0x73, 0x61, 0x6e, 0x64, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x33, 0x39, 0x2f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x34, 0x30, 0x2f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x34, 0x31, 0x2f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x34, 0x32, 0x2f, 0x61, 0x73, 0x74, 0x65, 0x72, 0x69, 0x73, 0x6b, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x34, 0x33, 0x2f, 0x70, 0x6c, 0x75, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x34, 0x34, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x34, 0x35, 0x2f, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x34, 0x36, 0x2f, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x34, 0x37, 0x2f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x34, 0x38, 0x2f, 0x7a, 0x65, 0x72, 0x6f, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x34, 0x39, 0x2f, 0x6f, 0x6e, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x35, 0x30, 0x2f, 0x74, 0x77, 0x6f, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x35, 0x31, 0x2f, 0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x35, 0x32, 0x2f, 0x66, 0x6f, 0x75, 0x72, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x35, 0x33, 0x2f, 0x66, 0x69, 0x76, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x35, 0x34, 0x2f, 0x73, 0x69, 0x78, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x35, 0x35, 0x2f, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x35, 0x36, 0x2f, 0x65, 0x69, 0x67, 0x68, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x35, 0x37, 0x2f, 0x6e, 0x69, 0x6e, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x35, 0x38, 0x2f, 0x63, 0x6f, 0x6c, 0x6f, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x35, 0x39, 0x2f, 0x73, 0x65, 0x6d, 0x69, 0x63, 0x6f, 0x6c, 0x6f, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x36, 0x30, 0x2f, 0x6c, 0x65, 0x73, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x36, 0x31, 0x2f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x36, 0x32, 0x2f, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x36, 0x33, 0x2f, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x36, 0x34, 0x2f, 0x61, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x36, 0x35, 0x2f, 0x41, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x36, 0x36, 0x2f, 0x42, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x36, 0x37, 0x2f, 0x43, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x36, 0x38, 0x2f, 0x44, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x36, 0x39, 0x2f, 0x45, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x37, 0x30, 0x2f, 0x46, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x37, 0x31, 0x2f, 0x47, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x37, 0x32, 0x2f, 0x48, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x37, 0x33, 0x2f, 0x49, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x37, 0x34, 0x2f, 0x4a, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x37, 0x35, 0x2f, 0x4b, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x37, 0x36, 0x2f, 0x4c, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x37, 0x37, 0x2f, 0x4d, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x37, 0x38, 0x2f, 0x4e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x37, 0x39, 0x2f, 0x4f, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x38, 0x30, 0x2f, 0x50, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x38, 0x31, 0x2f, 0x51, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x38, 0x32, 0x2f, 0x52, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x38, 0x33, 0x2f, 0x53, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x38, 0x34, 0x2f, 0x54, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x38, 0x35, 0x2f, 0x55, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x38, 0x36, 0x2f, 0x56, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x38, 0x37, 0x2f, 0x57, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x38, 0x38, 0x2f, 0x58, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x38, 0x39, 0x2f, 0x59, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x39, 0x30, 0x2f, 0x5a, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x39, 0x31, 0x2f, 0x62, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x39, 0x32, 0x2f, 0x62, 0x61, 0x63, 0x6b, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x39, 0x33, 0x2f, 0x62, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x39, 0x34, 0x2f, 0x61, 0x73, 0x63, 0x69, 0x69, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x39, 0x35, 0x2f, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x39, 0x36, 0x2f, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x39, 0x37, 0x2f, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x39, 0x38, 0x2f, 0x62, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x39, 0x39, 0x2f, 0x63, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x30, 0x30, 0x2f, 0x64, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x30, 0x31, 0x2f, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x30, 0x32, 0x2f, 0x66, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x30, 0x33, 0x2f, 0x67, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x30, 0x34, 0x2f, 0x68, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x30, 0x35, 0x2f, 0x69, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x30, 0x36, 0x2f, 0x6a, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x30, 0x37, 0x2f, 0x6b, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x30, 0x38, 0x2f, 0x6c, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x30, 0x39, 0x2f, 0x6d, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x31, 0x30, 0x2f, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x31, 0x31, 0x2f, 0x6f, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x31, 0x32, 0x2f, 0x70, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x31, 0x33, 0x2f, 0x71, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x31, 0x34, 0x2f, 0x72, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x31, 0x35, 0x2f, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x31, 0x36, 0x2f, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x31, 0x37, 0x2f, 0x75, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x31, 0x38, 0x2f, 0x76, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x31, 0x39, 0x2f, 0x77, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x32, 0x30, 0x2f, 0x78, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x32, 0x31, 0x2f, 0x79, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x32, 0x32, 0x2f, 0x7a, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x32, 0x33, 0x2f, 0x62, 0x72, 0x61, 0x63, 0x65, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x32, 0x34, 0x2f, 0x62, 0x61, 0x72, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x32, 0x35, 0x2f, 0x62, 0x72, 0x61, 0x63, 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x32, 0x36, 0x2f, 0x61, 0x73, 0x63, 0x69, 0x69, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x32, 0x37, 0x2f, 0x73, 0x68, 0x61, 0x64, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x32, 0x38, 0x2f, 0x75, 0x6e, 0x69, 0x32, 0x32, 0x32, 0x31, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x32, 0x39, 0x2f, 0x63, 0x68, 0x69, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x33, 0x30, 0x2f, 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x33, 0x31, 0x2f, 0x72, 0x61, 0x64, 0x69, 0x63, 0x61, 0x6c, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x33, 0x32, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x6c, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x33, 0x33, 0x2f, 0x53, 0x69, 0x67, 0x6d, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x33, 0x34, 0x2f, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x32, 0x33, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x33, 0x35, 0x2f, 0x70, 0x69, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x33, 0x36, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x64, 0x69, 0x66, 0x66, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x33, 0x37, 0x2f, 0x6c, 0x65, 0x73, 0x73, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x33, 0x38, 0x2f, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x33, 0x39, 0x2f, 0x67, 0x75, 0x69, 0x6c, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x34, 0x30, 0x2f, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x34, 0x31, 0x2f, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x34, 0x32, 0x2f, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x34, 0x33, 0x2f, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x34, 0x34, 0x2f, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x75, 0x70, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x34, 0x35, 0x2f, 0x67, 0x61, 0x6d, 0x6d, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x34, 0x36, 0x2f, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x34, 0x37, 0x2f, 0x65, 0x70, 0x73, 0x69, 0x6c, 0x6f, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x34, 0x38, 0x2f, 0x65, 0x74, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x34, 0x39, 0x2f, 0x74, 0x68, 0x65, 0x74, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x35, 0x30, 0x2f, 0x6c, 0x61, 0x6d, 0x62, 0x64, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x35, 0x31, 0x2f, 0x72, 0x68, 0x6f, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x35, 0x32, 0x2f, 0x73, 0x69, 0x67, 0x6d, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x35, 0x33, 0x2f, 0x74, 0x61, 0x75, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x35, 0x34, 0x2f, 0x6f, 0x6d, 0x65, 0x67, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x35, 0x35, 0x2f, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x35, 0x36, 0x2f, 0x50, 0x69, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x35, 0x37, 0x2f, 0x4f, 0x6d, 0x65, 0x67, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x35, 0x38, 0x2f, 0x62, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x35, 0x39, 0x2f, 0x69, 0x6e, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x36, 0x30, 0x2f, 0x6e, 0x6f, 0x6e, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x73, 0x70, 0x61, 0x63, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x36, 0x31, 0x2f, 0x65, 0x78, 0x63, 0x6c, 0x61, 0x6d, 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x36, 0x32, 0x2f, 0x63, 0x65, 0x6e, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x36, 0x33, 0x2f, 0x73, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x36, 0x34, 0x2f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x36, 0x35, 0x2f, 0x79, 0x65, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x36, 0x36, 0x2f, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x6e, 0x62, 0x61, 0x72, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x36, 0x37, 0x2f, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x36, 0x38, 0x2f, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x36, 0x39, 0x2f, 0x63, 0x6f, 0x70, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x37, 0x30, 0x2f, 0x6f, 0x72, 0x64, 0x66, 0x65, 0x6d, 0x69, 0x6e, 0x69, 0x6e, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x37, 0x31, 0x2f, 0x67, 0x75, 0x69, 0x6c, 0x6c, 0x65, 0x6d, 0x6f, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x37, 0x32, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, 0x6e, 0x6f, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x37, 0x33, 0x2f, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x41, 0x44, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x37, 0x34, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x65, 0x64, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x37, 0x35, 0x2f, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x37, 0x36, 0x2f, 0x64, 0x65, 0x67, 0x72, 0x65, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x37, 0x37, 0x2f, 0x70, 0x6c, 0x75, 0x73, 0x6d, 0x69, 0x6e, 0x75, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x37, 0x38, 0x2f, 0x74, 0x77, 0x6f, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x72, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x37, 0x39, 0x2f, 0x74, 0x68, 0x72, 0x65, 0x65, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x72, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x38, 0x30, 0x2f, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x38, 0x31, 0x2f, 0x6d, 0x75, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x38, 0x32, 0x2f, 0x70, 0x61, 0x72, 0x61, 0x67, 0x72, 0x61, 0x70, 0x68, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x38, 0x33, 0x2f, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x64, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x38, 0x34, 0x2f, 0x63, 0x65, 0x64, 0x69, 0x6c, 0x6c, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x38, 0x35, 0x2f, 0x6f, 0x6e, 0x65, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x72, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x38, 0x36, 0x2f, 0x6f, 0x72, 0x64, 0x6d, 0x61, 0x73, 0x63, 0x75, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x38, 0x37, 0x2f, 0x67, 0x75, 0x69, 0x6c, 0x6c, 0x65, 0x6d, 0x6f, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x38, 0x38, 0x2f, 0x6f, 0x6e, 0x65, 0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x38, 0x39, 0x2f, 0x6f, 0x6e, 0x65, 0x68, 0x61, 0x6c, 0x66, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x39, 0x30, 0x2f, 0x74, 0x68, 0x72, 0x65, 0x65, 0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x39, 0x31, 0x2f, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x39, 0x32, 0x2f, 0x41, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x39, 0x33, 0x2f, 0x41, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x39, 0x34, 0x2f, 0x41, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x39, 0x35, 0x2f, 0x41, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x39, 0x36, 0x2f, 0x41, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x39, 0x37, 0x2f, 0x41, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x39, 0x38, 0x2f, 0x41, 0x45, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x31, 0x39, 0x39, 0x2f, 0x43, 0x63, 0x65, 0x64, 0x69, 0x6c, 0x6c, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x30, 0x30, 0x2f, 0x45, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x30, 0x31, 0x2f, 0x45, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x30, 0x32, 0x2f, 0x45, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x30, 0x33, 0x2f, 0x45, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x30, 0x34, 0x2f, 0x49, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x30, 0x35, 0x2f, 0x49, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x30, 0x36, 0x2f, 0x49, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x30, 0x37, 0x2f, 0x49, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x30, 0x38, 0x2f, 0x45, 0x74, 0x68, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x30, 0x39, 0x2f, 0x4e, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x31, 0x30, 0x2f, 0x4f, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x31, 0x31, 0x2f, 0x4f, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x31, 0x32, 0x2f, 0x4f, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x31, 0x33, 0x2f, 0x4f, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x31, 0x34, 0x2f, 0x4f, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x31, 0x35, 0x2f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x79, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x31, 0x36, 0x2f, 0x4f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x31, 0x37, 0x2f, 0x55, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x31, 0x38, 0x2f, 0x55, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x31, 0x39, 0x2f, 0x55, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x32, 0x30, 0x2f, 0x55, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x32, 0x31, 0x2f, 0x59, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x32, 0x32, 0x2f, 0x54, 0x68, 0x6f, 0x72, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x32, 0x33, 0x2f, 0x62, 0x65, 0x74, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x32, 0x34, 0x2f, 0x61, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x32, 0x35, 0x2f, 0x61, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x32, 0x36, 0x2f, 0x61, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x32, 0x37, 0x2f, 0x61, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x32, 0x38, 0x2f, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x32, 0x39, 0x2f, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x33, 0x30, 0x2f, 0x61, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x33, 0x31, 0x2f, 0x63, 0x63, 0x65, 0x64, 0x69, 0x6c, 0x6c, 0x61, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x33, 0x32, 0x2f, 0x65, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x33, 0x33, 0x2f, 0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x33, 0x34, 0x2f, 0x65, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x33, 0x35, 0x2f, 0x65, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x33, 0x36, 0x2f, 0x69, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x33, 0x37, 0x2f, 0x69, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x33, 0x38, 0x2f, 0x69, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x33, 0x39, 0x2f, 0x69, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x34, 0x30, 0x2f, 0x65, 0x74, 0x68, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x34, 0x31, 0x2f, 0x6e, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x34, 0x32, 0x2f, 0x6f, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x34, 0x33, 0x2f, 0x6f, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x34, 0x34, 0x2f, 0x6f, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x34, 0x35, 0x2f, 0x6f, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x34, 0x36, 0x2f, 0x6f, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x34, 0x37, 0x2f, 0x64, 0x69, 0x76, 0x69, 0x64, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x34, 0x38, 0x2f, 0x6f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x34, 0x39, 0x2f, 0x75, 0x67, 0x72, 0x61, 0x76, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x35, 0x30, 0x2f, 0x75, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x35, 0x31, 0x2f, 0x75, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x35, 0x32, 0x2f, 0x75, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x35, 0x33, 0x2f, 0x79, 0x61, 0x63, 0x75, 0x74, 0x65, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x35, 0x34, 0x2f, 0x74, 0x68, 0x6f, 0x72, 0x6e, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x64, 0x75, 0x70, 0x20, 0x32, 0x35, 0x35, 0x2f, 0x79, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x20, 0x70, 0x75, 0x74, 0x0a, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x64, 0x65, 0x66, 0x0a, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x64, 0x69, 0x63, 0x74, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x65, 0x65, 0x78, 0x65, 0x63, 0x0a, 0x80, 0x02, 0x88, 0xe1, 0x00, 0x00, 0x74, 0x3f, 0x84, 0x13, 0xf3, 0x63, 0x6c, 0xa8, 0x5a, 0x9f, 0xfe, 0xfb, 0x50, 0xb4, 0xbb, 0x27, 0x30, 0x2a, 0x5d, 0x8f, 0x83, 0x1c, 0x8e, 0x74, 0x03, 0xc0, 0x10, 0x6a, 0x13, 0x2f, 0xf5, 0x9d, 0x98, 0x09, 0x2c, 0x95, 0xdc, 0x41, 0xd4, 0xc9, 0x24, 0x1f, 0x1b, 0xd1, 0x42, 0x71, 0x8d, 0xbf, 0xc7, 0x99, 0x07, 0x62, 0xd5, 0x70, 0x2d, 0xf0, 0xa9, 0xeb, 0x70, 0x21, 0xa4, 0xe2, 0x96, 0x3a, 0x13, 0x09, 0x2e, 0xe8, 0xce, 0x8d, 0x54, 0x20, 0x16, 0x93, 0xd0, 0x23, 0x65, 0x29, 0x0e, 0xaa, 0x96, 0x62, 0x9c, 0x38, 0x7b, 0x0c, 0x4d, 0x1d, 0x8f, 0x02, 0xeb, 0x5e, 0x20, 0x64, 0x99, 0xe0, 0x40, 0x31, 0x88, 0x7f, 0x3d, 0x83, 0x26, 0xe1, 0xd5, 0x2d, 0xe4, 0x89, 0xda, 0xf6, 0x38, 0x5a, 0x0d, 0xf2, 0xc9, 0x4a, 0x15, 0xe4, 0x8c, 0x4f, 0x20, 0xa9, 0xa6, 0xe4, 0x9e, 0xd4, 0x48, 0x89, 0xe5, 0x2c, 0xb5, 0xc4, 0x2b, 0x50, 0x9b, 0x29, 0xa2, 0xe2, 0x1e, 0x2f, 0x65, 0xed, 0xb8, 0x49, 0x6a, 0x92, 0x80, 0x4f, 0x43, 0xe4, 0x5e, 0x2a, 0x5f, 0x7c, 0x70, 0x1d, 0xc5, 0x25, 0x1f, 0x45, 0x7e, 0x33, 0x8e, 0x2c, 0x67, 0xaf, 0xbf, 0xff, 0xc9, 0xf1, 0xdc, 0x88, 0x9e, 0xe3, 0x1b, 0x6a, 0xc7, 0x0d, 0xff, 0x59, 0x76, 0x6b, 0xc9, 0x55, 0xc3, 0x17, 0xa7, 0x9d, 0x28, 0x36, 0x48, 0x84, 0xcb, 0x3b, 0x14, 0x85, 0xa8, 0xcf, 0x42, 0xf0, 0xeb, 0x33, 0xe3, 0xa8, 0x90, 0x26, 0xb9, 0xbb, 0x30, 0x82, 0xa4, 0x35, 0x7f, 0xcc, 0x5b, 0xc2, 0xfd, 0x65, 0xbd, 0x33, 0x12, 0x1b, 0x1c, 0xd5, 0x8c, 0x34, 0x32, 0xdb, 0x8b, 0x63, 0x63, 0x75, 0x9e, 0x7a, 0x68, 0x31, 0xd3, 0x96, 0x3a, 0xc1, 0x76, 0x3b, 0xb0, 0x52, 0x8c, 0x8b, 0x85, 0xac, 0xb8, 0x46, 0x3e, 0xf1, 0xd6, 0x09, 0x94, 0x75, 0x79, 0x3b, 0xee, 0xc8, 0x43, 0x09, 0xf0, 0x9c, 0x04, 0x2b, 0xcb, 0x83, 0x57, 0x42, 0x20, 0xc4, 0x07, 0xf8, 0x19, 0x73, 0x28, 0xb7, 0xc7, 0xef, 0xb2, 0x87, 0x58, 0x97, 0xf1, 0x2e, 0xaa, 0xb7, 0x6d, 0x4e, 0xb0, 0x1a, 0x35, 0xf0, 0x9a, 0x78, 0x58, 0xc6, 0x78, 0x37, 0x3d, 0x9e, 0xab, 0xa1, 0xce, 0x93, 0xbb, 0x4e, 0xba, 0x3a, 0xa8, 0xa7, 0x0d, 0x0f, 0x98, 0xd4, 0xea, 0x11, 0x3f, 0xe3, 0x26, 0xa9, 0x98, 0xbd, 0xd7, 0x49, 0xc5, 0x74, 0xc7, 0xe6, 0x76, 0x98, 0xc8, 0x07, 0x07, 0xab, 0x84, 0xc2, 0xe3, 0x08, 0x38, 0x79, 0x52, 0xea, 0x38, 0x2f, 0x26, 0xb8, 0xe4, 0x03, 0xd4, 0x96, 0xf7, 0x53, 0x81, 0x60, 0xc7, 0xe4, 0xb4, 0xf0, 0xb7, 0x79, 0x1e, 0x85, 0x6b, 0xb3, 0x18, 0xf8, 0x8d, 0x59, 0xb7, 0x7f, 0xcf, 0xb2, 0x73, 0xca, 0x2d, 0x68, 0x94, 0xa4, 0x78, 0x5f, 0xcf, 0xe2, 0xad, 0x7a, 0xbd, 0x1e, 0xa1, 0xda, 0xf7, 0x7a, 0xea, 0xe0, 0x11, 0xd3, 0xf8, 0x7d, 0xf0, 0x35, 0x07, 0x0f, 0x4f, 0x4d, 0x9d, 0xc9, 0xa9, 0x43, 0x28, 0xf3, 0x20, 0x73, 0xb4, 0xf2, 0xac, 0x1c, 0xf4, 0xad, 0xcc, 0x1c, 0xc5, 0x74, 0x45, 0xa7, 0x26, 0xc0, 0xeb, 0x6b, 0x04, 0x9a, 0x63, 0x56, 0xbe, 0x8e, 0xfa, 0xdc, 0xc4, 0x63, 0x41, 0x16, 0xe9, 0xe4, 0x59, 0x61, 0x33, 0xb4, 0xd5, 0x1b, 0xa4, 0x42, 0x18, 0xbb, 0x0b, 0xfa, 0x1c, 0x84, 0x36, 0x99, 0x53, 0xfd, 0x3a, 0xc3, 0xa0, 0xb9, 0xc1, 0xf8, 0x49, 0xb6, 0x57, 0x63, 0xec, 0x9b, 0xaa, 0x6c, 0x71, 0x80, 0x5b, 0x90, 0xf2, 0x08, 0x71, 0xce, 0x13, 0x20, 0x5d, 0x39, 0x45, 0x76, 0x74, 0xb7, 0x10, 0xa0, 0xd5, 0x02, 0x74, 0x69, 0x8f, 0xf9, 0x37, 0x4e, 0xd2, 0x9d, 0x6e, 0x0c, 0x7b, 0xb8, 0xcb, 0xaa, 0x5e, 0x83, 0xfe, 0x36, 0x15, 0x80, 0xdd, 0xfb, 0x5a, 0x57, 0xf1, 0x50, 0x06, 0x2d, 0xb0, 0x9d, 0x6b, 0x89, 0x7a, 0x53, 0x0a, 0x1c, 0xa1, 0x22, 0xba, 0x6b, 0x07, 0xef, 0x55, 0x21, 0x8f, 0xb5, 0x66, 0x56, 0x65, 0xd7, 0xb4, 0x91, 0x14, 0x39, 0x0c, 0x6e, 0x89, 0x99, 0xc1, 0xc1, 0xf2, 0xa6, 0x68, 0x54, 0x1e, 0xe8, 0x66, 0x87, 0x66, 0x8b, 0x29, 0xfc, 0x88, 0x46, 0xc9, 0x88, 0xdb, 0x39, 0x58, 0xa2, 0x18, 0xdd, 0xa6, 0xf2, 0xb5, 0xfd, 0xea, 0x28, 0x20, 0x4f, 0x50, 0x7e, 0x6c, 0x13, 0x7a, 0x45, 0x1f, 0xdb, 0x2f, 0x3b, 0xf9, 0x62, 0xdd, 0xa8, 0x2a, 0x51, 0xe1, 0x5f, 0x64, 0xb1, 0x25, 0xfe, 0xa7, 0x23, 0x81, 0xe2, 0x9f, 0xf5, 0xb5, 0x79, 0x8b, 0x85, 0x1a, 0xac, 0x3d, 0x17, 0x07, 0x3b, 0xd0, 0x0c, 0x6d, 0x14, 0x79, 0xd8, 0x97, 0x6c, 0x79, 0x1c, 0x51, 0xd0, 0x3d, 0x0a, 0xc5, 0x7d, 0x77, 0x84, 0x84, 0x92, 0x98, 0xe7, 0xd6, 0xbd, 0x97, 0x56, 0x26, 0x55, 0x0f, 0x84, 0x11, 0x1d, 0x3b, 0x16, 0x34, 0x5e, 0x2e, 0x69, 0x01, 0xfe, 0x99, 0x7e, 0x83, 0x01, 0xf9, 0x52, 0x66, 0xb8, 0xb0, 0x9d, 0x9a, 0x07, 0x2d, 0x98, 0x24, 0x4f, 0x6c, 0xfb, 0xef, 0xcf, 0x9b, 0x59, 0xe0, 0xf4, 0x3b, 0xbe, 0xe0, 0x0b, 0xb7, 0xd7, 0x2d, 0x21, 0xaf, 0x0c, 0xa2, 0xab, 0xe1, 0x5e, 0x68, 0xa9, 0xa0, 0x51, 0x76, 0xcf, 0x41, 0x11, 0xcb, 0x27, 0xc5, 0x4b, 0xc8, 0xb4, 0xbb, 0xe3, 0x37, 0x4c, 0xec, 0x13, 0x45, 0x39, 0xb1, 0x4a, 0x4b, 0x3c, 0x4e, 0xd8, 0x01, 0xfe, 0x59, 0x67, 0x29, 0xe8, 0x62, 0xae, 0xd4, 0x8b, 0xb0, 0xf5, 0x28, 0x7a, 0xab, 0x77, 0x25, 0xe1, 0x9e, 0x81, 0xe6, 0x6b, 0x03, 0xc9, 0xed, 0x3f, 0x75, 0xa1, 0x1d, 0x1a, 0xa3, 0x8b, 0x25, 0xa3, 0x56, 0x38, 0xba, 0x65, 0x33, 0x14, 0xb7, 0x3e, 0x8d, 0x48, 0x11, 0xa8, 0xfc, 0x92, 0x9a, 0xad, 0x69, 0x11, 0xda, 0xa8, 0x6b, 0x87, 0x2e, 0x52, 0x13, 0xcb, 0xcb, 0x4d, 0xbd, 0x18, 0x38, 0xfb, 0xb1, 0xfb, 0xbf, 0x12, 0x4b, 0xf0, 0xb1, 0x08, 0x91, 0xbc, 0x1f, 0xbf, 0x5e, 0xea, 0xba, 0x4a, 0x0e, 0xc1, 0x07, 0xe9, 0x51, 0x01, 0xdd, 0xda, 0x66, 0x89, 0x15, 0xa9, 0x83, 0xd2, 0x16, 0x78, 0x21, 0xb3, 0x7b, 0x41, 0x46, 0x5d, 0xcb, 0x45, 0xd1, 0xe6, 0xa6, 0x09, 0x4b, 0xaf, 0x8e, 0x88, 0x90, 0xf6, 0xe4, 0x0f, 0xa0, 0x9c, 0x0c, 0xa9, 0x55, 0xf3, 0x11, 0xd6, 0x90, 0x10, 0x53, 0x9f, 0x96, 0xbc, 0xdc, 0xd1, 0xd9, 0x17, 0xcb, 0x49, 0x88, 0xae, 0xae, 0xf7, 0xcb, 0xc6, 0x42, 0xf6, 0xe4, 0x47, 0xc4, 0x1e, 0x6a, 0x4c, 0x98, 0x96, 0xf9, 0x6c, 0x53, 0xde, 0xe4, 0x62, 0xdc, 0x1a, 0x39, 0xed, 0x2f, 0xbd, 0x7d, 0xef, 0x97, 0xf8, 0xb3, 0x2c, 0x53, 0x0c, 0xe7, 0x96, 0xa9, 0x4f, 0x81, 0xc5, 0x06, 0x4f, 0xb2, 0xcf, 0x73, 0xa7, 0xe3, 0xbe, 0x87, 0x39, 0x92, 0xe2, 0xe4, 0xcd, 0x58, 0x70, 0xa1, 0x02, 0xe8, 0x62, 0x30, 0xce, 0x1f, 0x18, 0x89, 0xb1, 0x67, 0xfe, 0x02, 0x14, 0xb6, 0xe6, 0x13, 0x4f, 0x3f, 0xf8, 0xbc, 0x36, 0x59, 0xbe, 0x2f, 0x0a, 0x01, 0x32, 0x6a, 0x91, 0xe3, 0x6a, 0xff, 0xfe, 0xa0, 0x0a, 0xa4, 0x9e, 0x26, 0x92, 0xbd, 0xc1, 0x77, 0x26, 0x4a, 0x1c, 0xb4, 0x88, 0x0d, 0x1b, 0x8b, 0x3b, 0x23, 0x15, 0x04, 0xc3, 0x43, 0xfa, 0x03, 0xdc, 0x7c, 0xa8, 0xec, 0x1c, 0xe8, 0x30, 0xb7, 0x78, 0x2c, 0xe9, 0x87, 0xaf, 0x02, 0x32, 0x49, 0x16, 0xc5, 0xba, 0x19, 0xf0, 0x19, 0x57, 0xa7, 0xa0, 0xe1, 0x34, 0x8c, 0x9a, 0xba, 0x06, 0x26, 0x03, 0x22, 0x6d, 0x80, 0x04, 0x38, 0x0a, 0x57, 0x40, 0x9f, 0x7f, 0xbd, 0x05, 0x7e, 0x6b, 0x75, 0xc3, 0x9a, 0x66, 0x70, 0x35, 0x9f, 0x27, 0xe1, 0x18, 0xe6, 0x73, 0x79, 0x7e, 0xef, 0x86, 0xa0, 0xe7, 0x7e, 0x80, 0x9c, 0x4b, 0xbe, 0xe6, 0xc8, 0x23, 0xdb, 0xa4, 0x89, 0xd7, 0x5f, 0xce, 0xb5, 0x5c, 0xe6, 0xa0, 0x19, 0x1b, 0xe7, 0x45, 0x32, 0xc7, 0x55, 0xdb, 0x61, 0xbb, 0x64, 0xa0, 0x7a, 0x1c, 0x3e, 0xf4, 0x40, 0x47, 0x5e, 0xf5, 0x82, 0x9d, 0xdf, 0xfb, 0x1e, 0x67, 0x64, 0xf2, 0x8c, 0xb8, 0xca, 0x4f, 0xae, 0xdc, 0x8d, 0xb3, 0x06, 0xdb, 0xf4, 0xd2, 0x60, 0x22, 0x22, 0x32, 0x62, 0xc4, 0x93, 0x3c, 0xf1, 0xb2, 0x3b, 0x95, 0x5d, 0xd5, 0x04, 0x0e, 0xfa, 0x62, 0x64, 0xef, 0x52, 0x8d, 0x57, 0xeb, 0xfe, 0x31, 0xd2, 0x22, 0x4e, 0xcd, 0x87, 0x65, 0x51, 0xef, 0x8a, 0x8f, 0xde, 0x70, 0xbd, 0xd5, 0xcd, 0x50, 0xfb, 0x8d, 0x96, 0x82, 0x5d, 0x98, 0xeb, 0x76, 0xa7, 0xed, 0xac, 0x6e, 0x93, 0x53, 0xb0, 0x76, 0xb4, 0x7b, 0x32, 0xd4, 0x92, 0x9b, 0x70, 0x7e, 0xed, 0xd8, 0xfb, 0xd6, 0x6f, 0x40, 0xa6, 0xe1, 0x86, 0xca, 0x7d, 0xed, 0x91, 0x60, 0x5d, 0xbe, 0xbb, 0x39, 0xa4, 0x0b, 0xc7, 0xa6, 0x7a, 0x96, 0x5f, 0x6e, 0x34, 0x10, 0x4a, 0xdd, 0x77, 0x62, 0x85, 0x60, 0xc6, 0xd5, 0x36, 0x7a, 0x0c, 0xb8, 0xba, 0xd7, 0x0c, 0xe8, 0x68, 0x5b, 0x2b, 0x2f, 0x68, 0xe0, 0x54, 0xb7, 0x7d, 0x0d, 0xf5, 0x49, 0x2a, 0xbd, 0x64, 0x10, 0x1e, 0x4c, 0xa4, 0x81, 0x79, 0x80, 0x55, 0x28, 0x8f, 0xec, 0x4a, 0x31, 0x04, 0xeb, 0x12, 0x89, 0x71, 0x2f, 0xb7, 0x4c, 0xe6, 0xc3, 0x7b, 0x21, 0x92, 0x63, 0xc0, 0x97, 0x78, 0xe1, 0x8a, 0x61, 0x9b, 0x1c, 0x43, 0x84, 0x20, 0x60, 0x39, 0xa8, 0xf9, 0x4f, 0x4b, 0xdd, 0xea, 0x98, 0xb1, 0x8b, 0x92, 0xde, 0x33, 0x17, 0x09, 0x52, 0x11, 0x3e, 0xce, 0xae, 0xc0, 0xaa, 0xe1, 0xf2, 0xa9, 0x26, 0x98, 0x6f, 0x00, 0x0b, 0x30, 0x2c, 0xee, 0x07, 0xcf, 0x39, 0x6b, 0xbe, 0xd0, 0xd4, 0xa1, 0x3f, 0xad, 0x3b, 0x7a, 0xed, 0x44, 0x89, 0x30, 0x4f, 0x69, 0x1a, 0xb6, 0x4f, 0x51, 0x86, 0xc2, 0x45, 0x79, 0x64, 0x3e, 0x65, 0xae, 0x69, 0x86, 0x00, 0xa7, 0xa6, 0x69, 0x99, 0xe6, 0x92, 0x41, 0x49, 0x60, 0x92, 0xbd, 0x85, 0x3f, 0xf4, 0x99, 0x08, 0x3e, 0xe4, 0x57, 0xd7, 0xbc, 0x64, 0x52, 0xb1, 0x01, 0x99, 0x21, 0x1e, 0xb1, 0x18, 0x25, 0x62, 0x03, 0x37, 0xaa, 0xbb, 0x28, 0xe9, 0xb3, 0x34, 0xb6, 0x60, 0x1e, 0x91, 0x62, 0x6d, 0x47, 0x6f, 0x09, 0x24, 0xad, 0x18, 0xf7, 0x69, 0x32, 0x92, 0x91, 0x49, 0xf6, 0xe3, 0xf6, 0x97, 0xd4, 0x3f, 0x46, 0x5e, 0x99, 0x2e, 0xe3, 0x60, 0x1a, 0x34, 0x9b, 0x08, 0xd1, 0x78, 0x06, 0xfc, 0x58, 0x0a, 0x0d, 0xdf, 0xc3, 0x44, 0x2c, 0x29, 0x0f, 0xab, 0xbf, 0x0e, 0x28, 0x22, 0x67, 0xca, 0x3d, 0xd4, 0xf3, 0xfb, 0xf8, 0xa1, 0x2f, 0x55, 0x0f, 0x9d, 0xfd, 0x27, 0x9d, 0xdd, 0x28, 0xfd, 0x01, 0x8c, 0x98, 0x6c, 0x6f, 0x16, 0x9b, 0x66, 0x54, 0xbf, 0x77, 0xa7, 0x12, 0xab, 0x53, 0x30, 0xfa, 0x83, 0x42, 0x8f, 0x2d, 0x02, 0x41, 0x6b, 0xca, 0x3d, 0xbf, 0x67, 0x1d, 0x8e, 0x8a, 0xc9, 0x3c, 0x1f, 0x8e, 0x32, 0x3b, 0xa9, 0x19, 0x7f, 0xfe, 0x70, 0x7d, 0xb0, 0x8c, 0x53, 0x4d, 0x96, 0x6d, 0x58, 0x2c, 0xaa, 0x15, 0x01, 0x6f, 0xf5, 0xaf, 0xd6, 0xe5, 0x11, 0x04, 0x91, 0xbd, 0x59, 0x96, 0xd4, 0xc6, 0x14, 0x77, 0xef, 0xbe, 0xa7, 0x13, 0x96, 0xfe, 0x04, 0xc7, 0x2c, 0xff, 0x31, 0x3b, 0xdc, 0x55, 0x41, 0x21, 0x03, 0x2f, 0xa5, 0xcc, 0xed, 0xb8, 0xc1, 0x6b, 0xa6, 0x3f, 0xb9, 0xe4, 0xdb, 0xef, 0x2f, 0xcf, 0x73, 0x32, 0xd0, 0xc6, 0xaf, 0x39, 0x56, 0xa7, 0xb0, 0x96, 0x75, 0xd7, 0xa1, 0x9f, 0x02, 0xf7, 0x6c, 0x36, 0xe5, 0x2d, 0x2b, 0x35, 0xe9, 0x86, 0x58, 0x89, 0x63, 0x08, 0xd1, 0x5f, 0x4a, 0xd3, 0xde, 0xb4, 0x0b, 0xf0, 0xe4, 0x0c, 0x0a, 0x79, 0x86, 0x3e, 0x63, 0x5e, 0x84, 0xcd, 0x26, 0x46, 0xca, 0x10, 0xec, 0xb1, 0x05, 0x43, 0xf5, 0x02, 0x2d, 0x22, 0x03, 0xbe, 0x76, 0xa2, 0xe3, 0xc2, 0x1e, 0xd8, 0x1f, 0x75, 0x75, 0xa6, 0xeb, 0x3e, 0x5d, 0x63, 0x43, 0x51, 0x2f, 0x6a, 0x63, 0x85, 0xa2, 0xd5, 0x6b, 0xf5, 0x55, 0x31, 0x7f, 0x77, 0xff, 0x33, 0xbe, 0x97, 0x9e, 0x81, 0xdd, 0xc6, 0x1d, 0x9a, 0xfc, 0xd0, 0x9a, 0xeb, 0x07, 0x70, 0x0d, 0x37, 0xf5, 0xff, 0x9b, 0x4e, 0x90, 0x25, 0x37, 0xae, 0x63, 0x1f, 0x8b, 0xb7, 0x23, 0x9c, 0xfd, 0xcb, 0x85, 0x05, 0x3b, 0xbc, 0x7a, 0x8e, 0xe8, 0xe2, 0xa2, 0x38, 0x44, 0xc2, 0xdc, 0x51, 0xac, 0x1d, 0xb6, 0xa3, 0x14, 0x9a, 0xc6, 0x26, 0xbe, 0xb7, 0x5a, 0x50, 0x67, 0x8a, 0x63, 0x15, 0x2c, 0x76, 0x17, 0xe4, 0x69, 0x7d, 0x64, 0x51, 0x5d, 0x2b, 0xc3, 0x1a, 0x90, 0x9f, 0x07, 0x10, 0xdf, 0x72, 0xe9, 0x7a, 0xe4, 0x3c, 0xe5, 0x30, 0x3c, 0x2a, 0xb3, 0x44, 0x50, 0xc0, 0x0d, 0x4e, 0x4e, 0x9e, 0x72, 0x9e, 0x6f, 0xc3, 0x04, 0x17, 0x0c, 0xc5, 0x3b, 0x6f, 0xa5, 0x1a, 0xb6, 0xa4, 0xbd, 0x49, 0xd3, 0x9a, 0x36, 0x0c, 0xc9, 0xcf, 0x3b, 0x2b, 0xe0, 0xcc, 0x58, 0x47, 0xfd, 0x65, 0xc8, 0x2a, 0xdd, 0xe6, 0x1c, 0x8e, 0x05, 0xb3, 0x44, 0xaf, 0xb9, 0x22, 0xbf, 0x34, 0x9b, 0x59, 0x62, 0x05, 0xc7, 0x5a, 0xdb, 0x45, 0x88, 0xb8, 0x2b, 0x3a, 0xa4, 0x5d, 0x86, 0x88, 0x96, 0xe7, 0xce, 0x90, 0x07, 0x3e, 0x12, 0x78, 0x57, 0x59, 0x06, 0xed, 0x7b, 0x43, 0xd2, 0xf0, 0xf7, 0x6c, 0xb9, 0x60, 0xf3, 0xd2, 0xd1, 0x08, 0x16, 0xe4, 0x04, 0x72, 0xfd, 0x0e, 0x6e, 0xc9, 0xaa, 0xa9, 0xe1, 0x4a, 0x60, 0x1d, 0xfc, 0x97, 0xfd, 0x6c, 0x13, 0x8e, 0xd0, 0xbc, 0x21, 0x6d, 0xa1, 0x27, 0x83, 0x7f, 0xf0, 0xa8, 0xa6, 0xe3, 0x4b, 0xa9, 0xd4, 0x0d, 0x28, 0x67, 0x0e, 0x6a, 0x59, 0x6e, 0xd8, 0x00, 0x8b, 0xac, 0x4f, 0x08, 0x72, 0xe3, 0x5a, 0x03, 0x37, 0x66, 0x43, 0x15, 0xbe, 0x16, 0xa5, 0x5a, 0xc8, 0x83, 0x94, 0xe6, 0xcd, 0x9f, 0x05, 0xe5, 0xfb, 0xb2, 0x9d, 0x33, 0x3b, 0xa6, 0x1f, 0x16, 0xdb, 0x63, 0x95, 0x3d, 0x5e, 0x6f, 0xf4, 0x13, 0x50, 0xc8, 0x9a, 0xa9, 0xaf, 0x36, 0xf9, 0xc9, 0x37, 0xce, 0x78, 0xaf, 0xe0, 0x14, 0xa8, 0x1f, 0xda, 0x23, 0xd9, 0x82, 0x6c, 0x63, 0x9e, 0xf9, 0xc4, 0x9c, 0x5b, 0xaf, 0xf9, 0x9e, 0xbd, 0xa0, 0x47, 0x92, 0xf3, 0xbd, 0xae, 0x0c, 0x91, 0x32, 0xa7, 0x97, 0x06, 0x80, 0x56, 0x5c, 0x11, 0x23, 0x99, 0x14, 0x8f, 0xf5, 0x23, 0xd6, 0xcb, 0xa7, 0x73, 0x6a, 0xfb, 0x10, 0x85, 0xaf, 0xf2, 0xb5, 0xb4, 0x61, 0x96, 0xa4, 0x8f, 0x57, 0x1f, 0xa3, 0x32, 0x76, 0xfd, 0x0a, 0xb1, 0x04, 0x9d, 0x4d, 0x1a, 0xd5, 0xbe, 0xe1, 0xb0, 0x78, 0x3b, 0x82, 0x6b, 0x6e, 0xbc, 0x7d, 0xc0, 0xe5, 0xbe, 0x9b, 0xcc, 0x11, 0xe2, 0x33, 0x8c, 0xc7, 0x97, 0x13, 0x1b, 0xac, 0x8e, 0x48, 0x03, 0x3b, 0x7e, 0x19, 0x2d, 0x08, 0xb7, 0xeb, 0xa1, 0x37, 0xb7, 0xaf, 0xe1, 0x47, 0x0e, 0xf1, 0x26, 0x11, 0x6f, 0xc6, 0xc0, 0x17, 0x90, 0xcf, 0xa3, 0x16, 0x2f, 0x19, 0xce, 0xcc, 0x82, 0x78, 0x59, 0xa9, 0x58, 0x11, 0x9a, 0x84, 0xe5, 0x6d, 0xb6, 0x90, 0x2e, 0x33, 0x78, 0x6e, 0x90, 0x1f, 0x8f, 0x82, 0x89, 0x6b, 0x9d, 0x26, 0x2e, 0xe5, 0x61, 0x5f, 0xe0, 0xf0, 0x77, 0xdb, 0xeb, 0xf8, 0x31, 0xd5, 0xf3, 0x18, 0xc5, 0xb6, 0xe0, 0x86, 0xc0, 0x52, 0x85, 0x56, 0x41, 0x8f, 0xb6, 0x1f, 0x58, 0x88, 0xa1, 0x24, 0x0c, 0x24, 0x8c, 0x29, 0x8c, 0xa9, 0x08, 0x3e, 0x12, 0x09, 0x0b, 0xc2, 0x3b, 0x28, 0x8b, 0xd6, 0xb7, 0x86, 0x2d, 0x86, 0xf8, 0x0c, 0x21, 0xd6, 0x61, 0xb9, 0xf3, 0x47, 0xb2, 0x2d, 0x36, 0xcf, 0x7e, 0x3c, 0xce, 0xc6, 0x11, 0x04, 0x17, 0x97, 0xca, 0x36, 0x65, 0x32, 0x45, 0xde, 0x30, 0x33, 0x1e, 0x8c, 0x52, 0xed, 0x8e, 0xac, 0x15, 0x14, 0x07, 0xa2, 0xa5, 0x2e, 0xad, 0x6d, 0x0e, 0x16, 0x5e, 0x29, 0xb7, 0x0c, 0xc9, 0x55, 0xaa, 0x11, 0x08, 0x28, 0xd0, 0x8f, 0x95, 0x6b, 0xce, 0x56, 0xbe, 0x26, 0xb5, 0xbb, 0xa7, 0x52, 0x91, 0x71, 0xf9, 0xf6, 0x49, 0xc3, 0x51, 0x25, 0xfe, 0xbb, 0xc7, 0x84, 0xe5, 0x48, 0x5a, 0x1e, 0xca, 0x18, 0x7a, 0xb3, 0xc3, 0x0c, 0xa5, 0xdd, 0x58, 0xe4, 0xf4, 0xdd, 0x31, 0x38, 0x54, 0xfc, 0x26, 0xb9, 0x42, 0x48, 0xc7, 0xba, 0x37, 0x9d, 0x76, 0xd4, 0x32, 0x5c, 0x33, 0xf5, 0x4c, 0x93, 0x75, 0x0e, 0xb4, 0xc5, 0x08, 0x0a, 0x69, 0xb8, 0x1e, 0xee, 0x11, 0x2f, 0x35, 0x5f, 0x27, 0x8b, 0xdf, 0x48, 0x59, 0x52, 0x0d, 0x44, 0x90, 0x55, 0xec, 0x86, 0x7c, 0xe1, 0x94, 0x1f, 0x11, 0x07, 0xae, 0x17, 0x8c, 0xbd, 0x4f, 0xd4, 0xa7, 0x1a, 0x6e, 0x08, 0x93, 0xea, 0x61, 0xdf, 0xc9, 0x57, 0x61, 0x9f, 0x0c, 0x6c, 0x41, 0xa2, 0xd0, 0x7b, 0x56, 0x40, 0x0b, 0xb1, 0xb1, 0x00, 0x13, 0xde, 0x51, 0xaf, 0x36, 0xf6, 0xa5, 0xf1, 0x86, 0x76, 0x38, 0x5c, 0x30, 0x68, 0xe2, 0x50, 0x46, 0xc9, 0x90, 0xae, 0x05, 0xf3, 0xef, 0x55, 0xe3, 0xb6, 0x44, 0xd9, 0xfa, 0x29, 0x35, 0x80, 0x3a, 0x86, 0x24, 0x75, 0x84, 0xbc, 0xf9, 0x3f, 0x23, 0x00, 0x39, 0x2a, 0xe3, 0x40, 0x09, 0x4f, 0xb4, 0xff, 0x13, 0xf3, 0x03, 0x45, 0x8c, 0x30, 0xcc, 0x59, 0xfd, 0xde, 0xd6, 0x69, 0x7d, 0x33, 0xa0, 0xe4, 0x3f, 0xf7, 0x69, 0xf6, 0x92, 0xd8, 0xb7, 0xf6, 0xac, 0xc5, 0x55, 0x26, 0x1f, 0xcb, 0x98, 0x85, 0x7a, 0x6b, 0x69, 0x99, 0x42, 0x91, 0x83, 0x06, 0x38, 0x94, 0x9b, 0xed, 0x42, 0x33, 0x87, 0xda, 0x2d, 0x45, 0x5a, 0x3c, 0x9d, 0x9a, 0x53, 0xf0, 0x29, 0x35, 0xd8, 0xc3, 0xb8, 0xbb, 0xb0, 0x3c, 0xa1, 0x0b, 0x8c, 0x60, 0xe2, 0x65, 0x45, 0x1c, 0x80, 0x4c, 0x60, 0x31, 0xb2, 0x55, 0x89, 0xd9, 0x3c, 0xe3, 0xe8, 0x12, 0x2c, 0x27, 0x87, 0x1e, 0xe7, 0x9f, 0x79, 0x3a, 0xd6, 0xb7, 0xba, 0x08, 0x79, 0x77, 0xe4, 0xa8, 0x2f, 0x67, 0xb8, 0x3d, 0x4b, 0x05, 0x8e, 0x64, 0x7a, 0x65, 0xc4, 0x6e, 0xac, 0x7f, 0x1a, 0x74, 0x55, 0x1b, 0x10, 0x4c, 0x7e, 0xef, 0x05, 0xf0, 0x57, 0x9b, 0x20, 0x3e, 0x07, 0x38, 0x91, 0x2e, 0x10, 0x26, 0xba, 0xc3, 0x24, 0x35, 0x7f, 0x27, 0x9b, 0x86, 0xf6, 0xd5, 0xed, 0x8b, 0xcd, 0x2f, 0x47, 0xb0, 0xdd, 0x75, 0xb9, 0x88, 0x9f, 0x1b, 0x01, 0xb6, 0x11, 0xa5, 0x4b, 0x19, 0xf8, 0x84, 0x71, 0x12, 0xba, 0xc9, 0xd0, 0x8e, 0xf9, 0x9b, 0x4a, 0x1d, 0x9e, 0xcf, 0xfb, 0xad, 0x79, 0x44, 0x1c, 0x1b, 0xc1, 0xbb, 0x5d, 0xab, 0x5e, 0x2f, 0xb1, 0xe6, 0x1c, 0x13, 0xcc, 0x12, 0xdc, 0x7a, 0x75, 0xd9, 0xe2, 0x8f, 0x7e, 0x8d, 0x0a, 0x55, 0x9d, 0x72, 0x47, 0x10, 0x77, 0xd5, 0x28, 0xe9, 0xce, 0x05, 0x6f, 0xb6, 0x05, 0x2a, 0xab, 0x76, 0xe8, 0xaf, 0xc5, 0xa5, 0x26, 0x83, 0x3c, 0xf3, 0x7f, 0x37, 0x0e, 0xc0, 0xbc, 0x0b, 0x09, 0x2b, 0x0d, 0xac, 0xc7, 0xe9, 0xfb, 0x06, 0xcf, 0xfb, 0x57, 0x6c, 0x30, 0xba, 0x5e, 0xd5, 0x57, 0x2d, 0x97, 0x30, 0xa1, 0xd3, 0x15, 0x26, 0xa7, 0x1e, 0xed, 0xa5, 0x48, 0xae, 0x1a, 0xf2, 0xbd, 0xd2, 0xdb, 0x90, 0xbd, 0x0e, 0xfb, 0x71, 0x4e, 0xb0, 0x62, 0xf6, 0x26, 0x36, 0xa5, 0xfc, 0xc4, 0xf8, 0xa7, 0x60, 0x9e, 0x96, 0x49, 0x53, 0x7b, 0x62, 0x0a, 0x5c, 0x9e, 0x25, 0x4d, 0x38, 0x18, 0xeb, 0xf7, 0x8c, 0xef, 0x81, 0x02, 0xd2, 0x1f, 0xa5, 0x71, 0xd5, 0x71, 0xbc, 0x01, 0x48, 0x42, 0x31, 0xfa, 0x02, 0x08, 0x86, 0xc6, 0x0a, 0x4c, 0x4d, 0x25, 0xab, 0x0f, 0xe9, 0x18, 0x2f, 0x26, 0x7f, 0x7e, 0x81, 0x75, 0xcd, 0x93, 0x3b, 0x36, 0xaf, 0x88, 0x2f, 0x64, 0xd6, 0x9c, 0x58, 0x2c, 0x79, 0x4c, 0x4c, 0x74, 0x48, 0x6f, 0x4c, 0xb1, 0x37, 0x28, 0x77, 0xfa, 0xa8, 0xd8, 0xac, 0x5b, 0x3c, 0xb0, 0x33, 0xf9, 0x2f, 0x4c, 0x24, 0xcf, 0xa8, 0x2b, 0xfc, 0x95, 0xfa, 0x54, 0xf8, 0x26, 0x2e, 0xd2, 0x99, 0x95, 0xd4, 0xa4, 0x0c, 0x9e, 0xab, 0x87, 0xe7, 0x34, 0x84, 0x08, 0xb8, 0x0a, 0x29, 0x6d, 0x59, 0xd7, 0x7e, 0x8f, 0xdc, 0x46, 0x8c, 0x38, 0xb7, 0xf6, 0x11, 0x3b, 0x70, 0x58, 0x81, 0xdb, 0x22, 0x48, 0xbb, 0x98, 0xee, 0xc2, 0xa7, 0xa6, 0x12, 0x6e, 0xbe, 0x61, 0x8d, 0x86, 0x13, 0x75, 0xed, 0x41, 0x5a, 0xfb, 0x8d, 0x10, 0xfa, 0x0e, 0x8d, 0x97, 0xcf, 0x9a, 0x30, 0x3f, 0xcd, 0x55, 0x8e, 0x33, 0xc2, 0x43, 0x44, 0xcf, 0x36, 0xac, 0xa3, 0x1f, 0x81, 0x1f, 0x14, 0x72, 0x97, 0x9f, 0xbd, 0x5c, 0xda, 0xb9, 0xac, 0x61, 0x8b, 0x36, 0xb8, 0x17, 0xe2, 0x98, 0x9f, 0xb7, 0xb7, 0x5e, 0x98, 0xa1, 0x9e, 0x0a, 0xf9, 0x16, 0x0e, 0x15, 0xcf, 0xb9, 0x42, 0x56, 0x77, 0x2f, 0x9d, 0x27, 0x08, 0xd4, 0x08, 0xbd, 0x07, 0x6f, 0x65, 0x92, 0x71, 0x5a, 0x17, 0x04, 0x46, 0x9f, 0x06, 0x6c, 0x0d, 0x14, 0x4c, 0x51, 0x06, 0x5b, 0x48, 0x45, 0x7d, 0xb3, 0x96, 0xb7, 0x76, 0x84, 0x59, 0x46, 0x49, 0xb8, 0x17, 0x42, 0x2d, 0x8a, 0x5d, 0x28, 0x5c, 0xd1, 0xa5, 0x6d, 0x8b, 0x32, 0x74, 0x2b, 0x7a, 0x35, 0x0d, 0xeb, 0xf1, 0x1b, 0x4d, 0x38, 0x94, 0x3f, 0x8d, 0x03, 0xa9, 0x9f, 0x9c, 0x7f, 0x2a, 0x08, 0xd9, 0x85, 0x0d, 0xc6, 0xb2, 0x48, 0xd5, 0x5c, 0xf1, 0x8d, 0x0a, 0x9d, 0x7a, 0xbd, 0x27, 0x20, 0xbb, 0x9f, 0x7b, 0xe1, 0x3b, 0x6b, 0x40, 0xc6, 0x7f, 0xbe, 0x70, 0x8e, 0x61, 0xe6, 0x93, 0x2f, 0x84, 0xe7, 0x0f, 0xa9, 0xc3, 0x5f, 0x58, 0x21, 0xa2, 0x5c, 0x0c, 0xc1, 0x7e, 0x76, 0x9f, 0x38, 0x09, 0x9f, 0x9f, 0x11, 0xc0, 0xf1, 0x46, 0x9f, 0x30, 0x70, 0x47, 0x47, 0xf4, 0xd2, 0xe5, 0x25, 0x47, 0xe9, 0x09, 0xae, 0xde, 0x76, 0xcd, 0x09, 0xc4, 0x0c, 0xd8, 0x82, 0xae, 0x71, 0xe1, 0x1f, 0x9b, 0x19, 0xb0, 0xaf, 0xc3, 0x4c, 0xd3, 0xad, 0xdd, 0x7a, 0x69, 0x41, 0xec, 0x1e, 0xa6, 0xf8, 0xba, 0x96, 0xdd, 0x81, 0x5d, 0xe6, 0xc5, 0x33, 0xef, 0xf9, 0x14, 0xe3, 0x75, 0xf5, 0x2e, 0x6e, 0x8a, 0xf7, 0xe0, 0x6f, 0xb8, 0x55, 0x41, 0xc7, 0xa6, 0x9c, 0xd3, 0xe3, 0x92, 0x36, 0x85, 0x17, 0x7a, 0x60, 0xfa, 0xf9, 0xff, 0x35, 0x0f, 0x2d, 0x0d, 0x69, 0xaf, 0x47, 0x79, 0xdf, 0xe3, 0x15, 0x99, 0x87, 0x81, 0xdf, 0xac, 0x0c, 0xde, 0x08, 0x76, 0x1a, 0x89, 0x0b, 0x39, 0x3f, 0xf6, 0xa5, 0x3f, 0x34, 0x06, 0x0d, 0x9d, 0x84, 0x68, 0xdb, 0x7b, 0x84, 0x34, 0x1e, 0x68, 0x2e, 0x91, 0x6b, 0x48, 0x39, 0x08, 0xca, 0x8b, 0xf2, 0xda, 0xd3, 0x61, 0x43, 0x09, 0x35, 0x52, 0xd1, 0x5c, 0x41, 0x9c, 0x8a, 0x91, 0x23, 0xd0, 0xc1, 0x8c, 0xc9, 0x48, 0xf7, 0x7b, 0x41, 0xdf, 0x8b, 0xa7, 0xd1, 0x9e, 0x92, 0x0b, 0xbb, 0xc6, 0xd9, 0x70, 0x19, 0x8c, 0x5c, 0x3a, 0x0d, 0x1d, 0x83, 0x2f, 0xc1, 0x27, 0xe0, 0x1b, 0x9d, 0xc5, 0x40, 0xe4, 0xe0, 0x78, 0x5b, 0x38, 0x15, 0xee, 0x31, 0x07, 0xfb, 0x52, 0x78, 0x43, 0x6d, 0x85, 0x6a, 0x82, 0x74, 0xf2, 0x76, 0x0f, 0xcc, 0x92, 0x0e, 0xf6, 0x00, 0x3b, 0xcb, 0x83, 0x41, 0x60, 0x96, 0xbc, 0x09, 0x40, 0x81, 0xcf, 0x19, 0xdc, 0x0e, 0x5d, 0x04, 0x9a, 0x07, 0xdd, 0x9f, 0xbe, 0x7b, 0x07, 0xca, 0xfa, 0x8a, 0x6b, 0x06, 0xba, 0x2c, 0x0d, 0x73, 0x43, 0x33, 0x4c, 0x79, 0x93, 0x63, 0xe5, 0x78, 0x53, 0xe3, 0xc7, 0xd2, 0x36, 0xb3, 0x36, 0x1e, 0x7b, 0xe3, 0x05, 0xcb, 0x99, 0xd7, 0x2b, 0x56, 0x04, 0xb1, 0x49, 0x8c, 0x3e, 0x78, 0x69, 0x0a, 0x26, 0x86, 0x4d, 0x01, 0x58, 0xdb, 0x54, 0x0b, 0x1f, 0xfd, 0x44, 0x80, 0x2d, 0x60, 0xc7, 0xdb, 0x2c, 0x2c, 0xcb, 0x35, 0xe1, 0x2a, 0x79, 0x6c, 0xee, 0x13, 0xea, 0x94, 0x12, 0x32, 0xef, 0xcf, 0x36, 0x2b, 0x39, 0x4c, 0xa2, 0xaf, 0x02, 0x76, 0x4f, 0x1f, 0x01, 0x9b, 0x11, 0xb2, 0xf0, 0x52, 0x1f, 0xb8, 0x48, 0x5b, 0x04, 0xb1, 0xd9, 0x02, 0x09, 0xd2, 0xf1, 0xac, 0x2b, 0x71, 0x6b, 0xaa, 0x9f, 0xeb, 0x2c, 0x41, 0xee, 0xbf, 0x6c, 0x5f, 0x02, 0xfd, 0xf6, 0x1d, 0x58, 0x60, 0x32, 0xe1, 0x3f, 0x4a, 0x59, 0x7c, 0x26, 0x3a, 0x4d, 0x9e, 0x1b, 0x29, 0x12, 0x7e, 0x3d, 0x5e, 0xdc, 0xb9, 0x34, 0x69, 0x9a, 0xc5, 0xf9, 0xae, 0x18, 0x38, 0x59, 0x1d, 0x97, 0x9b, 0x2a, 0x16, 0xb0, 0xdf, 0xc0, 0x3f, 0x78, 0xd7, 0x0f, 0xa5, 0x18, 0xda, 0xe2, 0x3a, 0x30, 0xdf, 0x76, 0x84, 0xd2, 0x8f, 0xae, 0x71, 0x56, 0x81, 0x32, 0xd7, 0x38, 0x71, 0xcd, 0x95, 0x00, 0x30, 0xff, 0x95, 0x25, 0x79, 0x12, 0xd4, 0x7a, 0x66, 0x78, 0xc6, 0x28, 0xab, 0x34, 0x7b, 0xf5, 0xaf, 0xf2, 0x93, 0x75, 0xe6, 0x9f, 0x63, 0x79, 0xfb, 0xae, 0x57, 0x4e, 0x53, 0x6b, 0x70, 0x67, 0x1e, 0x57, 0xac, 0x5c, 0xbb, 0x48, 0x2a, 0x81, 0x0c, 0x72, 0x16, 0x53, 0xa3, 0x7c, 0x75, 0x70, 0xf0, 0x08, 0x77, 0x89, 0xf6, 0x16, 0x95, 0xd9, 0x69, 0x2d, 0x74, 0x9b, 0xc9, 0x65, 0x25, 0x36, 0x9d, 0xa3, 0x6e, 0x92, 0xbd, 0x43, 0x3e, 0xaf, 0x8d, 0xa4, 0x61, 0x18, 0x95, 0x05, 0xbd, 0x67, 0x1f, 0x7e, 0x38, 0x17, 0x10, 0x6d, 0x31, 0x96, 0x16, 0xcd, 0xc0, 0x07, 0xcc, 0x2b, 0x9e, 0x22, 0x49, 0xb7, 0x12, 0x2d, 0x07, 0xa4, 0xb7, 0x9c, 0xc0, 0x23, 0x8a, 0xf3, 0x30, 0xda, 0xc8, 0x48, 0xed, 0x6e, 0x8b, 0xd7, 0x5f, 0x4a, 0xd8, 0x03, 0x9f, 0x06, 0xbf, 0x98, 0x15, 0xba, 0x49, 0x08, 0x10, 0x17, 0xc5, 0x6e, 0x9b, 0x31, 0x6d, 0xc1, 0xf5, 0x5d, 0x9c, 0xa9, 0xdb, 0xc6, 0x17, 0xd3, 0x94, 0xa8, 0xdd, 0xbf, 0xdd, 0x13, 0x21, 0xb8, 0xa2, 0xb1, 0x46, 0x79, 0xe2, 0x36, 0xf6, 0x67, 0x09, 0x8a, 0x0e, 0x1c, 0x04, 0x9d, 0xfc, 0xc8, 0x82, 0x67, 0xe4, 0x0d, 0x29, 0x82, 0x4c, 0x6a, 0xbc, 0xb5, 0xaf, 0xd8, 0x44, 0x0a, 0xb8, 0xb9, 0x10, 0x15, 0x33, 0x0e, 0x0d, 0xb2, 0x73, 0x8f, 0xc6, 0xee, 0x19, 0x31, 0xe2, 0xaf, 0x26, 0x47, 0x9a, 0x16, 0x05, 0xe0, 0xf8, 0x70, 0xfa, 0x06, 0x4a, 0x4a, 0x3e, 0x1d, 0x6a, 0x62, 0x76, 0x6e, 0x18, 0x64, 0xde, 0x7c, 0x80, 0xad, 0x6d, 0x2c, 0x16, 0xb4, 0x9d, 0xf1, 0x7c, 0xf4, 0x87, 0x60, 0xb5, 0x68, 0x29, 0x54, 0xa5, 0xb0, 0x5d, 0x26, 0x31, 0xe3, 0xb7, 0xf4, 0x33, 0x21, 0x3d, 0x5f, 0x83, 0x32, 0x82, 0x1b, 0x91, 0xa7, 0x5f, 0x88, 0x00, 0x85, 0x2d, 0x4b, 0xe8, 0xbd, 0xd0, 0x55, 0x3a, 0xce, 0xe8, 0x01, 0x54, 0x0c, 0x75, 0x6c, 0xc1, 0xbb, 0xfe, 0xf2, 0xca, 0x10, 0x52, 0xbe, 0x06, 0x6e, 0xc3, 0xa9, 0xd6, 0xab, 0x88, 0x73, 0x77, 0x8e, 0x90, 0x10, 0x0d, 0x42, 0x0f, 0x82, 0x56, 0x70, 0x92, 0x3b, 0x57, 0x76, 0x49, 0x59, 0x96, 0xc1, 0xe7, 0x9b, 0x6e, 0x21, 0x21, 0x27, 0x0b, 0x92, 0xd5, 0x31, 0x90, 0x72, 0x46, 0x8d, 0x2c, 0xe9, 0xf6, 0x67, 0x8b, 0xf0, 0xeb, 0x85, 0xae, 0x5e, 0x22, 0x11, 0xa5, 0x55, 0xbf, 0x85, 0xda, 0xbb, 0x3d, 0x9e, 0xff, 0x99, 0xfd, 0x1e, 0x2e, 0x59, 0x40, 0x1b, 0xe1, 0xf2, 0x9d, 0x07, 0xe2, 0x37, 0x13, 0x42, 0x96, 0xbd, 0xa2, 0x75, 0xea, 0xe8, 0x4a, 0x70, 0x6c, 0xce, 0x3b, 0x18, 0xeb, 0xf4, 0xec, 0xec, 0xf3, 0xc6, 0x09, 0x3c, 0x02, 0x18, 0x4e, 0xc5, 0xe9, 0x22, 0x0a, 0x31, 0x66, 0x76, 0x3a, 0x85, 0x6c, 0x4e, 0x61, 0xec, 0x57, 0xa5, 0xb0, 0xda, 0xb5, 0xc9, 0x3a, 0xb8, 0x11, 0x20, 0x98, 0x58, 0x3a, 0x4c, 0xf1, 0x16, 0x76, 0x03, 0xdb, 0x7a, 0x3b, 0xcc, 0x87, 0x87, 0xf9, 0x11, 0xb1, 0x9f, 0x82, 0xd1, 0xa9, 0x57, 0x76, 0x54, 0x5b, 0xf9, 0x66, 0x2f, 0x21, 0x79, 0xd6, 0xf1, 0x8d, 0x15, 0xe3, 0x1c, 0xb8, 0x4a, 0xc3, 0x45, 0x54, 0x12, 0xbb, 0xce, 0x11, 0x77, 0x24, 0xc8, 0xaa, 0x15, 0x69, 0x16, 0x09, 0xf8, 0x61, 0x34, 0x41, 0x6e, 0x9a, 0x04, 0xb7, 0x5b, 0x91, 0xc3, 0xd0, 0xf9, 0x47, 0xf7, 0x53, 0x8b, 0xba, 0x0c, 0x25, 0x25, 0xbc, 0x4c, 0xbc, 0xb7, 0x99, 0xe5, 0xc5, 0x36, 0x21, 0x71, 0x63, 0xc2, 0xda, 0x82, 0xe0, 0x90, 0xc9, 0xf1, 0xcb, 0xd3, 0xa6, 0x69, 0xbd, 0x77, 0x52, 0x9e, 0xb2, 0xa5, 0x64, 0x99, 0x7d, 0xc5, 0xe5, 0xde, 0xb7, 0x35, 0xaf, 0xe4, 0xd4, 0x12, 0x09, 0xf0, 0x95, 0x80, 0xbd, 0xbf, 0x58, 0x9b, 0x37, 0xde, 0x9f, 0xc1, 0x4a, 0x7b, 0xfe, 0x08, 0x38, 0x16, 0x16, 0x26, 0x55, 0x1c, 0x27, 0x8b, 0x1d, 0xba, 0x00, 0xdf, 0xc4, 0xcb, 0x1e, 0xf6, 0xce, 0xf6, 0x48, 0x63, 0x0b, 0x54, 0x79, 0x0b, 0xfb, 0x41, 0xb6, 0xb0, 0x73, 0xce, 0x58, 0x59, 0xd1, 0xfe, 0xa3, 0xf2, 0xee, 0x3d, 0x28, 0xc8, 0x91, 0x16, 0x1b, 0x50, 0x0a, 0x3b, 0x14, 0xb6, 0x4f, 0x24, 0x18, 0x85, 0x62, 0xcd, 0x22, 0xb3, 0x43, 0xcd, 0xd8, 0x65, 0xf2, 0x41, 0x65, 0xb6, 0x4a, 0x62, 0x09, 0xbc, 0xa4, 0xe4, 0x1e, 0xc9, 0x08, 0x0d, 0x8d, 0x36, 0xea, 0x38, 0x0b, 0xec, 0x15, 0x0a, 0x6b, 0x62, 0x65, 0xd0, 0xd9, 0xa8, 0xbb, 0x68, 0x59, 0xf1, 0xde, 0x87, 0xdf, 0x4d, 0x10, 0xfd, 0x12, 0xaf, 0xc5, 0x54, 0x16, 0x5b, 0xc1, 0x21, 0x73, 0xd5, 0x26, 0x9a, 0x57, 0x14, 0x7d, 0x3b, 0xe3, 0x12, 0x9b, 0x78, 0xe9, 0x8a, 0x52, 0xe8, 0x4a, 0x85, 0xfb, 0x6a, 0x79, 0x0d, 0x16, 0x23, 0xd5, 0x0e, 0xf5, 0x2e, 0x2c, 0xba, 0xdf, 0x72, 0x07, 0x1a, 0xfd, 0xb4, 0x48, 0x6c, 0x90, 0x5c, 0x4e, 0xcf, 0xc3, 0xe6, 0x92, 0x1b, 0x16, 0xbe, 0x95, 0x00, 0x47, 0xc3, 0x31, 0x64, 0xdf, 0x69, 0x83, 0x9e, 0xf4, 0xcc, 0xc9, 0x62, 0xa8, 0x64, 0xf8, 0x91, 0xf0, 0xab, 0x67, 0xf9, 0xcb, 0xcf, 0x5d, 0x31, 0xdb, 0x18, 0x45, 0xc0, 0x0a, 0x84, 0x8c, 0x26, 0x58, 0xb0, 0xaf, 0x79, 0x30, 0xe2, 0x68, 0x1e, 0x0c, 0x0f, 0xdd, 0xdb, 0x03, 0xc7, 0x34, 0x36, 0x15, 0x70, 0xd9, 0x64, 0x8e, 0xc1, 0x3d, 0x9d, 0xc6, 0x3b, 0x67, 0x2f, 0x0f, 0x77, 0x62, 0x7a, 0x9a, 0x9d, 0xb4, 0xd0, 0x83, 0xe9, 0xb7, 0x4d, 0x16, 0x28, 0x2a, 0x75, 0x50, 0x08, 0xb9, 0xa3, 0x08, 0xf3, 0x82, 0x02, 0xbb, 0xbb, 0xef, 0x3b, 0x5e, 0x6c, 0x57, 0xc8, 0xdb, 0x90, 0x99, 0x3a, 0xb3, 0x5f, 0x0d, 0x8f, 0xc1, 0x6c, 0x62, 0x91, 0x93, 0x4a, 0x0a, 0x42, 0xb2, 0xe9, 0x8a, 0x57, 0xf0, 0x3a, 0xd3, 0x2e, 0x7e, 0x21, 0xab, 0x7e, 0x4f, 0x77, 0xd9, 0x61, 0x80, 0x4e, 0x56, 0x95, 0x0e, 0xc2, 0x34, 0xe8, 0x97, 0xe2, 0x5a, 0xc6, 0xcb, 0x2a, 0xd2, 0x9e, 0x35, 0x98, 0x18, 0x04, 0x42, 0x94, 0xd2, 0xc9, 0xf4, 0xc9, 0xc0, 0x89, 0x5c, 0x8b, 0x4f, 0x9d, 0x5d, 0x25, 0x26, 0xb0, 0x4c, 0xe6, 0x34, 0x85, 0x32, 0x55, 0x74, 0x30, 0x3f, 0xba, 0xa7, 0x94, 0x82, 0xa6, 0xfb, 0x6f, 0x9f, 0xdf, 0x81, 0x5f, 0xd4, 0x08, 0x1c, 0xc1, 0x44, 0x87, 0x3c, 0x4f, 0x13, 0x89, 0x99, 0xfe, 0x70, 0x16, 0x8a, 0x8b, 0xfb, 0x6f, 0x25, 0x3c, 0x39, 0xd0, 0x8d, 0x81, 0x37, 0x68, 0x08, 0x0b, 0x78, 0x56, 0xd5, 0xb1, 0x82, 0x2b, 0xb5, 0x71, 0xef, 0xf1, 0x29, 0x2d, 0xf1, 0x5f, 0x15, 0x1e, 0xa7, 0xe9, 0xd2, 0xcc, 0xdf, 0x05, 0xea, 0x7d, 0x8e, 0x65, 0xf0, 0x16, 0xc3, 0xaf, 0x20, 0x64, 0xf3, 0xd6, 0x58, 0x93, 0xe0, 0x12, 0x14, 0xdc, 0xac, 0x61, 0x89, 0xcd, 0xfd, 0x55, 0xa5, 0xe4, 0xf7, 0xea, 0xdd, 0x19, 0x71, 0x00, 0xec, 0x61, 0xef, 0x0b, 0xd7, 0xc6, 0x0d, 0x09, 0x5b, 0x59, 0x2c, 0xc1, 0xca, 0x6f, 0x54, 0x17, 0x74, 0x69, 0x3f, 0xe4, 0xca, 0x9a, 0x02, 0xee, 0x17, 0xa8, 0xde, 0x21, 0xa8, 0xfc, 0xec, 0x4c, 0xd0, 0x6c, 0x92, 0xdb, 0x4f, 0xeb, 0x0f, 0xcb, 0xdf, 0x86, 0x50, 0x71, 0x8b, 0x55, 0x64, 0xc6, 0xf4, 0xc0, 0x2a, 0x8b, 0xeb, 0xdf, 0x7d, 0x02, 0x60, 0x38, 0x6a, 0xce, 0x85, 0x46, 0xee, 0x91, 0xd6, 0x33, 0xa8, 0x50, 0x06, 0x3d, 0x52, 0x69, 0x59, 0x00, 0x43, 0xca, 0x7b, 0x62, 0xa6, 0x21, 0xa0, 0x96, 0xcc, 0x47, 0x20, 0xcd, 0x21, 0xd3, 0x73, 0x9c, 0x2b, 0x54, 0xb0, 0xfb, 0xcc, 0x6d, 0x6d, 0x05, 0xb9, 0x79, 0xa9, 0x32, 0xb9, 0x5e, 0x34, 0x61, 0xcd, 0xe3, 0xb6, 0x1b, 0xd9, 0x62, 0xe4, 0x40, 0xda, 0x30, 0x6c, 0x46, 0x29, 0xcc, 0xc6, 0x45, 0x43, 0x31, 0x9d, 0xa7, 0x9f, 0x06, 0xd1, 0xfe, 0x86, 0x2d, 0x62, 0x86, 0x6f, 0x6f, 0xc1, 0x06, 0x4c, 0x1e, 0xf4, 0x77, 0xf5, 0x16, 0xe6, 0xcb, 0xb9, 0x15, 0x2b, 0xd3, 0x12, 0xc1, 0x28, 0xe0, 0x6d, 0xc0, 0xc5, 0x4b, 0xe6, 0xc2, 0x06, 0x88, 0x5b, 0xb5, 0x30, 0x5a, 0xd1, 0xa0, 0x14, 0x2d, 0xaa, 0x95, 0xb7, 0x3c, 0x69, 0x81, 0x26, 0x58, 0xa9, 0x65, 0xd0, 0x82, 0x6c, 0x5f, 0x17, 0xb5, 0xc2, 0xec, 0xec, 0x9e, 0x43, 0x86, 0xb5, 0x65, 0xa2, 0x5e, 0x08, 0x29, 0xac, 0x36, 0x19, 0xb2, 0x47, 0xbf, 0x31, 0x11, 0x7e, 0x71, 0x28, 0x17, 0xf9, 0x8d, 0x61, 0x09, 0x25, 0x75, 0xff, 0x96, 0xba, 0x89, 0xd0, 0xc4, 0xee, 0xad, 0x88, 0xd7, 0xaf, 0x47, 0x0e, 0x40, 0xf8, 0x7f, 0xf6, 0x8e, 0x20, 0x37, 0x0d, 0xc7, 0x9d, 0x56, 0x0c, 0x8c, 0x24, 0x0d, 0x77, 0x28, 0x8b, 0xb5, 0x37, 0x5f, 0xea, 0xe8, 0xa7, 0x83, 0xb6, 0x7f, 0x80, 0xdc, 0x5b, 0x46, 0x58, 0x3d, 0x39, 0x1a, 0xef, 0x9b, 0x5a, 0xa0, 0xce, 0x21, 0x94, 0xd8, 0x70, 0xeb, 0x97, 0xa3, 0x88, 0x88, 0x51, 0x02, 0xd7, 0xaf, 0x72, 0xd6, 0xae, 0xab, 0x99, 0x05, 0x0c, 0x05, 0xce, 0x33, 0xd2, 0x6e, 0xdb, 0x30, 0x63, 0x77, 0x33, 0x42, 0xa9, 0xb3, 0xeb, 0xb5, 0x4a, 0x33, 0x54, 0x4e, 0xed, 0x0c, 0x94, 0x96, 0xad, 0xbc, 0xc0, 0x10, 0x41, 0x45, 0xcc, 0xc1, 0xdf, 0xeb, 0x3f, 0x10, 0xa4, 0x02, 0x8a, 0x9c, 0xba, 0x77, 0x88, 0x6a, 0xc7, 0x57, 0x2c, 0x28, 0xb6, 0x3a, 0x35, 0x8a, 0x9c, 0x55, 0xd0, 0x0e, 0x2c, 0xc1, 0x26, 0x1b, 0x20, 0x39, 0x7f, 0xef, 0xf9, 0x1f, 0x94, 0x0c, 0xc6, 0x9d, 0xee, 0xce, 0x33, 0x42, 0x62, 0x75, 0x9c, 0x98, 0x67, 0xa2, 0x3f, 0x89, 0x53, 0xc2, 0xef, 0x12, 0xff, 0xf1, 0x90, 0x3f, 0xe0, 0x9c, 0x83, 0x65, 0x75, 0x46, 0x39, 0xfa, 0x71, 0x6c, 0xe4, 0x77, 0xb3, 0x27, 0xd1, 0x38, 0xbc, 0x10, 0x8d, 0x30, 0xf3, 0x49, 0x87, 0xeb, 0xa0, 0xec, 0x7f, 0x61, 0xdd, 0x4d, 0x8a, 0xf9, 0x2a, 0x8b, 0x67, 0xbb, 0x70, 0xab, 0x4b, 0xf2, 0xc5, 0xac, 0x1a, 0xfc, 0x71, 0x02, 0xd4, 0xa9, 0x07, 0x84, 0x02, 0xf5, 0x9f, 0x1a, 0x9e, 0x96, 0xb9, 0xc7, 0xcd, 0x5e, 0x1d, 0x56, 0x3f, 0x8c, 0x61, 0xd6, 0xa4, 0x8d, 0xc5, 0x6c, 0x5e, 0x01, 0x0f, 0x95, 0x9a, 0x36, 0xec, 0x4b, 0x82, 0xfa, 0xe1, 0x14, 0xea, 0x1c, 0x5e, 0xfb, 0x50, 0xd2, 0x3c, 0x4f, 0xb2, 0x59, 0x39, 0xd3, 0x22, 0xa5, 0xf2, 0xde, 0x14, 0xf5, 0xa0, 0xaf, 0x32, 0x29, 0x36, 0x9b, 0x8c, 0x43, 0x22, 0xa2, 0xdd, 0x47, 0xc8, 0x27, 0xc2, 0xf6, 0x29, 0x5f, 0xda, 0xc7, 0xc8, 0xa8, 0x2b, 0x08, 0xb0, 0x36, 0xcb, 0x3a, 0x5d, 0xa5, 0xc4, 0x90, 0xb3, 0xf4, 0xc5, 0x5d, 0x10, 0x8e, 0x78, 0x03, 0x62, 0x1d, 0x29, 0xb3, 0xa2, 0xd4, 0x08, 0x51, 0xa8, 0xf2, 0x83, 0x60, 0x15, 0x42, 0x27, 0xef, 0xda, 0xd6, 0xa8, 0x74, 0x90, 0x81, 0xfc, 0xb4, 0x8b, 0xf8, 0x50, 0x88, 0x04, 0x31, 0x4a, 0x27, 0x43, 0xeb, 0x2b, 0x97, 0x24, 0x45, 0x61, 0xb3, 0x49, 0xe1, 0x35, 0x54, 0xbd, 0x24, 0x25, 0x94, 0x76, 0x72, 0xaf, 0x7c, 0xcb, 0xdc, 0xee, 0x9e, 0xfa, 0x6f, 0x1f, 0x12, 0x20, 0xee, 0xb1, 0xe1, 0xc9, 0x97, 0x43, 0x22, 0x3b, 0xc9, 0x9a, 0x6c, 0x3c, 0x98, 0xce, 0xe4, 0x06, 0x75, 0x98, 0xcf, 0xab, 0x2b, 0x1b, 0xe4, 0x76, 0xf6, 0xd2, 0xb5, 0xc7, 0x4e, 0xde, 0xc6, 0xa7, 0x45, 0x9d, 0x1d, 0xdb, 0x71, 0xb3, 0xe5, 0xbf, 0x43, 0x50, 0xf7, 0x7f, 0xe6, 0x23, 0xb5, 0x89, 0x02, 0x26, 0x51, 0xc9, 0x3c, 0x50, 0xfd, 0x62, 0xf9, 0x98, 0xcd, 0x06, 0x88, 0x72, 0x8f, 0xa0, 0x3e, 0x37, 0x3f, 0x12, 0x39, 0x16, 0x12, 0xb6, 0x3c, 0x68, 0xd3, 0x2f, 0x87, 0x61, 0x35, 0x2f, 0xbe, 0x4e, 0xdb, 0x7e, 0xf2, 0xcd, 0xb9, 0xad, 0x5d, 0xc8, 0xcd, 0xd3, 0x51, 0x95, 0x9d, 0x84, 0x95, 0xfc, 0x50, 0x21, 0xe4, 0x35, 0x01, 0x83, 0xf2, 0xcf, 0x9c, 0x27, 0x3b, 0x26, 0xf6, 0x30, 0x76, 0xcb, 0x44, 0x08, 0x0f, 0x3b, 0x44, 0xf8, 0x30, 0x04, 0xaa, 0x54, 0x59, 0x9d, 0x87, 0x52, 0xc3, 0x70, 0x98, 0x20, 0x0e, 0xe3, 0x70, 0x72, 0x76, 0xee, 0x72, 0x08, 0x1a, 0xa4, 0x0a, 0x57, 0xd1, 0xc7, 0x93, 0xda, 0xd5, 0x5f, 0x51, 0xf5, 0x2c, 0xb2, 0x0c, 0x49, 0x04, 0x03, 0xea, 0x4d, 0x68, 0x61, 0x61, 0x1b, 0xb2, 0x06, 0x5c, 0xfd, 0xf4, 0x2f, 0x2a, 0x0e, 0xb0, 0xdd, 0xaa, 0xd8, 0x66, 0xea, 0xc4, 0xae, 0x69, 0x60, 0x9b, 0xce, 0xc6, 0x31, 0x69, 0xd7, 0x2e, 0x7c, 0x7a, 0x2e, 0xb4, 0x26, 0xff, 0xe0, 0xfe, 0xa2, 0xc7, 0xe7, 0x38, 0x6b, 0x70, 0xcd, 0xf3, 0x80, 0xe7, 0x69, 0xd9, 0xb1, 0xa4, 0x34, 0x97, 0x80, 0xe9, 0x71, 0x7e, 0xcb, 0x42, 0xba, 0x99, 0x87, 0xe1, 0xe8, 0x4f, 0x52, 0x16, 0xd9, 0x8f, 0x89, 0x37, 0xe4, 0xab, 0xf9, 0xe5, 0x12, 0xd0, 0x32, 0x11, 0x5c, 0x81, 0x7d, 0x52, 0x35, 0x90, 0x10, 0xcd, 0x6a, 0x0f, 0x40, 0xd5, 0x16, 0xb5, 0x51, 0xf1, 0xec, 0xf3, 0x5e, 0x26, 0x6d, 0x44, 0x1a, 0x71, 0x9a, 0x00, 0xc7, 0x50, 0xb1, 0x5d, 0xa8, 0x2c, 0x69, 0x3c, 0x7d, 0x0f, 0xcc, 0x66, 0x82, 0x57, 0x3f, 0x7f, 0x77, 0x3d, 0x20, 0xd9, 0xf8, 0xbe, 0xe5, 0x18, 0xf0, 0x6d, 0xcd, 0x8f, 0xed, 0x48, 0xbf, 0xbf, 0xdd, 0x46, 0x89, 0xe7, 0x0d, 0xeb, 0xb8, 0x51, 0xda, 0x1e, 0xdd, 0x0c, 0xa2, 0x38, 0x74, 0x85, 0x06, 0x36, 0x6f, 0x51, 0x6e, 0x91, 0xbf, 0x14, 0x74, 0x63, 0x8e, 0x14, 0x84, 0x21, 0x4c, 0x5c, 0x4f, 0x9c, 0x41, 0x52, 0xed, 0x03, 0xf0, 0x4e, 0x7f, 0x80, 0xb3, 0x40, 0x48, 0x0a, 0xe6, 0x82, 0xcf, 0xe3, 0x3f, 0x2a, 0xb8, 0x85, 0x0f, 0xf2, 0x39, 0x8c, 0x0a, 0xa7, 0xfd, 0x0d, 0xb6, 0x2a, 0xd9, 0xfe, 0xa5, 0x45, 0x28, 0x39, 0xdd, 0xcd, 0x0b, 0xb7, 0xbd, 0xaa, 0x39, 0xa2, 0x25, 0x0d, 0x2f, 0xa4, 0x5b, 0xb3, 0x25, 0xb1, 0xd2, 0xe7, 0xd4, 0xad, 0xb5, 0xcc, 0x3b, 0xfb, 0x1b, 0xf4, 0x42, 0xb9, 0xe1, 0x34, 0x8e, 0x3b, 0xe4, 0x50, 0xbf, 0x43, 0x0f, 0x3c, 0x76, 0x5c, 0xa6, 0x31, 0x08, 0x6c, 0x93, 0xec, 0x81, 0x7c, 0xe7, 0x4b, 0xfc, 0x0c, 0x04, 0xac, 0x57, 0xa9, 0xf7, 0xa9, 0x2c, 0x62, 0x26, 0x68, 0xee, 0xec, 0x62, 0x7a, 0x2a, 0xe6, 0xf5, 0x55, 0xba, 0x97, 0xb4, 0xe5, 0xb0, 0x55, 0xcc, 0xb4, 0xdf, 0xd1, 0x8b, 0x9e, 0x4a, 0x4f, 0x84, 0xc9, 0x64, 0xaf, 0x48, 0x57, 0x99, 0x47, 0xf7, 0x24, 0x23, 0x6d, 0xf4, 0x0b, 0xe7, 0xf7, 0xa3, 0x71, 0x68, 0x8f, 0xf0, 0x9a, 0xba, 0x66, 0x99, 0xed, 0x62, 0x2e, 0xf1, 0x90, 0x74, 0x0f, 0xd0, 0xa0, 0x3e, 0xe5, 0x0e, 0x80, 0x27, 0x0a, 0x72, 0x12, 0x40, 0x84, 0x9a, 0xb7, 0xf4, 0x1c, 0xf9, 0x5f, 0x00, 0x17, 0xc4, 0x7c, 0xb7, 0xf0, 0x80, 0x47, 0xe5, 0x9f, 0xd0, 0x4b, 0xfb, 0x56, 0x9e, 0xa1, 0x0e, 0x45, 0x3e, 0x85, 0xc3, 0x27, 0x17, 0xb3, 0xd0, 0xe2, 0x58, 0xc1, 0x3a, 0x8e, 0x01, 0x50, 0xbc, 0x5b, 0x22, 0xa6, 0x13, 0xf0, 0x60, 0x14, 0x1a, 0x22, 0xe1, 0xd4, 0x9e, 0xad, 0x53, 0x55, 0xe8, 0x95, 0x5c, 0x96, 0xea, 0x66, 0xdf, 0xf0, 0xe0, 0x2f, 0x2d, 0x06, 0x9e, 0x8e, 0xd4, 0x3b, 0x34, 0xdd, 0x35, 0x7a, 0x98, 0x93, 0xb3, 0xfe, 0xed, 0x92, 0x26, 0xba, 0xdc, 0x6d, 0xac, 0xbf, 0x59, 0x3a, 0xbb, 0x8c, 0xab, 0x78, 0xee, 0x50, 0xf7, 0x16, 0x0f, 0x6b, 0xa0, 0x74, 0x23, 0xa4, 0x0b, 0xa6, 0x76, 0x99, 0x63, 0x50, 0x5d, 0xf9, 0xc1, 0x3e, 0xf0, 0x5b, 0x39, 0x6c, 0x1d, 0x7b, 0x8c, 0xb0, 0x8d, 0x35, 0x80, 0xc9, 0x9d, 0x93, 0x6f, 0xbe, 0x4a, 0x3e, 0x31, 0x7b, 0x11, 0x94, 0x20, 0xb8, 0xfd, 0x04, 0x81, 0xe4, 0xa7, 0xc8, 0x1f, 0xba, 0x36, 0x6c, 0x40, 0x55, 0xe0, 0xe0, 0xd2, 0x3c, 0x13, 0xfc, 0xf6, 0x91, 0x23, 0x5b, 0x09, 0x6d, 0x00, 0xae, 0xb4, 0xcf, 0x60, 0x1f, 0x6f, 0xb3, 0x81, 0xbe, 0x35, 0x0e, 0xee, 0x78, 0x61, 0xf0, 0x85, 0xd5, 0xed, 0x73, 0x72, 0xc4, 0x81, 0xa5, 0x30, 0x6d, 0x95, 0xc0, 0xfa, 0x5b, 0xf2, 0xa7, 0x9a, 0x5a, 0xc8, 0xc9, 0xdc, 0xcc, 0xb7, 0x58, 0x0c, 0x2a, 0x92, 0x22, 0x8f, 0xab, 0xa1, 0xe8, 0xbf, 0x2c, 0x3d, 0xab, 0x0b, 0xf0, 0x69, 0xaf, 0x32, 0xf2, 0x74, 0x4e, 0x9b, 0xb9, 0xb0, 0xc8, 0x58, 0xcb, 0xc9, 0x3c, 0x01, 0x59, 0x15, 0x61, 0x8a, 0xec, 0x56, 0xd2, 0x3d, 0xc6, 0x62, 0x07, 0x75, 0x33, 0xed, 0x52, 0x88, 0x14, 0xa7, 0xee, 0xb8, 0x98, 0x62, 0x16, 0x18, 0x5f, 0x47, 0x7b, 0x15, 0x4d, 0x50, 0xcc, 0x20, 0xd9, 0x4e, 0x2c, 0xb4, 0x62, 0x6a, 0x64, 0xe3, 0x63, 0x59, 0xcb, 0x95, 0x66, 0xa7, 0xa6, 0x08, 0xd9, 0x66, 0x3f, 0xec, 0xb0, 0x54, 0xb0, 0xbb, 0x4b, 0x38, 0x35, 0x94, 0xe2, 0xec, 0x06, 0xce, 0xbf, 0x71, 0xd2, 0xe1, 0x1e, 0x1e, 0x3b, 0x34, 0x00, 0x6c, 0x7f, 0x98, 0xc7, 0xc7, 0xb6, 0x08, 0x00, 0xb3, 0x65, 0xc3, 0x23, 0xa4, 0x7a, 0x24, 0x94, 0x32, 0x8f, 0x24, 0xc2, 0xab, 0xff, 0x36, 0xa5, 0x8b, 0x53, 0x3f, 0xd5, 0xf8, 0x93, 0xcd, 0x45, 0xa0, 0x5f, 0x6a, 0xdb, 0xe6, 0x22, 0x38, 0x66, 0x4d, 0x1a, 0xfc, 0x05, 0xce, 0x5e, 0x04, 0x80, 0x75, 0x22, 0x90, 0x77, 0xcb, 0x8c, 0xdd, 0xf1, 0x83, 0x21, 0xa5, 0x86, 0xcf, 0x8c, 0x99, 0x77, 0xcc, 0xb5, 0xe0, 0x21, 0x15, 0x44, 0x6b, 0x70, 0xa3, 0xd7, 0x2a, 0x86, 0x98, 0x7d, 0xb2, 0x79, 0x94, 0x57, 0x51, 0x8b, 0xf0, 0x09, 0x43, 0x5f, 0x84, 0x91, 0x1b, 0x4e, 0xd9, 0xd5, 0x22, 0x1d, 0x01, 0xa9, 0x5d, 0x00, 0x48, 0x0b, 0xb1, 0xbf, 0xfc, 0x9a, 0x2d, 0xf2, 0x6e, 0xd0, 0x22, 0xd9, 0xb4, 0xb3, 0xb8, 0x6a, 0x80, 0x7a, 0x6c, 0x39, 0xbc, 0xb2, 0x94, 0x67, 0xc6, 0x0a, 0xb6, 0xd6, 0xf6, 0x7c, 0x37, 0x5f, 0x43, 0xf4, 0x88, 0x3b, 0xf8, 0x5f, 0xbe, 0x29, 0xa4, 0x41, 0x0d, 0xc0, 0x93, 0x1e, 0x5f, 0x38, 0x6f, 0x6b, 0xc3, 0x3d, 0xd5, 0x68, 0x84, 0xc3, 0xc1, 0x9a, 0xb9, 0xd8, 0x93, 0x39, 0x89, 0x9c, 0x53, 0x74, 0x38, 0x2b, 0x04, 0x83, 0xda, 0xb6, 0x91, 0x8f, 0xd9, 0xca, 0x09, 0x2c, 0x17, 0xd2, 0x18, 0xc6, 0xba, 0x64, 0xa2, 0x56, 0xd0, 0x0a, 0xda, 0x2c, 0x53, 0xcc, 0x0e, 0x13, 0xb5, 0x4e, 0xcb, 0xec, 0x15, 0x85, 0x56, 0x3c, 0xae, 0x1f, 0x5c, 0xe8, 0x7c, 0x31, 0x77, 0x26, 0x18, 0x13, 0xf5, 0xee, 0x04, 0x58, 0x56, 0xdd, 0xb7, 0x76, 0x60, 0xec, 0x0a, 0x69, 0x6e, 0xb1, 0x0f, 0xf8, 0x1d, 0x0b, 0x87, 0x61, 0xd9, 0xac, 0xdd, 0x01, 0x29, 0x02, 0xac, 0xce, 0xbb, 0xec, 0xd9, 0xde, 0xc1, 0x20, 0xef, 0x41, 0xad, 0xdc, 0xbe, 0xc5, 0xd7, 0x12, 0xe1, 0x93, 0xcd, 0x53, 0x28, 0x2a, 0xe0, 0xd6, 0x68, 0x98, 0x4e, 0x1f, 0x61, 0x5f, 0xb9, 0x8a, 0x61, 0x32, 0xfd, 0xf2, 0xfb, 0x9d, 0xb1, 0x7d, 0x7e, 0x7a, 0xbb, 0x88, 0x49, 0xdf, 0x2a, 0xef, 0x61, 0x24, 0xf0, 0x8c, 0x9a, 0x23, 0x45, 0x31, 0xdf, 0xda, 0xea, 0x04, 0xcc, 0x46, 0x88, 0x2a, 0x0a, 0x7f, 0xe4, 0x9b, 0x4a, 0x9d, 0x1a, 0x3c, 0xba, 0x84, 0x33, 0xda, 0xc0, 0xeb, 0xbb, 0x56, 0x17, 0x2c, 0x94, 0xd2, 0x93, 0xed, 0x84, 0x0a, 0xd6, 0x9a, 0xf3, 0x87, 0x78, 0x87, 0x78, 0xc8, 0x79, 0x00, 0x23, 0x95, 0xd6, 0x5b, 0x2f, 0x34, 0x91, 0x17, 0x22, 0xd6, 0x9c, 0x94, 0x4b, 0xaa, 0xfd, 0xd3, 0xd6, 0x45, 0x9b, 0xac, 0x01, 0x8e, 0x61, 0x6c, 0x39, 0x2e, 0xf2, 0x9a, 0xa3, 0xa0, 0x33, 0x01, 0x3f, 0x7d, 0xce, 0x1c, 0x91, 0x7a, 0xea, 0x78, 0xee, 0x71, 0x95, 0xba, 0x4c, 0xad, 0xbe, 0xed, 0xc8, 0xea, 0x14, 0x1f, 0x95, 0x42, 0x57, 0x45, 0x62, 0x52, 0xb0, 0xf9, 0x69, 0x3c, 0x95, 0xed, 0x34, 0x84, 0x36, 0xa0, 0x25, 0xb5, 0x8a, 0x0c, 0x17, 0xe5, 0x02, 0x3e, 0xb2, 0xc1, 0x45, 0x1e, 0x03, 0xdb, 0x64, 0x4f, 0x98, 0xc7, 0xf3, 0x85, 0xcc, 0x57, 0x30, 0x83, 0x8d, 0x6e, 0x79, 0xa3, 0x8e, 0x68, 0x21, 0xe3, 0xa7, 0xf4, 0x75, 0x40, 0x69, 0xa4, 0x41, 0xa1, 0x65, 0x9c, 0x24, 0xa0, 0x80, 0xa0, 0x84, 0x4d, 0xc3, 0x65, 0x4a, 0xa8, 0x03, 0x16, 0x07, 0xdf, 0x98, 0x95, 0x52, 0x7f, 0x26, 0xe4, 0xd5, 0x21, 0x01, 0x6b, 0x7a, 0xd3, 0xc4, 0x00, 0x05, 0x7e, 0xf8, 0x0c, 0x90, 0x77, 0x94, 0x14, 0xcf, 0x55, 0x29, 0x03, 0x89, 0xd3, 0xab, 0xa4, 0x20, 0xe1, 0x59, 0x9a, 0x23, 0xba, 0x87, 0x0b, 0x84, 0x1c, 0xbc, 0xc5, 0xdf, 0x25, 0x03, 0xd3, 0xc0, 0x20, 0x8a, 0xe0, 0xb0, 0xfb, 0xa3, 0xd5, 0x37, 0x65, 0x89, 0x0e, 0x3c, 0x92, 0x8d, 0xe3, 0x74, 0x78, 0x56, 0xf6, 0x52, 0x22, 0xa4, 0x71, 0x02, 0x05, 0x3b, 0xe8, 0x59, 0xfe, 0x7e, 0x67, 0xc1, 0x6f, 0xfa, 0x26, 0x69, 0xc2, 0x2e, 0xcd, 0x7d, 0xc6, 0x82, 0x25, 0x07, 0xea, 0xc7, 0x2a, 0x76, 0x68, 0xad, 0xce, 0xd4, 0x36, 0x18, 0x7e, 0x6d, 0x94, 0xcc, 0xca, 0x7e, 0xe0, 0x2f, 0xe2, 0x09, 0xa5, 0xc5, 0x98, 0xa0, 0x4a, 0x71, 0x12, 0x6a, 0xb7, 0xec, 0xd8, 0x4c, 0xfd, 0xf1, 0x9d, 0x26, 0x24, 0x6c, 0xaf, 0x41, 0x77, 0xb7, 0xff, 0xc1, 0x72, 0x1e, 0x6f, 0xe9, 0x3c, 0xdd, 0x67, 0xd4, 0xdb, 0xce, 0x7a, 0x31, 0xf0, 0x17, 0xeb, 0xd5, 0x7b, 0x9a, 0xc4, 0x02, 0x3c, 0x90, 0x96, 0xab, 0x0e, 0x40, 0x7e, 0xc2, 0x8b, 0xea, 0x06, 0x98, 0x7a, 0x84, 0x85, 0x1b, 0xce, 0xfe, 0xa3, 0x06, 0x29, 0x07, 0x81, 0x17, 0x87, 0x80, 0xde, 0x5a, 0x8e, 0xce, 0x51, 0x2d, 0x50, 0xfa, 0xad, 0xba, 0x4c, 0x72, 0x82, 0x64, 0x0d, 0x35, 0x18, 0xe8, 0x58, 0x2f, 0xe9, 0x63, 0x7f, 0xb6, 0xcb, 0x55, 0xa6, 0xb9, 0x8d, 0xaf, 0xd2, 0xf3, 0x72, 0xcb, 0x40, 0xc9, 0xcc, 0xd3, 0x32, 0xf4, 0x2c, 0x07, 0xec, 0x9a, 0x12, 0x19, 0xf2, 0xf5, 0x4b, 0xdc, 0x5a, 0xc9, 0xdf, 0xa7, 0x38, 0x1c, 0x5f, 0x09, 0x98, 0x93, 0x77, 0x3c, 0x2b, 0xfb, 0x9e, 0xe3, 0x2f, 0x17, 0x13, 0x4a, 0x50, 0xfa, 0x78, 0x86, 0x10, 0xee, 0x01, 0x25, 0x6a, 0xb7, 0xfe, 0xa8, 0x84, 0xdd, 0x5a, 0xcb, 0x2c, 0x90, 0x31, 0xce, 0xa1, 0x02, 0x49, 0x86, 0x8d, 0x46, 0xfd, 0x41, 0x24, 0xd0, 0xbb, 0x0f, 0xd8, 0x51, 0xe8, 0xb2, 0x24, 0x62, 0xba, 0x47, 0x0b, 0x1a, 0xe1, 0x72, 0xb5, 0x38, 0x57, 0x46, 0x09, 0xc2, 0x7b, 0x61, 0xc6, 0x86, 0x0f, 0x45, 0xa7, 0xb9, 0x56, 0xb9, 0xc9, 0xa2, 0xe6, 0x89, 0x8f, 0xff, 0xe3, 0x92, 0x9b, 0x63, 0x9d, 0x87, 0x3a, 0xf6, 0x59, 0xd7, 0x9e, 0x70, 0x0a, 0xa5, 0x28, 0x5e, 0xcd, 0xc2, 0xe6, 0x35, 0xb9, 0x65, 0x61, 0xc6, 0xd7, 0xe9, 0x03, 0xe5, 0x49, 0x4f, 0x92, 0x9b, 0xa0, 0x18, 0x17, 0x82, 0x03, 0x24, 0x62, 0xdd, 0xe6, 0xf5, 0x14, 0x06, 0x43, 0x56, 0xa1, 0x2f, 0xe3, 0xc7, 0xb7, 0xcf, 0x63, 0x57, 0xcc, 0xab, 0xf9, 0x22, 0x03, 0xd3, 0x34, 0xe7, 0x95, 0xef, 0xa2, 0xb4, 0x48, 0x05, 0x54, 0x2f, 0x97, 0x95, 0x86, 0x98, 0x90, 0x92, 0x34, 0x39, 0xd7, 0xb6, 0xf7, 0x4c, 0x23, 0xdc, 0xf1, 0x39, 0xeb, 0x16, 0x47, 0xae, 0x74, 0xe7, 0xbc, 0x29, 0x90, 0xbc, 0xd6, 0x13, 0x4f, 0x59, 0xb9, 0x50, 0x38, 0x32, 0xa8, 0x90, 0xa7, 0x9a, 0x54, 0x6a, 0x21, 0x2d, 0xb6, 0x0d, 0x52, 0x45, 0x06, 0xc0, 0x24, 0xae, 0xbc, 0xf3, 0x8c, 0xc4, 0x9e, 0x38, 0x33, 0x39, 0xe9, 0x19, 0xdd, 0xaf, 0x44, 0x49, 0x46, 0x6d, 0xb0, 0x91, 0x68, 0x32, 0xef, 0x65, 0xb3, 0x09, 0xa1, 0x93, 0x7e, 0x5d, 0xc6, 0xd2, 0x0e, 0x02, 0xa9, 0x23, 0x8a, 0xec, 0xae, 0x0e, 0xed, 0xe6, 0x61, 0x61, 0x0a, 0x73, 0x77, 0x79, 0xee, 0xdf, 0x7f, 0x7c, 0xef, 0x73, 0x26, 0xb0, 0xc6, 0xe8, 0x14, 0x65, 0x6c, 0xff, 0xdf, 0x94, 0xbd, 0xec, 0x87, 0xbb, 0x96, 0xd4, 0xec, 0xb1, 0x70, 0x9f, 0x40, 0x91, 0x37, 0x1b, 0xa3, 0x51, 0x7b, 0x92, 0x6c, 0x74, 0x46, 0x73, 0x59, 0xd0, 0x73, 0xc1, 0x75, 0xd6, 0x94, 0x64, 0xd6, 0xb3, 0x13, 0x9a, 0x50, 0x03, 0xf0, 0x3c, 0x91, 0x6f, 0x0d, 0x00, 0xdd, 0x23, 0xec, 0xeb, 0xb8, 0x15, 0x2b, 0x90, 0x43, 0xd3, 0x65, 0x22, 0xc2, 0xa2, 0x06, 0x17, 0xef, 0xf4, 0x9a, 0x20, 0xc5, 0x27, 0x53, 0xec, 0xc5, 0xfd, 0xa3, 0xc1, 0x0b, 0x72, 0x52, 0x97, 0x06, 0x9e, 0xd7, 0x36, 0xd9, 0xa4, 0x51, 0x93, 0xbc, 0x13, 0x45, 0x6d, 0xc2, 0x69, 0x9a, 0x56, 0xaf, 0x44, 0x91, 0xb6, 0xc4, 0xdb, 0x37, 0x76, 0x9b, 0xb4, 0xb7, 0x72, 0xe0, 0x78, 0xbd, 0x26, 0x70, 0xaa, 0xbc, 0x28, 0xc7, 0x3b, 0x9d, 0x0e, 0x3d, 0x77, 0xbf, 0x56, 0xce, 0x50, 0x03, 0x03, 0xe1, 0x2a, 0x80, 0x18, 0xa4, 0x74, 0x33, 0x87, 0xf4, 0x06, 0x76, 0x79, 0x51, 0x6f, 0x03, 0x19, 0xbd, 0xf7, 0xa0, 0x32, 0xd4, 0xdb, 0xec, 0xf6, 0x21, 0xe9, 0x70, 0x3f, 0x8a, 0x04, 0x9f, 0x05, 0x7f, 0x11, 0xea, 0x42, 0xc1, 0xff, 0xdf, 0x3b, 0xf8, 0x95, 0x8c, 0x08, 0x1a, 0xf7, 0xaa, 0x40, 0xe7, 0x7a, 0x89, 0x95, 0x74, 0x29, 0xd4, 0xd1, 0x2f, 0xa2, 0x17, 0x29, 0xfa, 0x51, 0xf6, 0xb6, 0x8d, 0x4b, 0x67, 0x2d, 0xb7, 0x73, 0x61, 0xec, 0xd8, 0x3d, 0xfb, 0x6c, 0x40, 0x28, 0xea, 0xa7, 0x25, 0x02, 0xa2, 0xe5, 0xd6, 0xba, 0xac, 0xa2, 0x6f, 0xfa, 0x9f, 0x87, 0x50, 0x20, 0x23, 0x18, 0x96, 0xf5, 0x8c, 0x95, 0x91, 0x7f, 0x6e, 0x49, 0x8b, 0xf1, 0xd7, 0xe4, 0x4d, 0xeb, 0xa2, 0xe0, 0x95, 0x4f, 0x9f, 0xdd, 0x54, 0xb9, 0x12, 0x5c, 0x87, 0x35, 0xe0, 0xa7, 0x91, 0x9f, 0x49, 0x34, 0x35, 0xf5, 0x2a, 0xc6, 0xa7, 0xad, 0xfd, 0x4d, 0xf6, 0xfd, 0x3f, 0xad, 0xc7, 0x74, 0x21, 0xf6, 0xa8, 0x2c, 0xa1, 0xe7, 0x1c, 0x39, 0x93, 0x5f, 0x10, 0xc1, 0xff, 0xd4, 0xb7, 0xa5, 0x85, 0x4c, 0x2a, 0x99, 0x03, 0xe9, 0x8c, 0x37, 0x7f, 0xd4, 0x03, 0xd6, 0x12, 0xf7, 0xec, 0xb1, 0x6b, 0xd7, 0x98, 0xc4, 0xf7, 0xe5, 0x96, 0xda, 0x5b, 0x06, 0x27, 0x26, 0x59, 0xe5, 0x6d, 0x4e, 0x62, 0x8c, 0x0e, 0x13, 0x70, 0x7e, 0x95, 0x83, 0x9a, 0x20, 0x06, 0xde, 0xca, 0x4e, 0x41, 0xcd, 0xf5, 0xe6, 0x33, 0xca, 0x0f, 0x27, 0x84, 0xfb, 0xfa, 0x76, 0x71, 0xce, 0x9c, 0xb9, 0x19, 0xe2, 0x88, 0x36, 0x5b, 0xa5, 0xb5, 0xe2, 0x5e, 0x19, 0x12, 0x01, 0xa5, 0x04, 0x99, 0xfa, 0x9c, 0x6f, 0x9e, 0x34, 0x4f, 0xc0, 0x34, 0x71, 0x44, 0x36, 0x57, 0xbb, 0x4d, 0xc8, 0x84, 0x35, 0xf0, 0x47, 0x30, 0x0d, 0x60, 0x74, 0x77, 0x18, 0xf1, 0xf7, 0xab, 0xc1, 0x19, 0x88, 0x38, 0xfa, 0x64, 0xcd, 0xe5, 0x8e, 0x9d, 0x4b, 0x70, 0x71, 0x68, 0xae, 0x61, 0xb7, 0x0b, 0x4a, 0xf1, 0x3e, 0x23, 0x64, 0x97, 0xb4, 0x81, 0x33, 0x88, 0xe2, 0x08, 0xdf, 0xa1, 0x85, 0x09, 0x14, 0xf7, 0xb8, 0x65, 0x1f, 0x7e, 0x90, 0xdd, 0xf5, 0xd3, 0xd5, 0x27, 0x80, 0x69, 0x67, 0xcc, 0x97, 0xb5, 0x44, 0x7b, 0x22, 0x88, 0xc0, 0xcd, 0x07, 0x30, 0xa9, 0xb8, 0x69, 0x56, 0x7b, 0x7e, 0x0d, 0xac, 0xc8, 0x92, 0x48, 0x4d, 0x21, 0xe7, 0x76, 0xa9, 0xdd, 0x42, 0x88, 0x30, 0x3f, 0xdb, 0x47, 0x0e, 0x72, 0x09, 0xff, 0xae, 0x6c, 0x1b, 0xa3, 0x34, 0x02, 0xda, 0xc7, 0x4a, 0xe8, 0xf7, 0x72, 0xcb, 0x5c, 0x66, 0x46, 0xc3, 0x43, 0x3d, 0xd3, 0xee, 0x2e, 0x03, 0x5f, 0xc7, 0x77, 0x2a, 0x5d, 0x49, 0x21, 0xe5, 0x13, 0xab, 0x80, 0x22, 0x73, 0xce, 0x54, 0x67, 0x6c, 0xbd, 0xcf, 0x5a, 0x96, 0xfa, 0x32, 0x15, 0xda, 0x3f, 0x1d, 0xae, 0x29, 0xa7, 0xe6, 0x76, 0x94, 0x9f, 0x58, 0x3b, 0x1c, 0x35, 0x7e, 0xc9, 0xd2, 0x7b, 0x3a, 0x42, 0x62, 0x1d, 0x22, 0xbb, 0x80, 0x0a, 0x96, 0xb2, 0x72, 0x29, 0x61, 0xaf, 0x51, 0x24, 0xb3, 0xb9, 0xab, 0x0a, 0x69, 0x07, 0x3f, 0x55, 0x6f, 0x7f, 0x42, 0xe1, 0x0f, 0xa2, 0xe9, 0x08, 0x13, 0xde, 0x9e, 0x26, 0xe1, 0xe3, 0xd9, 0x0f, 0x5b, 0xa2, 0x6a, 0xcb, 0x9b, 0xcb, 0x81, 0x47, 0xb2, 0xd1, 0x45, 0x39, 0x36, 0x86, 0xe9, 0x9a, 0x1d, 0xbd, 0xa6, 0x45, 0xec, 0xba, 0xee, 0x63, 0x01, 0x3e, 0xb5, 0xf7, 0x3c, 0xdc, 0x43, 0x32, 0x53, 0xc1, 0x09, 0x2e, 0x75, 0xae, 0xc0, 0xd0, 0x03, 0xd7, 0x17, 0x8e, 0x73, 0x7c, 0x23, 0x10, 0x92, 0x70, 0x49, 0x9a, 0x2c, 0x30, 0xa8, 0x5e, 0xd6, 0x98, 0xe3, 0x2b, 0x2a, 0xee, 0xbe, 0x99, 0x38, 0x20, 0xca, 0x5b, 0x80, 0xc3, 0xa3, 0x89, 0xf9, 0x62, 0x66, 0x11, 0xa9, 0x0e, 0x62, 0x3a, 0x44, 0x88, 0xd3, 0x74, 0xd9, 0xae, 0xd7, 0xf0, 0xa8, 0x5a, 0x6d, 0x7a, 0xf1, 0xd4, 0x98, 0x02, 0x24, 0xfc, 0x37, 0x5c, 0xbf, 0xad, 0x51, 0x08, 0xfb, 0x2c, 0x6d, 0xe7, 0x4e, 0xb5, 0x38, 0x35, 0xca, 0x1b, 0x05, 0x96, 0xd4, 0x1d, 0xf8, 0x13, 0x04, 0x8c, 0x68, 0x59, 0x5e, 0x32, 0xff, 0x2d, 0xc7, 0x37, 0x30, 0x84, 0x14, 0x16, 0x6a, 0x37, 0xa5, 0x2b, 0xb9, 0x69, 0x26, 0xba, 0xdf, 0xa2, 0x3f, 0x44, 0x23, 0x38, 0x1e, 0x32, 0xff, 0x0b, 0x62, 0x58, 0xbb, 0x43, 0x9d, 0x72, 0xa5, 0x7b, 0xd4, 0x63, 0x7d, 0xa2, 0x9a, 0xea, 0x44, 0xa0, 0xc2, 0x7a, 0x85, 0xb5, 0x2e, 0x66, 0x8c, 0x34, 0x03, 0xa4, 0x16, 0x07, 0x80, 0x48, 0xbe, 0x0d, 0x3b, 0xae, 0x2f, 0xa6, 0x1f, 0x3a, 0x69, 0xb0, 0x1d, 0xdb, 0xd9, 0x4c, 0x1a, 0xf3, 0x4e, 0x8a, 0x85, 0xd3, 0x17, 0x48, 0xc3, 0xd0, 0xc4, 0x8b, 0xbd, 0x7b, 0x59, 0x29, 0x05, 0xbc, 0xf7, 0xf8, 0x95, 0x77, 0x24, 0x02, 0x81, 0x97, 0x01, 0x25, 0x34, 0xc8, 0x9c, 0x25, 0x5d, 0x7a, 0x6e, 0xd5, 0x45, 0x06, 0xfb, 0x14, 0x7e, 0xf3, 0xcf, 0xbb, 0x17, 0xce, 0x5c, 0x03, 0x42, 0xd1, 0x0c, 0x84, 0xf4, 0xa4, 0xe1, 0xca, 0x20, 0x9d, 0x6d, 0xe2, 0xfa, 0xdc, 0x06, 0xf3, 0xcf, 0x9f, 0x33, 0xa6, 0x0a, 0x44, 0xfa, 0x85, 0x2f, 0x66, 0xe3, 0x29, 0x2f, 0x07, 0x99, 0x2a, 0xd8, 0xef, 0x2e, 0x3e, 0x92, 0x3c, 0x69, 0x6d, 0xf6, 0x84, 0x55, 0xee, 0x29, 0xc8, 0x27, 0x35, 0x29, 0x36, 0x6a, 0x75, 0x39, 0xb0, 0xfb, 0x10, 0xf8, 0xd4, 0xd2, 0x02, 0x2b, 0xde, 0x54, 0xb0, 0x9b, 0xe6, 0x52, 0xe0, 0xae, 0xe2, 0xda, 0x8e, 0x59, 0x00, 0xc8, 0xb4, 0x2d, 0x3f, 0xe0, 0xb0, 0x90, 0x5d, 0x1c, 0x3e, 0x31, 0x3f, 0xda, 0x4e, 0xcf, 0x57, 0x1c, 0xe6, 0x35, 0x83, 0xc2, 0xe2, 0x8b, 0xc5, 0xc9, 0x55, 0xf6, 0xa4, 0x9b, 0x24, 0x3a, 0xc3, 0x80, 0x4e, 0xe3, 0x68, 0xcd, 0x15, 0x0f, 0x6d, 0x34, 0x1b, 0x24, 0xfc, 0x1a, 0x5a, 0x24, 0xea, 0x79, 0x81, 0x06, 0xe7, 0x4c, 0x99, 0xd3, 0xdd, 0x6b, 0xc4, 0xc2, 0xd7, 0x8d, 0x82, 0x97, 0xda, 0x3f, 0xc7, 0x5f, 0xbb, 0x8b, 0x2f, 0x7a, 0x1b, 0x0d, 0xfb, 0x88, 0xc3, 0x3c, 0x06, 0xed, 0x38, 0x84, 0x9a, 0x2b, 0x65, 0x4b, 0x84, 0xbc, 0xaa, 0x06, 0xb6, 0xfe, 0x35, 0x6c, 0xcb, 0xe2, 0x5d, 0x85, 0x17, 0xcd, 0x69, 0x82, 0xbb, 0xc9, 0x3e, 0xe2, 0x87, 0xc5, 0xa7, 0x45, 0xea, 0xcf, 0x24, 0xb6, 0x0b, 0x75, 0x5b, 0xa4, 0x0c, 0xdb, 0x39, 0x1d, 0x1c, 0x58, 0xfe, 0x19, 0x9e, 0xff, 0xc5, 0x67, 0x15, 0x43, 0x9d, 0xba, 0x43, 0xa0, 0xe5, 0xff, 0xf2, 0xf9, 0xae, 0xbe, 0xf3, 0x22, 0x64, 0x8f, 0x56, 0xea, 0x12, 0xf7, 0x98, 0x02, 0x42, 0x06, 0x73, 0xfb, 0xcd, 0xe9, 0xa0, 0x6e, 0x86, 0xdf, 0x8e, 0x0f, 0xc5, 0x70, 0x53, 0x57, 0x55, 0xe3, 0x31, 0x97, 0x56, 0xe1, 0x4c, 0x20, 0xf7, 0xe9, 0x30, 0x74, 0x5d, 0xb4, 0xc0, 0x62, 0x13, 0xdc, 0x51, 0x07, 0x79, 0x9c, 0x2c, 0x84, 0xc4, 0x49, 0x18, 0x65, 0x2f, 0xe9, 0x11, 0x6a, 0xc8, 0x5e, 0x0c, 0xf9, 0x6a, 0x36, 0x91, 0xac, 0xf5, 0xc4, 0x47, 0x1a, 0x26, 0x2c, 0x99, 0x74, 0x82, 0xbf, 0xef, 0x07, 0xa1, 0xe8, 0xe0, 0xc3, 0x45, 0xeb, 0x8d, 0x20, 0x40, 0xab, 0x79, 0x56, 0xdd, 0x0c, 0x66, 0x58, 0xfc, 0x3b, 0x98, 0x7b, 0xdf, 0x86, 0xf7, 0x7e, 0xc9, 0x1a, 0x6f, 0x5d, 0x3b, 0x6f, 0x1b, 0x6c, 0xac, 0x02, 0x2a, 0x2b, 0xd3, 0xa8, 0x4c, 0x1a, 0x66, 0x3b, 0xbf, 0x1f, 0x28, 0xd0, 0x95, 0x96, 0x8c, 0x52, 0xde, 0x63, 0x89, 0x2b, 0x0c, 0xb2, 0x88, 0x69, 0x79, 0x3d, 0xa4, 0x82, 0x46, 0x10, 0xc8, 0xa3, 0x9d, 0x93, 0x96, 0xed, 0x8d, 0x07, 0x36, 0xd2, 0x22, 0x89, 0x6b, 0xcf, 0xaf, 0x5e, 0xb2, 0xbc, 0x14, 0x5f, 0x3a, 0x02, 0x89, 0x61, 0x7c, 0x06, 0x57, 0xef, 0x89, 0x54, 0xfb, 0xd0, 0x2c, 0xe8, 0xa4, 0xfa, 0xe3, 0x5d, 0x10, 0x66, 0x4f, 0x60, 0x28, 0x6d, 0x3f, 0xb1, 0x86, 0x9e, 0x5b, 0xd0, 0x54, 0xac, 0x09, 0x98, 0x22, 0x7e, 0x8f, 0xc2, 0xb8, 0x70, 0x72, 0x4b, 0x30, 0xec, 0x23, 0xe8, 0x22, 0x28, 0x05, 0xe8, 0x36, 0x64, 0xaf, 0x20, 0xae, 0x6e, 0x5a, 0xf1, 0xaf, 0x0f, 0x1f, 0x26, 0x17, 0xe2, 0xe6, 0x62, 0xe1, 0x51, 0x1c, 0x92, 0x4f, 0xa7, 0x6b, 0x3c, 0xae, 0x4f, 0xd8, 0x77, 0xa7, 0x48, 0x4c, 0xc6, 0xc2, 0x37, 0x2f, 0x07, 0xb1, 0x0f, 0x43, 0xf7, 0x8c, 0xdf, 0xc4, 0x29, 0x50, 0x47, 0xe2, 0xc2, 0x06, 0xc2, 0x7f, 0x57, 0x71, 0xae, 0xd1, 0x87, 0x6f, 0x20, 0xfa, 0x15, 0x34, 0x51, 0x3c, 0x19, 0x49, 0x39, 0x7f, 0x0a, 0xb5, 0x3e, 0x9b, 0x75, 0xb6, 0xc6, 0x23, 0xdd, 0xc0, 0xe2, 0x1d, 0x2a, 0x1d, 0x79, 0x86, 0x53, 0xcf, 0x98, 0x3e, 0x34, 0xe1, 0x65, 0x5a, 0x5b, 0x5b, 0xe8, 0x2a, 0xcb, 0x7c, 0x1c, 0x8c, 0x85, 0x8b, 0x2c, 0xd5, 0x3c, 0xc3, 0x99, 0xe6, 0x6a, 0x15, 0x56, 0x9c, 0xec, 0xd5, 0x43, 0x20, 0x7e, 0x8b, 0x55, 0x0f, 0x4c, 0x9e, 0x7c, 0xa5, 0xb7, 0xa0, 0x4b, 0x57, 0xf2, 0x47, 0x1d, 0x31, 0xf9, 0x9b, 0x0e, 0xf5, 0x4a, 0xe6, 0x68, 0x6e, 0xbb, 0xb9, 0x49, 0x4d, 0xcb, 0x80, 0xa2, 0xd1, 0x64, 0x80, 0xa5, 0x42, 0xe3, 0xed, 0x29, 0x72, 0x76, 0xc7, 0xca, 0x69, 0x4c, 0x80, 0x29, 0x66, 0xa7, 0xe1, 0x5e, 0x01, 0xa1, 0xb7, 0xdd, 0xd3, 0x7f, 0xbc, 0xfc, 0x9e, 0xa8, 0x09, 0x51, 0xe4, 0x92, 0x0a, 0xa6, 0x8f, 0xf6, 0x68, 0xd3, 0x9e, 0x50, 0xcd, 0x9f, 0x54, 0x24, 0x9d, 0x41, 0xb5, 0x47, 0x3d, 0xbd, 0x7c, 0x29, 0x74, 0x8d, 0xba, 0xb6, 0x89, 0x4c, 0xc1, 0x04, 0x63, 0xef, 0x9f, 0x37, 0x0b, 0x51, 0xb3, 0x54, 0x93, 0x30, 0xe4, 0x66, 0x51, 0xe3, 0x6e, 0x61, 0xb0, 0x10, 0xb9, 0x2e, 0x85, 0xd8, 0x26, 0x80, 0x8f, 0xa8, 0xc5, 0x2a, 0x89, 0x54, 0x08, 0xd9, 0x5d, 0x29, 0x1b, 0xcd, 0x98, 0x1d, 0xc5, 0x19, 0xf5, 0x01, 0xad, 0x24, 0x9f, 0x2b, 0x98, 0x5b, 0xa5, 0xbc, 0x91, 0xd1, 0xb7, 0x70, 0xd3, 0x55, 0xa6, 0xb0, 0x49, 0x42, 0x9d, 0x1e, 0xc4, 0x0e, 0xf0, 0x1b, 0x02, 0x0d, 0x2f, 0x39, 0xb4, 0x54, 0x88, 0xb8, 0x90, 0x19, 0x6a, 0xcf, 0x42, 0xbc, 0xdc, 0xd4, 0xdd, 0x68, 0xcc, 0xfb, 0x37, 0x9c, 0x6b, 0x90, 0x5a, 0x84, 0xb6, 0x3c, 0xd3, 0xc0, 0xa4, 0x0a, 0x55, 0x69, 0xba, 0x84, 0x39, 0x8f, 0x4d, 0x07, 0x4a, 0x61, 0x8b, 0xfe, 0xf9, 0x2a, 0xde, 0x75, 0x4e, 0x1d, 0x75, 0x0c, 0x98, 0x18, 0xd7, 0x43, 0x95, 0x13, 0x64, 0x04, 0xe7, 0x69, 0x10, 0x9a, 0x3c, 0xea, 0x18, 0x47, 0xa0, 0x9a, 0xb0, 0x95, 0x3a, 0x98, 0x45, 0x2e, 0x98, 0xda, 0x2f, 0xc8, 0xc8, 0xc9, 0xac, 0x08, 0xef, 0xb4, 0x3b, 0x82, 0x39, 0xe8, 0xa2, 0xe8, 0xd4, 0xf9, 0x16, 0x2e, 0x54, 0x7c, 0x66, 0x34, 0x40, 0xed, 0x03, 0x0f, 0x60, 0x09, 0x92, 0xf2, 0x62, 0x37, 0x75, 0x0f, 0x85, 0xfa, 0xdb, 0xf2, 0xf7, 0xe0, 0x39, 0xf7, 0x1b, 0xd4, 0x24, 0x14, 0xc6, 0xf5, 0xde, 0xee, 0xcc, 0x21, 0x0e, 0x65, 0x22, 0x4f, 0x11, 0xfc, 0x55, 0x40, 0x93, 0x5f, 0xad, 0xc4, 0x5d, 0x78, 0xdd, 0x13, 0x42, 0x57, 0x81, 0x52, 0xeb, 0x91, 0x0f, 0x1c, 0xe1, 0x69, 0xa3, 0x34, 0xe2, 0x8c, 0xdc, 0x81, 0xf8, 0x5d, 0xb0, 0x51, 0x7c, 0x4f, 0x53, 0x5c, 0xf7, 0xf4, 0xb6, 0xcd, 0xc2, 0x16, 0x5e, 0x49, 0x6f, 0xf6, 0x1d, 0x5e, 0xe9, 0xdf, 0xf1, 0xec, 0x84, 0x05, 0xaf, 0x69, 0xd0, 0x3c, 0x2e, 0x87, 0x3e, 0x65, 0xf5, 0x0f, 0x87, 0x77, 0xa2, 0x04, 0x6d, 0x23, 0xf6, 0xb0, 0x6a, 0xfd, 0x1f, 0xd3, 0xc0, 0x06, 0x29, 0xb5, 0x1e, 0x11, 0xe8, 0x9c, 0x2c, 0x79, 0xd8, 0x31, 0x9f, 0x5b, 0x50, 0x09, 0xed, 0x40, 0x85, 0x49, 0xc6, 0x2d, 0xdd, 0x0f, 0xd8, 0xa3, 0x26, 0xf9, 0x67, 0xfb, 0xae, 0x1c, 0x63, 0x4f, 0x47, 0x71, 0x64, 0x47, 0xe2, 0x4b, 0x20, 0xcc, 0xf4, 0xe8, 0x19, 0x95, 0x70, 0xc6, 0x07, 0xcd, 0x0d, 0x32, 0x92, 0xc0, 0xec, 0xc7, 0x9d, 0x63, 0xd0, 0x5f, 0xad, 0x7c, 0x9c, 0x3c, 0x6e, 0x61, 0x41, 0x8c, 0x1d, 0x3c, 0x9e, 0x52, 0xee, 0x7f, 0x18, 0x1b, 0xd5, 0x04, 0x91, 0x30, 0xfd, 0xb1, 0x1f, 0x45, 0xdd, 0xee, 0xf8, 0x20, 0x37, 0x27, 0x42, 0xf1, 0xf5, 0xd5, 0x0b, 0x66, 0x7d, 0x8e, 0x6e, 0xb1, 0x87, 0x13, 0xb4, 0x5b, 0x63, 0x16, 0x78, 0x25, 0xa3, 0xdb, 0x7d, 0x7c, 0xc2, 0xb1, 0x6f, 0x6f, 0x2d, 0x1b, 0x3a, 0xef, 0x43, 0xf5, 0x13, 0xc2, 0x14, 0x3e, 0x0c, 0x4e, 0x7a, 0xb5, 0x16, 0x80, 0xcb, 0x0b, 0x77, 0x03, 0x9c, 0x8f, 0x43, 0x55, 0x5f, 0x60, 0xc9, 0x2e, 0xdd, 0xe1, 0x3a, 0x9a, 0x01, 0x24, 0xe6, 0xf7, 0x25, 0x4c, 0x69, 0x61, 0x67, 0xd0, 0x99, 0x65, 0x1e, 0xa4, 0xb8, 0x99, 0x0c, 0xa9, 0x5b, 0x88, 0xc2, 0x64, 0x92, 0x2b, 0x31, 0xe7, 0x55, 0x46, 0xa7, 0x81, 0x0d, 0xc0, 0x22, 0x02, 0x6c, 0xd7, 0x1c, 0xf0, 0xc9, 0x36, 0xb0, 0x24, 0x44, 0xe0, 0xc1, 0x84, 0x9c, 0xfa, 0xaa, 0x50, 0xf0, 0x46, 0xb0, 0x10, 0x18, 0xbf, 0xb2, 0x6e, 0x1a, 0x9b, 0x47, 0xe0, 0x0a, 0x00, 0x88, 0x44, 0xca, 0xc4, 0xd8, 0xee, 0xa9, 0xdc, 0x0a, 0x34, 0x44, 0xe1, 0x14, 0x7c, 0x0e, 0xc7, 0x87, 0xbc, 0x84, 0x9e, 0xd6, 0x9c, 0x76, 0x96, 0x4c, 0xca, 0xe6, 0x51, 0x9c, 0x92, 0x1c, 0xb4, 0xea, 0xed, 0x95, 0xc0, 0x1f, 0x8f, 0xcd, 0x11, 0x6e, 0xbd, 0xb5, 0xaa, 0xf6, 0x08, 0x52, 0x25, 0x4f, 0x7a, 0xfd, 0x1a, 0xe5, 0x9c, 0x07, 0x8e, 0x83, 0x50, 0xae, 0xcf, 0x9f, 0x14, 0x4d, 0xf7, 0x52, 0x86, 0x7b, 0x09, 0xfc, 0x48, 0x36, 0x97, 0xcc, 0xef, 0x18, 0x66, 0xb2, 0x84, 0x5f, 0x11, 0x47, 0x3c, 0xc1, 0x2e, 0x19, 0x5e, 0xda, 0x95, 0xe5, 0x63, 0xb3, 0x15, 0x58, 0x49, 0x52, 0xe2, 0x7c, 0x44, 0x7d, 0xbe, 0xdd, 0xbf, 0x7d, 0x89, 0x0d, 0xd6, 0x5f, 0xaa, 0x27, 0xc8, 0x9d, 0xfb, 0x57, 0x4a, 0xfd, 0x41, 0x00, 0xb4, 0x8b, 0x61, 0xc6, 0x93, 0xa9, 0xf2, 0x68, 0x66, 0x5e, 0xb1, 0xb4, 0x06, 0x75, 0xa6, 0xcb, 0x29, 0x03, 0x31, 0xd0, 0x0c, 0x68, 0x7c, 0x74, 0x86, 0xf9, 0xa9, 0x58, 0x37, 0xe1, 0xdf, 0x59, 0xe3, 0x22, 0x92, 0x1d, 0x49, 0xc5, 0x91, 0x09, 0xcd, 0xb3, 0xa2, 0x31, 0x98, 0x5b, 0x66, 0xd9, 0xa9, 0xf8, 0xc8, 0xf3, 0xce, 0x4f, 0xf8, 0x23, 0xed, 0x85, 0xd9, 0xa3, 0xee, 0xb2, 0x53, 0x78, 0x5d, 0x05, 0x30, 0xee, 0xf5, 0xce, 0x24, 0x9d, 0x0b, 0x4c, 0x76, 0xa1, 0xa8, 0x02, 0x81, 0xd5, 0xdd, 0xe4, 0xbd, 0x2e, 0x6a, 0x97, 0x7f, 0x64, 0x76, 0x18, 0x2c, 0x06, 0x8e, 0x53, 0xfd, 0x91, 0xea, 0x8a, 0xfa, 0xeb, 0xc6, 0x9a, 0xe0, 0xf6, 0x37, 0x64, 0xd2, 0x02, 0xa2, 0x0d, 0x33, 0x97, 0xdd, 0x70, 0x3e, 0x40, 0x5c, 0x7e, 0xf6, 0xc9, 0x90, 0x28, 0xa8, 0x36, 0xf7, 0x9b, 0x8b, 0x88, 0xc2, 0xea, 0xe3, 0xe7, 0x4d, 0x4e, 0x69, 0x1e, 0x4c, 0x15, 0xcc, 0x09, 0xad, 0xf9, 0xd0, 0x38, 0xb0, 0xf0, 0x1c, 0x91, 0x5d, 0xf4, 0x0b, 0x18, 0xae, 0x5f, 0xad, 0xf5, 0x1a, 0x25, 0x07, 0x68, 0x82, 0x47, 0x53, 0x29, 0x53, 0xd6, 0x12, 0x1d, 0x41, 0xf4, 0xc5, 0x11, 0x84, 0xd0, 0xd4, 0x1e, 0x64, 0x37, 0xab, 0xe9, 0x18, 0x8e, 0x24, 0x4d, 0x90, 0xe5, 0x86, 0x58, 0x18, 0x7c, 0x8e, 0x34, 0x6d, 0x82, 0x3b, 0x98, 0x0a, 0x71, 0x9b, 0x0b, 0x6b, 0x7d, 0xfb, 0xf6, 0x4f, 0xed, 0x2f, 0x3a, 0xcd, 0x2a, 0x21, 0xb3, 0xc1, 0x70, 0x66, 0x4e, 0x6d, 0xa6, 0x54, 0x6e, 0x8f, 0x20, 0x6f, 0x05, 0xd9, 0x7d, 0xdb, 0x20, 0xf9, 0xb7, 0x00, 0x50, 0xb8, 0xce, 0x46, 0xeb, 0xce, 0xce, 0xdf, 0xea, 0x11, 0x28, 0xd5, 0x31, 0xbb, 0x13, 0xdb, 0x09, 0x27, 0x54, 0x01, 0x40, 0xbc, 0xa6, 0x1d, 0x4a, 0x4b, 0x3c, 0xca, 0x97, 0xe1, 0xbd, 0x2d, 0x22, 0x13, 0x18, 0x1d, 0x1d, 0xd3, 0x17, 0xa0, 0x1f, 0x87, 0xb4, 0xea, 0x8e, 0xb3, 0x9a, 0xb1, 0x55, 0xc3, 0x90, 0x8d, 0x01, 0xc8, 0x96, 0x24, 0x64, 0xb7, 0xe7, 0x21, 0x88, 0xcc, 0xa1, 0x5b, 0x14, 0x05, 0x85, 0x8f, 0x37, 0x69, 0x17, 0x36, 0x8a, 0x3d, 0xed, 0xf1, 0xa9, 0x25, 0x62, 0x0f, 0x5e, 0x17, 0xd4, 0xaa, 0x06, 0x1c, 0x69, 0xb0, 0x15, 0x28, 0x98, 0x27, 0xc3, 0x6a, 0x94, 0xd0, 0xb1, 0x07, 0xad, 0xd3, 0xbb, 0x62, 0x82, 0xcd, 0xc4, 0xf2, 0xe6, 0x80, 0x69, 0x82, 0x41, 0x18, 0x65, 0x5c, 0xfa, 0x44, 0xfd, 0x39, 0x57, 0x49, 0x2f, 0xef, 0x08, 0x75, 0x18, 0xce, 0x37, 0x2c, 0xeb, 0xf4, 0x0e, 0x62, 0xd1, 0x82, 0x93, 0x88, 0x9f, 0xb7, 0x8c, 0x07, 0x78, 0x21, 0x0b, 0x06, 0x90, 0x5c, 0xf2, 0x68, 0x74, 0x0e, 0x72, 0x48, 0xd8, 0x2f, 0x5c, 0x5a, 0xea, 0xba, 0x1b, 0x34, 0x3f, 0x48, 0x69, 0x15, 0xf0, 0x73, 0x56, 0x88, 0x82, 0x57, 0xab, 0xdc, 0x84, 0x50, 0xbf, 0xfc, 0x59, 0xdb, 0xe5, 0x65, 0x6d, 0x67, 0xd5, 0xba, 0x12, 0x98, 0x1d, 0x64, 0x5e, 0x8a, 0xe9, 0xf6, 0x44, 0x06, 0x5f, 0x9c, 0x51, 0x9d, 0xd9, 0x69, 0x9b, 0xcc, 0x6c, 0x89, 0xd1, 0xc8, 0xdd, 0x76, 0xd6, 0x8e, 0xd2, 0x1a, 0xd0, 0x36, 0xf1, 0xd3, 0x30, 0x86, 0x6d, 0x9a, 0x16, 0xb7, 0x40, 0x7a, 0xaf, 0x89, 0x9e, 0xbf, 0xc7, 0x7a, 0x7f, 0xee, 0xf8, 0x1a, 0xff, 0x4e, 0x74, 0x91, 0xd6, 0x79, 0x95, 0x2e, 0xe9, 0x3b, 0x10, 0xed, 0x64, 0xb8, 0xfb, 0x65, 0xa5, 0xab, 0xab, 0x06, 0x9a, 0x20, 0x13, 0xe4, 0xc0, 0x79, 0x1d, 0x4d, 0x18, 0xea, 0x38, 0xc9, 0x1c, 0x8a, 0xec, 0x41, 0xae, 0x90, 0x5d, 0x3a, 0x29, 0x2f, 0x06, 0x20, 0x71, 0xbf, 0x13, 0x11, 0x02, 0x5f, 0x00, 0x66, 0x92, 0x93, 0x77, 0xef, 0x0d, 0x81, 0x7e, 0x9d, 0xd9, 0x57, 0x52, 0xda, 0x43, 0x41, 0xb9, 0xef, 0x99, 0x88, 0xda, 0xa9, 0xb1, 0x78, 0x3c, 0x7c, 0xda, 0xfc, 0xd7, 0x69, 0xdc, 0x72, 0x5c, 0xab, 0xc3, 0x5c, 0x0e, 0xf5, 0xf3, 0xfa, 0x20, 0x5d, 0x6e, 0x20, 0x29, 0xa4, 0xd5, 0x58, 0x76, 0x4a, 0xfd, 0x9e, 0xb9, 0x58, 0x87, 0x07, 0x76, 0x94, 0x50, 0x88, 0xdd, 0x39, 0x59, 0xd9, 0x4c, 0x5b, 0xdf, 0xec, 0xa8, 0x56, 0x2f, 0x09, 0xf5, 0x97, 0xb1, 0x41, 0x8d, 0x73, 0xa7, 0xf5, 0x73, 0x74, 0xef, 0x34, 0x45, 0x90, 0x1a, 0x7c, 0x2e, 0x84, 0x2b, 0x45, 0xe7, 0x1d, 0x2a, 0x6c, 0xbf, 0xa9, 0xc0, 0x94, 0x1e, 0xf7, 0x26, 0x11, 0x34, 0x02, 0xec, 0x74, 0x83, 0xd2, 0xa9, 0x34, 0x7b, 0x3c, 0x41, 0x9a, 0x53, 0xe6, 0x91, 0x2d, 0x0b, 0x7a, 0xef, 0x14, 0xb0, 0x34, 0x19, 0xfe, 0xed, 0x7b, 0x77, 0x30, 0x87, 0x90, 0x5c, 0xef, 0xcf, 0x46, 0x6c, 0x59, 0xe6, 0xda, 0x62, 0xb4, 0xf4, 0xd5, 0xb9, 0x9b, 0xc7, 0x86, 0x5d, 0x1b, 0x42, 0x8f, 0x15, 0x70, 0xb6, 0x69, 0xd3, 0x7f, 0x05, 0xb5, 0x9b, 0xbc, 0xa4, 0xc3, 0xcc, 0xb1, 0x38, 0x61, 0x39, 0x51, 0x96, 0x45, 0x21, 0xab, 0x98, 0x21, 0xc3, 0x84, 0x3c, 0x9d, 0xce, 0x2e, 0x71, 0xba, 0x14, 0xbd, 0xcb, 0xe8, 0x99, 0x7b, 0x27, 0xd9, 0x39, 0x5b, 0xba, 0x98, 0x63, 0x28, 0xf5, 0xbe, 0x12, 0x8b, 0x2f, 0x60, 0xa2, 0x5e, 0xdf, 0xed, 0x13, 0x05, 0x9f, 0x54, 0xfe, 0x75, 0xa6, 0x41, 0xaf, 0x64, 0x19, 0x8a, 0xb7, 0xd5, 0xf7, 0x68, 0xc1, 0xe4, 0x0f, 0x0a, 0x6d, 0x41, 0x2a, 0x7e, 0x3c, 0xc2, 0xe2, 0x47, 0xe6, 0xbf, 0xba, 0x8d, 0x4d, 0xda, 0x8f, 0xc9, 0x47, 0x3a, 0x8b, 0x22, 0xd1, 0x66, 0x9f, 0xf0, 0xd0, 0x07, 0x33, 0x67, 0xf7, 0xb5, 0x36, 0x06, 0x8d, 0xe6, 0x6e, 0x73, 0xd8, 0xe2, 0x88, 0x3b, 0x0f, 0x48, 0xd7, 0xd6, 0x5a, 0x87, 0x27, 0x52, 0xe8, 0x51, 0x30, 0xe1, 0x91, 0x8a, 0x15, 0x0c, 0x03, 0x4f, 0x24, 0x85, 0xbf, 0x1f, 0xa0, 0x74, 0x8c, 0xa5, 0xbd, 0xf1, 0xff, 0x39, 0x9c, 0x65, 0xc3, 0x97, 0xa4, 0xb8, 0xca, 0xaa, 0xa8, 0xc7, 0xdb, 0x9f, 0x88, 0xbc, 0x41, 0x22, 0x3e, 0x13, 0x51, 0x73, 0xf4, 0xb7, 0xce, 0xd3, 0xe7, 0x93, 0xb3, 0x29, 0xce, 0x81, 0xe9, 0x39, 0x81, 0x8d, 0x0f, 0xb3, 0xe8, 0x28, 0x8f, 0x16, 0x66, 0x41, 0xa5, 0xea, 0xbc, 0x93, 0xc5, 0x21, 0x0c, 0xeb, 0xa1, 0x0a, 0x1d, 0xea, 0xe8, 0x8e, 0xaa, 0xfb, 0x9d, 0xe6, 0xff, 0x40, 0x3e, 0xa3, 0x4f, 0xf9, 0x30, 0xeb, 0x9d, 0xe4, 0x88, 0x60, 0xe6, 0xb5, 0x36, 0x0e, 0x5e, 0x3b, 0x9c, 0x5a, 0xdd, 0x61, 0x88, 0x0b, 0xae, 0x03, 0xa7, 0xe1, 0xa4, 0xe4, 0xf3, 0x7f, 0x16, 0x72, 0xf4, 0x57, 0x94, 0x32, 0x73, 0x0f, 0x04, 0xa7, 0x1c, 0x42, 0x40, 0xb1, 0xc9, 0xd8, 0x8b, 0x50, 0x9a, 0x43, 0x3b, 0x8a, 0xd5, 0xfc, 0xd3, 0x99, 0x57, 0x78, 0x1a, 0xc2, 0xc8, 0xa4, 0x63, 0x84, 0x25, 0xab, 0xf4, 0x67, 0x76, 0x41, 0x9b, 0x14, 0x9f, 0x7b, 0x57, 0xb9, 0x05, 0x4f, 0xe1, 0xa9, 0x30, 0x37, 0x1f, 0xd0, 0x59, 0xdb, 0x19, 0x81, 0xdd, 0xb7, 0x5c, 0x1e, 0x8d, 0x0e, 0xe7, 0x1c, 0xca, 0xb6, 0x6c, 0xb6, 0x8d, 0xd0, 0xa5, 0xcb, 0x80, 0x30, 0xc6, 0xb2, 0xe9, 0xe1, 0xf9, 0xec, 0xfe, 0x76, 0xac, 0x46, 0xa4, 0xe1, 0xf0, 0x53, 0x70, 0x83, 0x5a, 0x54, 0xdd, 0x50, 0x4a, 0xfa, 0x17, 0x2f, 0x18, 0xf7, 0x2f, 0x6c, 0x78, 0x6d, 0xc6, 0xf4, 0x3e, 0x27, 0x76, 0x18, 0xe2, 0xa7, 0x01, 0xd9, 0x7d, 0x14, 0xdf, 0x33, 0xea, 0x8a, 0x72, 0x42, 0xf4, 0x6d, 0xd8, 0x2f, 0xd2, 0x4b, 0x53, 0x0c, 0xff, 0x4c, 0x83, 0x5e, 0xbc, 0xc8, 0xcf, 0x92, 0xc9, 0xf5, 0xb5, 0x0d, 0x81, 0xae, 0xa4, 0xb6, 0xda, 0xda, 0xb9, 0xcd, 0x12, 0x6e, 0xe3, 0x1d, 0xbe, 0xf1, 0xf5, 0x81, 0x7c, 0x04, 0x19, 0xe9, 0xef, 0xe7, 0xe7, 0x90, 0x9e, 0x9a, 0x1c, 0x04, 0x2b, 0x2c, 0xb7, 0xb4, 0x1a, 0x17, 0xe9, 0x43, 0xf2, 0xed, 0xdc, 0x0e, 0x00, 0x0c, 0x4b, 0xd9, 0xda, 0xd7, 0x35, 0x8c, 0xbd, 0x4b, 0x4a, 0xc9, 0xed, 0xb1, 0x1b, 0x52, 0xc3, 0xe7, 0x22, 0x7a, 0x2b, 0x77, 0x23, 0x2a, 0x12, 0x02, 0x80, 0xc2, 0xdf, 0xb4, 0xcf, 0x07, 0x64, 0x63, 0x4f, 0xdc, 0x69, 0xb3, 0x05, 0x67, 0x43, 0x0b, 0xaa, 0x76, 0xb6, 0x9a, 0x38, 0xfa, 0x97, 0x76, 0xa7, 0x09, 0x35, 0x4f, 0x9f, 0x73, 0x87, 0x07, 0xb8, 0x41, 0xe4, 0xa5, 0x47, 0xcc, 0x98, 0x1d, 0x58, 0x35, 0xce, 0xeb, 0xb6, 0x19, 0x0e, 0x84, 0xab, 0x63, 0x04, 0x0f, 0xb2, 0xaa, 0xde, 0x10, 0xd4, 0xfd, 0xbc, 0x80, 0x30, 0xf8, 0x3f, 0xb4, 0x1b, 0x41, 0x40, 0x99, 0x49, 0x1e, 0xa8, 0xf3, 0xa3, 0x65, 0x19, 0x94, 0xb3, 0xd1, 0x07, 0xc6, 0x2f, 0x0b, 0xdb, 0xac, 0xff, 0xd5, 0x61, 0x9a, 0x6b, 0x95, 0xdb, 0xc4, 0xfd, 0xff, 0x13, 0xaa, 0x42, 0x1c, 0xf1, 0xcb, 0x04, 0x93, 0x64, 0x26, 0x91, 0x81, 0x0a, 0x4e, 0x78, 0xe0, 0x76, 0x5f, 0x6e, 0xd6, 0x03, 0x75, 0xab, 0xba, 0x77, 0x87, 0xbc, 0x85, 0xc9, 0x4e, 0xc4, 0x1c, 0xf6, 0xd6, 0xd6, 0xd1, 0x5f, 0x3e, 0xb9, 0xf3, 0x34, 0xc9, 0x94, 0xf8, 0xf7, 0x33, 0x61, 0xd8, 0x45, 0x7b, 0xcb, 0x64, 0x27, 0xdb, 0x3f, 0x39, 0xf9, 0xb1, 0x25, 0x42, 0xd2, 0xa7, 0x27, 0x94, 0xb7, 0x93, 0xdd, 0x2e, 0xbb, 0x12, 0x06, 0xb5, 0xb7, 0x49, 0x0d, 0xcc, 0xe2, 0xb4, 0x0e, 0x49, 0x73, 0xa1, 0xd5, 0x49, 0xd4, 0x13, 0x4e, 0x7b, 0x19, 0x59, 0xfc, 0x62, 0x9e, 0xda, 0x07, 0xfb, 0x76, 0x82, 0xaf, 0xb5, 0x21, 0xcd, 0xbb, 0x88, 0x3d, 0xbf, 0xe9, 0x75, 0x20, 0x2a, 0x00, 0xb8, 0x57, 0xcc, 0xcc, 0x41, 0xd6, 0x8b, 0x64, 0x59, 0x59, 0x97, 0xa0, 0xf4, 0x6f, 0x1e, 0x51, 0xbe, 0x68, 0x0d, 0x95, 0x55, 0x74, 0x9e, 0xe0, 0xff, 0xd1, 0xbd, 0x4f, 0x01, 0xf7, 0x9b, 0xfc, 0x78, 0x77, 0x5b, 0xba, 0x67, 0xab, 0xed, 0x78, 0x0f, 0x03, 0x62, 0x57, 0x7b, 0x0b, 0x40, 0x53, 0x47, 0xfc, 0x28, 0xed, 0x4f, 0x8d, 0xa4, 0x7e, 0x90, 0x29, 0xb3, 0xe6, 0xd3, 0x7d, 0x39, 0xc8, 0x4d, 0xf0, 0xca, 0xfc, 0x84, 0x34, 0xc5, 0x29, 0xa1, 0x5f, 0x7b, 0xd7, 0x46, 0x97, 0xf8, 0x17, 0x2e, 0x4b, 0xa8, 0x68, 0xfd, 0xbd, 0x05, 0xea, 0x94, 0xaf, 0xf0, 0x8f, 0x06, 0x99, 0x70, 0x40, 0x2e, 0xba, 0xf0, 0x63, 0xe0, 0x6a, 0x92, 0x3c, 0xe4, 0x43, 0xa0, 0x62, 0x01, 0x7c, 0x11, 0xeb, 0xe7, 0x7d, 0xd0, 0xfd, 0xb3, 0x1a, 0xa9, 0xae, 0xe4, 0x0c, 0x22, 0xfc, 0xdd, 0x5d, 0x05, 0x74, 0x54, 0x20, 0x30, 0x95, 0x08, 0x28, 0x49, 0x6d, 0x2c, 0x86, 0x50, 0x9d, 0xfc, 0x3d, 0xf2, 0xa9, 0xef, 0xef, 0xec, 0xe0, 0x36, 0xd3, 0x1f, 0x53, 0x24, 0xfb, 0xd9, 0xe4, 0xe1, 0x30, 0x43, 0x47, 0x6b, 0x25, 0x1c, 0xa3, 0x26, 0xdc, 0x0d, 0x75, 0x05, 0xa7, 0x63, 0x6c, 0x6d, 0x71, 0x63, 0xa7, 0xcb, 0x3e, 0x89, 0xe5, 0x15, 0x4e, 0x1e, 0x73, 0xbb, 0xdc, 0xc6, 0x35, 0xe9, 0x3d, 0x93, 0x0e, 0x7a, 0xc8, 0x0a, 0x63, 0x02, 0xa9, 0xd8, 0x2c, 0xa6, 0x69, 0xb9, 0x53, 0xb9, 0x8c, 0xe7, 0x26, 0xbe, 0x2b, 0xc0, 0x13, 0x3a, 0xd9, 0x10, 0x83, 0x9d, 0xca, 0x35, 0x8e, 0x28, 0x9b, 0x88, 0x37, 0xe2, 0x2d, 0x97, 0x9f, 0x7a, 0xf1, 0xbc, 0x37, 0x79, 0x51, 0x13, 0xc1, 0xd5, 0x08, 0xeb, 0x9a, 0xa9, 0x01, 0xa8, 0x40, 0x3d, 0xf2, 0xc2, 0x41, 0x2b, 0x7f, 0x2a, 0xcb, 0xf4, 0x42, 0xb5, 0x39, 0x2d, 0xd8, 0xa7, 0x33, 0x71, 0x75, 0x59, 0xfa, 0x96, 0xe2, 0x49, 0xe2, 0xbb, 0xf5, 0xd8, 0xc9, 0xf9, 0x16, 0x04, 0xc1, 0x5f, 0x46, 0x6f, 0xfa, 0x8d, 0x7c, 0x53, 0x84, 0x04, 0xc5, 0xc5, 0x97, 0xb5, 0xba, 0x5d, 0xaa, 0x85, 0xf7, 0x6d, 0xe3, 0x70, 0x39, 0xda, 0x12, 0xe3, 0x3c, 0x62, 0x58, 0x0e, 0x16, 0x5f, 0xcc, 0x58, 0x28, 0x02, 0x45, 0xfd, 0xea, 0xfb, 0x91, 0xb9, 0x08, 0x80, 0x28, 0x7c, 0x3d, 0x86, 0xf6, 0x0f, 0xa3, 0x79, 0xdf, 0x38, 0xb5, 0x5f, 0x4e, 0x4d, 0x85, 0xf0, 0x5a, 0xd7, 0x33, 0xc8, 0x6b, 0x5b, 0x2f, 0xb8, 0x33, 0x0e, 0x18, 0x8b, 0xa0, 0x72, 0x37, 0xb7, 0xad, 0xce, 0xd6, 0x79, 0xd0, 0xfc, 0x2b, 0xda, 0xa1, 0x69, 0x66, 0xa1, 0x38, 0x45, 0xae, 0x1e, 0x95, 0xbd, 0x18, 0x24, 0x7a, 0x27, 0xb2, 0xc7, 0xb4, 0x2d, 0x4a, 0xdb, 0xce, 0x80, 0x45, 0x83, 0x54, 0xc9, 0x67, 0xee, 0xb2, 0x0e, 0x0d, 0xb2, 0xe9, 0x27, 0xf4, 0xdc, 0x2f, 0xc4, 0xe9, 0xb5, 0x48, 0x27, 0xcc, 0xfc, 0xb9, 0xfd, 0x75, 0x11, 0xf5, 0xdd, 0xb2, 0xc9, 0x1d, 0xbe, 0x04, 0x49, 0x93, 0x4a, 0x76, 0x75, 0x3f, 0x50, 0x1f, 0x41, 0x44, 0xee, 0xcf, 0xa6, 0x6c, 0xdd, 0xaa, 0x4e, 0xee, 0x12, 0x78, 0xca, 0x72, 0xb3, 0xbc, 0x39, 0x08, 0xc2, 0xcf, 0x47, 0x51, 0x78, 0xe1, 0x55, 0x10, 0x32, 0x3c, 0xcd, 0x95, 0x6e, 0x1a, 0x39, 0x34, 0x3b, 0xf4, 0x95, 0x52, 0xc3, 0x93, 0xb8, 0xc8, 0x4e, 0x81, 0x03, 0x96, 0x69, 0x42, 0x59, 0xc8, 0x9b, 0x2c, 0x64, 0x56, 0x5b, 0x53, 0x86, 0x2f, 0x4b, 0x8f, 0xef, 0x37, 0xc7, 0x2f, 0xe2, 0xb3, 0x40, 0x89, 0xf1, 0x60, 0x74, 0x34, 0x85, 0xfa, 0xaa, 0xc7, 0x40, 0x5a, 0xc7, 0x7f, 0xe7, 0x83, 0xf9, 0x75, 0x19, 0x43, 0x1b, 0x1e, 0xaa, 0xdf, 0x75, 0xa3, 0x56, 0xf6, 0xb8, 0xcb, 0xad, 0xd3, 0xcd, 0x88, 0xed, 0x8e, 0xe6, 0xc8, 0xd7, 0x4b, 0x9b, 0x64, 0x97, 0x78, 0x84, 0xf3, 0x20, 0xfa, 0xbe, 0xdc, 0x0b, 0x27, 0x84, 0x90, 0x15, 0x00, 0x26, 0x73, 0x86, 0xed, 0xd7, 0x69, 0xd7, 0x3d, 0xce, 0x6f, 0x6a, 0x83, 0x27, 0x11, 0x86, 0xb1, 0xf1, 0xa1, 0xf7, 0x10, 0x50, 0x66, 0xe4, 0xdf, 0xcb, 0x64, 0xdf, 0xfd, 0x24, 0xee, 0xc1, 0xbf, 0xbe, 0xf4, 0x5f, 0x95, 0x6d, 0x01, 0x3e, 0x4a, 0xd9, 0x09, 0xa2, 0x25, 0x5c, 0x0b, 0x3f, 0xac, 0x29, 0x51, 0xa8, 0x09, 0xd2, 0x76, 0xd7, 0x0c, 0x91, 0x07, 0xcc, 0x2b, 0x53, 0x65, 0x4c, 0xb9, 0xa6, 0x6a, 0x64, 0xc8, 0xdb, 0x14, 0xe0, 0x5a, 0xd5, 0x3b, 0xf1, 0x02, 0x4c, 0x4d, 0xb8, 0x4a, 0xa2, 0x42, 0x1f, 0x7b, 0xdf, 0x5a, 0xf2, 0x1f, 0xc4, 0xd6, 0x42, 0xf6, 0x50, 0xec, 0x78, 0xb5, 0xa6, 0xa7, 0xbc, 0x46, 0xdf, 0x2d, 0xb2, 0xea, 0x4b, 0xb0, 0x63, 0xd3, 0xe6, 0x8a, 0xaa, 0x79, 0x42, 0x97, 0xce, 0x04, 0xf5, 0x5a, 0x5f, 0x6b, 0x70, 0xba, 0x85, 0x36, 0x6b, 0xe3, 0x42, 0x59, 0x16, 0x99, 0x30, 0x4b, 0xcd, 0xba, 0xc0, 0xd0, 0xd8, 0xcb, 0x0a, 0x9b, 0xbf, 0x7b, 0x70, 0x41, 0x83, 0x80, 0xf6, 0x6a, 0xea, 0x4d, 0xa7, 0x2b, 0xe8, 0x07, 0x10, 0xbf, 0xfa, 0x19, 0x09, 0x57, 0x74, 0xe8, 0x0c, 0xdb, 0xea, 0xdb, 0xe8, 0x3b, 0xf8, 0x63, 0x5f, 0xaf, 0xf4, 0x3a, 0xa9, 0xf2, 0x54, 0xd0, 0x7e, 0x6a, 0x24, 0x77, 0x08, 0x77, 0x82, 0x02, 0xc5, 0x39, 0xdd, 0x28, 0xe8, 0xb7, 0x9d, 0x73, 0xfd, 0x72, 0x29, 0x3d, 0xa6, 0x0c, 0x4e, 0x5a, 0x83, 0xe5, 0x81, 0x09, 0xab, 0xd4, 0x68, 0xdc, 0x3a, 0x9f, 0x19, 0x89, 0x2a, 0x1a, 0x4c, 0xbe, 0x24, 0x56, 0xe4, 0x39, 0xb0, 0x36, 0x5a, 0x85, 0xfd, 0xb6, 0xfb, 0x5f, 0x6a, 0x7f, 0x9e, 0xd4, 0xd1, 0x17, 0x31, 0x43, 0x1f, 0xa5, 0xfd, 0x03, 0xdb, 0x18, 0x4c, 0xba, 0x35, 0xbd, 0xd5, 0x42, 0xb8, 0xd4, 0x19, 0x4d, 0xb0, 0xd4, 0x10, 0x95, 0x9e, 0x24, 0x4c, 0x64, 0x30, 0xa6, 0x0d, 0xcb, 0xaf, 0xdc, 0x83, 0xdb, 0x16, 0x7f, 0x5b, 0x5c, 0xed, 0x79, 0xc2, 0xa5, 0x79, 0xa6, 0x2a, 0xf4, 0xdf, 0xf8, 0x05, 0xc7, 0x5c, 0xa4, 0xd3, 0x28, 0xd7, 0x74, 0x5b, 0x99, 0xef, 0xb6, 0x03, 0xa4, 0x9e, 0xcd, 0x38, 0x8c, 0xb8, 0xab, 0x4c, 0xb6, 0x7c, 0x27, 0x62, 0x72, 0xf2, 0x2b, 0x97, 0xdd, 0xac, 0xbe, 0x00, 0x71, 0xc6, 0x54, 0x8b, 0x9e, 0xc3, 0xd3, 0x51, 0xf4, 0x9d, 0xea, 0x33, 0xdf, 0x63, 0x91, 0xb5, 0x1a, 0x06, 0x1b, 0x60, 0x2d, 0x84, 0xb0, 0x49, 0x1d, 0xe9, 0x5b, 0xcb, 0xaa, 0x1c, 0x0a, 0x2e, 0x33, 0x68, 0x47, 0x07, 0xf3, 0x63, 0x3c, 0x55, 0xfd, 0xf1, 0xc1, 0x73, 0xe4, 0xc1, 0xb8, 0x2d, 0x9f, 0xad, 0x96, 0x26, 0x0f, 0x7f, 0x12, 0x34, 0x57, 0xa6, 0xbe, 0x40, 0x33, 0xd5, 0xd7, 0xdc, 0xc3, 0x35, 0x2c, 0x39, 0xb8, 0x83, 0x7e, 0xe7, 0xa8, 0x4c, 0x26, 0x41, 0xcf, 0x93, 0x7c, 0x4d, 0x17, 0x07, 0x5b, 0xd6, 0x43, 0x8a, 0x7b, 0x77, 0x1e, 0xdf, 0x75, 0xbf, 0x56, 0x8d, 0x4c, 0x55, 0x3e, 0x35, 0x61, 0xaf, 0x42, 0xd4, 0x18, 0x79, 0x56, 0x1d, 0xde, 0x7a, 0x5d, 0x5b, 0x86, 0xed, 0x20, 0x08, 0xa5, 0xde, 0xdb, 0x76, 0x60, 0x19, 0x68, 0xbe, 0x11, 0xe5, 0x09, 0x01, 0x40, 0xce, 0xcd, 0x89, 0x8b, 0x5d, 0x02, 0xb1, 0xea, 0x17, 0xef, 0xef, 0x08, 0xe3, 0x11, 0x15, 0x91, 0xac, 0xb6, 0x86, 0xf8, 0x69, 0x05, 0x37, 0x53, 0x71, 0xe4, 0x66, 0x22, 0x07, 0x57, 0x0b, 0xc5, 0x92, 0x9d, 0xbc, 0x3f, 0xa6, 0x46, 0x3b, 0x5a, 0xac, 0xf1, 0xe5, 0xca, 0x98, 0x49, 0x33, 0xf9, 0xde, 0xda, 0x5e, 0x10, 0x79, 0x21, 0x87, 0xd3, 0xde, 0xc4, 0x39, 0x8f, 0xe0, 0x34, 0xf9, 0x01, 0x87, 0xd6, 0x67, 0x2d, 0xe6, 0x6c, 0xec, 0x01, 0xb7, 0x17, 0x76, 0x89, 0xe4, 0xbc, 0xc3, 0x62, 0x21, 0xe7, 0x5f, 0x18, 0x95, 0x56, 0x43, 0x21, 0x12, 0x0e, 0x74, 0x99, 0x32, 0xdd, 0x9e, 0xbe, 0x48, 0xc9, 0xb0, 0x8f, 0x3a, 0x06, 0x56, 0x62, 0x29, 0x65, 0xdb, 0xb3, 0xe6, 0x06, 0xc0, 0x57, 0xa8, 0xf2, 0x67, 0x2d, 0x87, 0x67, 0xfe, 0x7d, 0xd6, 0x15, 0x61, 0xef, 0xf4, 0xa1, 0xb1, 0x21, 0xde, 0x47, 0xe5, 0xd3, 0x98, 0x14, 0xa6, 0x16, 0x3a, 0x98, 0x58, 0xce, 0xad, 0x7d, 0x85, 0x53, 0xc3, 0x91, 0xcc, 0x41, 0x7e, 0x53, 0x99, 0xde, 0xf4, 0x44, 0x29, 0xb1, 0xe0, 0xb8, 0x5a, 0xd7, 0x5c, 0x00, 0x84, 0x41, 0xe9, 0x8e, 0x2c, 0xfd, 0x00, 0x7a, 0x36, 0x1d, 0x83, 0x1a, 0x3a, 0x40, 0x2e, 0x95, 0xf3, 0x55, 0xf3, 0x6e, 0x71, 0xea, 0x30, 0xad, 0x5c, 0x8a, 0x4a, 0xc9, 0x70, 0x6f, 0xc6, 0x3a, 0x45, 0xb2, 0xc2, 0xf7, 0xdb, 0xba, 0xb5, 0x63, 0xb7, 0x32, 0x4f, 0x23, 0x95, 0x55, 0xe1, 0x99, 0x1f, 0x97, 0xff, 0x44, 0xe2, 0xb4, 0x40, 0x3d, 0xc8, 0x59, 0xe2, 0xe9, 0x5c, 0x6e, 0x42, 0x84, 0xc1, 0xbf, 0x49, 0x2d, 0xcf, 0xe8, 0x6a, 0x5a, 0x8c, 0xc8, 0x52, 0x20, 0x7f, 0x07, 0xde, 0xdc, 0x28, 0x85, 0xa3, 0x69, 0x4c, 0x55, 0x93, 0xf7, 0x68, 0xa2, 0xaf, 0xa9, 0xbd, 0x3b, 0x87, 0xa8, 0xf3, 0x44, 0x52, 0x67, 0xc0, 0x65, 0xca, 0x10, 0xb3, 0x65, 0x1b, 0x8d, 0x42, 0x06, 0xc5, 0xed, 0xa3, 0x42, 0xe8, 0xdc, 0xc1, 0xfd, 0xf9, 0xed, 0x05, 0xbc, 0xaa, 0xeb, 0x8e, 0xbc, 0xa3, 0x15, 0x4f, 0x61, 0x85, 0x26, 0xf8, 0xd3, 0xe3, 0xd7, 0x0e, 0xd4, 0x9c, 0xc8, 0xec, 0x02, 0xe4, 0xac, 0x26, 0x2b, 0x4c, 0x7f, 0xcb, 0x05, 0x7c, 0x9d, 0x6b, 0xfd, 0x4d, 0x1f, 0x5e, 0x65, 0x6d, 0xd2, 0xb5, 0x6c, 0xb1, 0x3a, 0xfc, 0xec, 0x13, 0xc6, 0xb8, 0x2a, 0xb7, 0x56, 0x64, 0x0a, 0x66, 0xee, 0x5e, 0xd1, 0x31, 0x34, 0x77, 0xc7, 0x08, 0xaa, 0xae, 0xc7, 0x92, 0xf6, 0xd4, 0xf2, 0x29, 0x54, 0x16, 0xcd, 0x99, 0x38, 0x35, 0x1d, 0xce, 0xf1, 0x30, 0xe8, 0x9b, 0xae, 0x7d, 0xb1, 0x20, 0x3f, 0x35, 0x03, 0xfa, 0x5d, 0x27, 0xdb, 0x46, 0x09, 0xef, 0xae, 0x65, 0xe1, 0xdf, 0xc2, 0x90, 0x3b, 0x71, 0xb7, 0xd5, 0xde, 0xab, 0x00, 0x62, 0x2e, 0x46, 0x93, 0xa6, 0xb9, 0x9e, 0xda, 0xba, 0x0d, 0xd8, 0x67, 0x5a, 0x85, 0x86, 0xe7, 0xf9, 0x54, 0x1e, 0x21, 0xb1, 0xc8, 0x5c, 0x4f, 0x20, 0xd0, 0xea, 0x01, 0xe2, 0x70, 0x1f, 0x69, 0x4d, 0xb5, 0x20, 0x6a, 0xff, 0x20, 0x2a, 0x98, 0xf3, 0xab, 0x00, 0xe7, 0x77, 0x08, 0xd6, 0x9b, 0x51, 0xb1, 0xbf, 0xe7, 0xb2, 0xfa, 0xe8, 0xa3, 0xa2, 0x2d, 0xdb, 0x9a, 0x8b, 0x65, 0xf4, 0xcd, 0x65, 0xea, 0x6a, 0xc8, 0x11, 0xe1, 0x41, 0x46, 0x15, 0x92, 0x43, 0xc6, 0x9d, 0x41, 0xd5, 0xe8, 0xd5, 0xc5, 0xa1, 0xe0, 0x1e, 0x90, 0x6f, 0x6e, 0xb0, 0x71, 0xe5, 0xd7, 0x9e, 0xc0, 0x06, 0xaa, 0x72, 0xf4, 0xd2, 0xc1, 0x87, 0xf5, 0x48, 0xba, 0x21, 0xc7, 0xce, 0xc0, 0x73, 0x39, 0x99, 0xbe, 0xd5, 0x91, 0xfd, 0x3b, 0x94, 0x1a, 0x6a, 0xbb, 0xb5, 0xf3, 0xe7, 0x90, 0x00, 0xa2, 0x7d, 0x22, 0x63, 0x6c, 0x80, 0x7d, 0xbb, 0xb8, 0x22, 0x38, 0xb9, 0x7b, 0x36, 0xb5, 0xc8, 0x24, 0x69, 0xdd, 0x97, 0x1e, 0xd0, 0xf2, 0xfa, 0x4b, 0x0b, 0x9f, 0x18, 0xba, 0x60, 0xec, 0x04, 0x8d, 0xfe, 0x12, 0xd9, 0xb2, 0x70, 0xdb, 0xef, 0x5d, 0x32, 0xd8, 0x65, 0x56, 0x76, 0xb0, 0x69, 0x16, 0x7d, 0xb6, 0x1c, 0x2b, 0xfe, 0x0c, 0x4c, 0xeb, 0x06, 0xe7, 0x92, 0xeb, 0x9a, 0x94, 0x4a, 0x66, 0x61, 0x2f, 0xf5, 0x4a, 0x6e, 0x6c, 0x64, 0xb3, 0x67, 0xfe, 0xc5, 0xd0, 0xd8, 0x19, 0x7a, 0xb9, 0xec, 0xd5, 0x3b, 0xd3, 0xd3, 0x8c, 0x76, 0x23, 0x7a, 0x9e, 0x8c, 0x47, 0x1f, 0xc9, 0x9c, 0xe9, 0xd2, 0xd1, 0x30, 0x7d, 0xc2, 0x1d, 0x0e, 0x57, 0x7e, 0x6c, 0xc8, 0xec, 0x7a, 0x4d, 0x7c, 0xa1, 0xb1, 0xcc, 0x77, 0x9f, 0x9e, 0xbc, 0x89, 0xa3, 0x44, 0x04, 0x85, 0xd2, 0x69, 0x8a, 0x07, 0xf4, 0x6d, 0x1c, 0x97, 0x53, 0xcc, 0x6d, 0xc4, 0x32, 0xf4, 0x71, 0x18, 0xbd, 0x90, 0xff, 0x99, 0x71, 0x53, 0x1d, 0x7e, 0x9e, 0xf0, 0x3d, 0x00, 0xa8, 0xf4, 0x97, 0x7d, 0xd7, 0x21, 0x7b, 0x4d, 0x63, 0x86, 0xb7, 0x28, 0xa5, 0xb6, 0xf7, 0xd4, 0xb1, 0xb9, 0xab, 0x0a, 0x69, 0x66, 0x0c, 0x38, 0x37, 0x98, 0x67, 0xc6, 0x1e, 0xc4, 0xe4, 0xa2, 0xb9, 0xb7, 0xe7, 0xbe, 0x12, 0x3b, 0x10, 0xfc, 0x27, 0x56, 0xe9, 0xfd, 0xc1, 0xe9, 0xc1, 0x85, 0xf8, 0x16, 0xff, 0x4a, 0x1e, 0xed, 0x88, 0xcd, 0xe7, 0x88, 0xc7, 0xf5, 0xb1, 0x02, 0x52, 0xd1, 0xd2, 0xc2, 0x61, 0x25, 0x58, 0x4c, 0x4a, 0x92, 0x56, 0xc6, 0xc1, 0x7d, 0xd4, 0xd0, 0xfa, 0x35, 0xe6, 0xb7, 0xda, 0xd5, 0x4f, 0xae, 0x80, 0x26, 0xe4, 0x35, 0x80, 0x9f, 0xbc, 0xa4, 0xc8, 0xea, 0x7c, 0x8a, 0x80, 0xac, 0xb1, 0x24, 0x9e, 0xc0, 0x61, 0xd0, 0xa4, 0x3d, 0xd3, 0x94, 0xad, 0x59, 0x32, 0x65, 0xe8, 0xd4, 0x5c, 0x91, 0xc3, 0xbd, 0xd0, 0x4f, 0x9a, 0x9c, 0xe6, 0x45, 0x9a, 0x73, 0x85, 0xe1, 0x26, 0xc4, 0xd3, 0x07, 0x80, 0x26, 0x69, 0x6e, 0x16, 0x94, 0x9a, 0x74, 0xa9, 0xb7, 0xa2, 0x77, 0x71, 0xd3, 0xdd, 0x2e, 0x50, 0x64, 0xa2, 0x60, 0x30, 0xd7, 0x29, 0x78, 0x91, 0xde, 0x99, 0xfa, 0x28, 0x7e, 0x7a, 0x5e, 0x1b, 0xe0, 0x9c, 0x3c, 0x6a, 0x6f, 0x31, 0xce, 0x2c, 0x90, 0x58, 0xc5, 0x9c, 0x53, 0xa4, 0x1a, 0xe8, 0x1e, 0x33, 0x00, 0xc3, 0x9f, 0x35, 0x98, 0xe6, 0x37, 0xf5, 0x7b, 0x1b, 0xd4, 0x76, 0x1b, 0x71, 0x57, 0xa4, 0x9f, 0x5f, 0x28, 0x39, 0x15, 0x04, 0xfe, 0x58, 0x25, 0x1f, 0xc8, 0xf0, 0xaf, 0x7a, 0x0c, 0x21, 0x00, 0x88, 0x00, 0xe1, 0xb8, 0xb0, 0x93, 0xc9, 0xf2, 0xbe, 0xc9, 0xa5, 0x4f, 0x67, 0x50, 0x89, 0xa9, 0x1f, 0x0a, 0xb1, 0x90, 0x03, 0x25, 0xca, 0x76, 0x0c, 0xac, 0x9c, 0xb3, 0x9d, 0xb4, 0x36, 0x98, 0x80, 0xe9, 0xe5, 0x54, 0x79, 0xec, 0x43, 0x0c, 0x0a, 0x58, 0xcc, 0x2e, 0x55, 0x55, 0x52, 0x87, 0x74, 0xad, 0x4b, 0x93, 0x90, 0xb8, 0xf3, 0xf8, 0x9e, 0x1c, 0x3a, 0xfa, 0x66, 0xba, 0x50, 0x37, 0xc5, 0x73, 0x27, 0xb4, 0xfa, 0x2a, 0xbd, 0x9b, 0x0a, 0x55, 0x11, 0xbb, 0xff, 0xe2, 0x07, 0x71, 0x91, 0x91, 0xb7, 0x6c, 0xd1, 0x1a, 0xec, 0xbb, 0xc0, 0x62, 0x36, 0x86, 0x8c, 0x3d, 0x7c, 0x97, 0x95, 0x54, 0xf8, 0xe6, 0xcb, 0x9c, 0xe2, 0xf1, 0x7a, 0x30, 0xa5, 0x2f, 0x5f, 0xad, 0x5c, 0x8d, 0x60, 0xc4, 0x14, 0x77, 0x5c, 0x70, 0x91, 0xac, 0x6b, 0x94, 0x4b, 0x9e, 0xb2, 0x42, 0xfd, 0x9a, 0xfb, 0x96, 0xa1, 0x70, 0x4e, 0x6e, 0x12, 0x37, 0x5f, 0x87, 0xf5, 0x7c, 0x86, 0xa7, 0xd0, 0xf5, 0x53, 0xa0, 0xa3, 0x52, 0xe6, 0xe7, 0x9f, 0xac, 0x40, 0xb2, 0xe3, 0xd7, 0xac, 0xc8, 0xf6, 0xbf, 0x27, 0xf9, 0xd0, 0xd7, 0xe1, 0xa6, 0xd7, 0xa2, 0x53, 0x62, 0xe8, 0xa5, 0x0f, 0x6b, 0x2f, 0x31, 0xe4, 0xfc, 0x3d, 0x82, 0x19, 0xfc, 0xb6, 0x74, 0xf0, 0xe5, 0x89, 0x5b, 0x9a, 0x52, 0xb5, 0x17, 0x72, 0x77, 0xb4, 0x40, 0x27, 0xac, 0x7c, 0x24, 0x7a, 0x0b, 0x54, 0xaf, 0x86, 0x0f, 0x82, 0x9f, 0xa6, 0x05, 0xdb, 0x5e, 0x21, 0xb8, 0x11, 0xbe, 0xde, 0x98, 0x3f, 0x91, 0x79, 0x5b, 0x09, 0x33, 0x5b, 0x8b, 0x69, 0xe9, 0x99, 0x9e, 0x52, 0xfe, 0xe0, 0x6e, 0xc1, 0xe4, 0x76, 0xa3, 0x8c, 0x07, 0x30, 0xee, 0xd2, 0x43, 0x7c, 0xae, 0xe6, 0xaa, 0xb8, 0x7a, 0x40, 0x62, 0xba, 0xca, 0xb3, 0x30, 0x74, 0xca, 0x3f, 0x71, 0x61, 0x34, 0x3a, 0xa3, 0xa8, 0x6d, 0x30, 0x3d, 0xd9, 0xa3, 0xc8, 0x32, 0x80, 0x26, 0x41, 0xb0, 0x65, 0x1f, 0x45, 0x97, 0x6c, 0x1d, 0xaa, 0x34, 0xac, 0x18, 0xef, 0xcc, 0x14, 0xc2, 0x51, 0x02, 0x9d, 0x14, 0x1b, 0x50, 0x96, 0xf6, 0xc4, 0xbb, 0x88, 0x7e, 0x45, 0xc1, 0xd2, 0xc8, 0x48, 0xf7, 0x09, 0x8d, 0xf6, 0xf1, 0x94, 0xc7, 0xf9, 0x9f, 0x3f, 0x79, 0x04, 0xcc, 0x9c, 0xba, 0x26, 0x59, 0x85, 0x01, 0x81, 0xd5, 0x5d, 0x40, 0xdc, 0xe6, 0x06, 0x12, 0xfd, 0x6e, 0xde, 0x12, 0x25, 0x28, 0x65, 0xd4, 0x91, 0x50, 0x27, 0x98, 0x29, 0x77, 0xbc, 0xbd, 0xc8, 0x17, 0xb7, 0x8d, 0x65, 0xfc, 0x1f, 0xf8, 0xa7, 0x01, 0xda, 0xe8, 0xa2, 0xa8, 0x58, 0xe6, 0x82, 0xaf, 0xf3, 0x77, 0xa1, 0x0a, 0x4a, 0xf8, 0x4e, 0x26, 0x09, 0x57, 0xea, 0x2c, 0x5c, 0x03, 0x4c, 0x39, 0x9d, 0xb7, 0xb4, 0xe3, 0x78, 0xa2, 0x6b, 0x4e, 0x14, 0x50, 0x8e, 0x5f, 0xf0, 0xcd, 0x46, 0x0d, 0x35, 0x5d, 0x5c, 0xb0, 0xe7, 0x02, 0x3f, 0x93, 0xcb, 0xd8, 0x6f, 0xce, 0x7a, 0x38, 0x88, 0xa1, 0x1d, 0xa8, 0x78, 0x4b, 0x2c, 0x2b, 0x89, 0x5d, 0xba, 0x8a, 0x0b, 0xb2, 0xf2, 0x0d, 0x53, 0x7e, 0x18, 0x83, 0x45, 0x84, 0xc1, 0x7f, 0x44, 0x49, 0x50, 0xf8, 0x83, 0xa0, 0x2b, 0xa1, 0x7a, 0x01, 0x89, 0x8e, 0xd9, 0xca, 0x03, 0xc0, 0x0d, 0x84, 0x05, 0x10, 0x6b, 0x83, 0xd7, 0xb3, 0x33, 0xdc, 0x80, 0xb6, 0xf4, 0x91, 0x5b, 0x75, 0xe5, 0x02, 0x07, 0x97, 0xa8, 0x8b, 0xf8, 0xfd, 0x47, 0x1e, 0x91, 0xda, 0xc0, 0x9b, 0x8c, 0xbc, 0x07, 0xb0, 0x7c, 0xa6, 0x83, 0x2e, 0x24, 0xb8, 0x5a, 0x0e, 0xeb, 0xe5, 0x2a, 0xb0, 0xea, 0x71, 0x05, 0x77, 0x02, 0xcb, 0xe3, 0xfc, 0x5d, 0x85, 0x37, 0x1c, 0x95, 0x02, 0x56, 0xec, 0x10, 0x7f, 0x97, 0x3a, 0x5f, 0x58, 0xcf, 0x76, 0xac, 0xd8, 0x82, 0x8e, 0xb0, 0x4a, 0xf5, 0x36, 0x62, 0xf7, 0x68, 0x58, 0x9b, 0x17, 0xe1, 0x14, 0xc2, 0x12, 0x2f, 0x1d, 0x53, 0x98, 0x82, 0x5c, 0xb0, 0xd6, 0x9d, 0x73, 0x40, 0xb0, 0xe0, 0x01, 0xf4, 0x8b, 0x81, 0x1d, 0x6f, 0x6e, 0x34, 0xdb, 0x94, 0x2a, 0x68, 0x56, 0x29, 0x13, 0xee, 0x11, 0xc6, 0x90, 0x63, 0xa0, 0x6c, 0x90, 0x82, 0x3f, 0xbc, 0x12, 0x3f, 0xde, 0x40, 0x46, 0xe1, 0xec, 0xba, 0xfc, 0xd0, 0xaf, 0xc1, 0xf0, 0x32, 0xbc, 0xef, 0x53, 0x97, 0xb4, 0x26, 0xa1, 0x8f, 0x4d, 0xe9, 0xd5, 0x58, 0x7d, 0xbd, 0x26, 0xa1, 0xd6, 0x61, 0x83, 0x2d, 0x4b, 0x60, 0xdd, 0x2d, 0xd8, 0xdc, 0x90, 0xe2, 0xcd, 0xd9, 0xeb, 0x99, 0x00, 0x0a, 0x58, 0x8d, 0x1c, 0x4a, 0x3d, 0x8f, 0xa3, 0x57, 0x94, 0x59, 0xaa, 0x9a, 0x02, 0x17, 0xa5, 0x39, 0x20, 0x6f, 0xc9, 0x2f, 0xc4, 0x48, 0xdf, 0xff, 0x41, 0x26, 0x7b, 0x52, 0x67, 0xac, 0xd6, 0x4a, 0xda, 0x80, 0xb3, 0xa3, 0xc6, 0x24, 0xbf, 0x82, 0xe8, 0x3c, 0x68, 0xbe, 0xa9, 0xc0, 0xb0, 0xa6, 0x30, 0xfa, 0xb0, 0x89, 0x26, 0xdf, 0x91, 0xaa, 0x89, 0xbc, 0x23, 0x2b, 0x53, 0xfd, 0x2c, 0x09, 0x5b, 0x09, 0xb4, 0xdd, 0xf8, 0x10, 0x65, 0x1a, 0x9b, 0x47, 0xbf, 0x23, 0x6d, 0x22, 0x88, 0x7a, 0x21, 0x29, 0x87, 0xb7, 0xb6, 0xbf, 0x74, 0xfb, 0xc1, 0x15, 0x93, 0x72, 0xf4, 0x46, 0x95, 0x24, 0x2e, 0x5a, 0xe1, 0x23, 0x94, 0x30, 0x42, 0x42, 0xba, 0x08, 0x81, 0x26, 0x01, 0xe3, 0x6e, 0x2a, 0x44, 0x13, 0x81, 0x2d, 0xc4, 0xc2, 0xcb, 0xa5, 0xa4, 0x97, 0xe7, 0xb6, 0xe2, 0x43, 0x50, 0x79, 0xe9, 0x29, 0xfc, 0xab, 0x88, 0x77, 0xbe, 0xa1, 0xc8, 0x6a, 0xc3, 0xd6, 0xd6, 0x90, 0x64, 0xb4, 0x8b, 0x29, 0x29, 0xb5, 0xa9, 0xee, 0x59, 0xba, 0x5b, 0xda, 0x51, 0xb2, 0xd3, 0x13, 0x45, 0x0a, 0x47, 0xbe, 0xa9, 0xba, 0xb6, 0xf2, 0xc7, 0x78, 0xde, 0x08, 0xa9, 0x28, 0xc7, 0x1a, 0x8a, 0x63, 0xb2, 0xf0, 0x4f, 0x18, 0x97, 0x90, 0xc8, 0xb4, 0x27, 0xa7, 0x6c, 0x1d, 0xe9, 0xa0, 0x6a, 0x7a, 0x2f, 0x6f, 0xc1, 0x0d, 0x7b, 0x88, 0x9b, 0x52, 0xd8, 0x71, 0x4e, 0xe0, 0xed, 0x86, 0x4f, 0xc3, 0xfb, 0x51, 0xe3, 0x85, 0x17, 0x46, 0x18, 0x2f, 0xde, 0x94, 0xaa, 0x46, 0xa9, 0xc8, 0x8a, 0x9b, 0x90, 0x46, 0xe9, 0x87, 0x13, 0x10, 0x3d, 0xcd, 0xca, 0x02, 0xd6, 0x82, 0x05, 0xca, 0x38, 0x79, 0xd2, 0xb6, 0x6e, 0x8e, 0x26, 0xfe, 0xd4, 0xb5, 0x9c, 0x27, 0x6e, 0xdf, 0xee, 0x90, 0xfa, 0x2f, 0xcf, 0x2b, 0x33, 0x2a, 0xd6, 0x1a, 0xc0, 0xe3, 0x60, 0x6c, 0xf4, 0xcb, 0x3d, 0x9c, 0x0b, 0x95, 0xd3, 0xb5, 0x98, 0x59, 0x85, 0x30, 0x02, 0x2c, 0xb5, 0x93, 0x50, 0x39, 0xf9, 0x70, 0x4d, 0xc1, 0x66, 0xaf, 0x78, 0xd6, 0x61, 0xac, 0x4c, 0x6b, 0x37, 0xfe, 0x02, 0xa6, 0xbd, 0xc5, 0xa3, 0x20, 0xff, 0x89, 0xef, 0x84, 0x4b, 0x76, 0xa4, 0x23, 0xfc, 0x8a, 0xdf, 0x1a, 0xc2, 0x12, 0x0c, 0xfc, 0x87, 0x7e, 0x58, 0x5c, 0x8f, 0x9a, 0xb6, 0x0e, 0xa1, 0x86, 0xd4, 0xec, 0x4d, 0xe6, 0x04, 0xfa, 0x59, 0xf4, 0x20, 0xeb, 0xcf, 0x12, 0x39, 0x7c, 0xe7, 0x12, 0x9a, 0x94, 0x9e, 0x93, 0x64, 0x0b, 0x39, 0x9f, 0xb7, 0xf2, 0x5f, 0x78, 0x76, 0x84, 0xcc, 0x76, 0x20, 0xf5, 0x43, 0xd9, 0x10, 0x5f, 0x5f, 0xac, 0xe8, 0x80, 0xa9, 0xbd, 0x14, 0x96, 0x45, 0x9f, 0x56, 0x92, 0x00, 0x94, 0x0a, 0x46, 0x0a, 0x09, 0x3c, 0xce, 0x28, 0x15, 0x17, 0x4c, 0xa5, 0x84, 0x74, 0x24, 0x2d, 0xa5, 0x42, 0x1b, 0x81, 0x91, 0x22, 0x3b, 0xb7, 0x24, 0x30, 0x7f, 0x52, 0x61, 0x7c, 0xb3, 0x36, 0xb3, 0xee, 0x54, 0xcf, 0xab, 0x43, 0xa9, 0xbf, 0x45, 0x0c, 0xfe, 0x89, 0xf9, 0x39, 0x70, 0x18, 0x7e, 0x86, 0x86, 0x1e, 0x03, 0xd6, 0xd6, 0x0b, 0x5d, 0x5a, 0x6e, 0x2a, 0x57, 0x01, 0x18, 0x6c, 0x09, 0xa1, 0xbc, 0xd0, 0x20, 0x14, 0x41, 0x00, 0x5e, 0xdb, 0xe1, 0x86, 0xb5, 0x11, 0xf5, 0x21, 0x50, 0x07, 0xdc, 0xae, 0x4e, 0x69, 0x8d, 0x85, 0x2c, 0x6f, 0x9f, 0x12, 0x4f, 0xf5, 0xec, 0x98, 0x45, 0x34, 0x3a, 0x6c, 0xe5, 0xad, 0xbb, 0xf4, 0x0c, 0xfb, 0xf6, 0x65, 0xe4, 0xbe, 0x8a, 0xb1, 0x3e, 0x2f, 0xe3, 0xa0, 0x12, 0x19, 0x24, 0x4e, 0x43, 0x74, 0xf3, 0x2f, 0x5d, 0xcd, 0xa4, 0x69, 0x86, 0x1c, 0xe1, 0x21, 0x14, 0x94, 0x0d, 0x65, 0xc5, 0xd2, 0x6b, 0x4a, 0x2b, 0x0d, 0x0a, 0x70, 0x2f, 0xfa, 0x94, 0x77, 0x3e, 0xcb, 0xdd, 0x8f, 0x8e, 0x5d, 0x1d, 0xb4, 0xca, 0x7c, 0x95, 0xb8, 0x37, 0x22, 0xe2, 0xb1, 0xb3, 0xa7, 0xc4, 0x25, 0x9f, 0xd9, 0x8c, 0x38, 0xff, 0xb6, 0xb1, 0x77, 0x5c, 0x24, 0x8e, 0xa1, 0x6e, 0xa7, 0x8f, 0x8d, 0xd1, 0xd9, 0x9c, 0xaa, 0x60, 0x60, 0x7e, 0xe6, 0x46, 0x29, 0x9b, 0xaa, 0xa9, 0x99, 0xb5, 0xb0, 0x6e, 0x34, 0xa3, 0x8a, 0x90, 0x3e, 0x2f, 0xc2, 0x0c, 0xdf, 0xca, 0xf8, 0x65, 0xca, 0x2c, 0x6d, 0x2e, 0x6d, 0xe6, 0x2a, 0x70, 0x01, 0xcb, 0xbe, 0xac, 0x47, 0x17, 0x90, 0xb0, 0xe1, 0xa3, 0xc6, 0xdf, 0x87, 0x3a, 0xde, 0x39, 0xb5, 0xb4, 0xc1, 0xb7, 0x60, 0x51, 0xe2, 0x2c, 0x2e, 0xab, 0x32, 0x10, 0x53, 0x1a, 0xab, 0x7c, 0x8d, 0x3e, 0xca, 0x55, 0x3d, 0x27, 0x9d, 0x44, 0xa0, 0x68, 0xa6, 0x30, 0x1c, 0x47, 0xb5, 0xe8, 0xce, 0x4a, 0xac, 0xa4, 0xe4, 0x54, 0x0a, 0xa9, 0x92, 0xdd, 0x4b, 0x6c, 0xa3, 0xd1, 0xbc, 0x66, 0x47, 0x48, 0xf3, 0xb5, 0x83, 0x94, 0xe0, 0x29, 0xf1, 0xf8, 0x4e, 0x01, 0x92, 0xa8, 0x17, 0xd5, 0x06, 0x6c, 0x87, 0x79, 0xd8, 0x8b, 0x1c, 0xa4, 0x8b, 0xe0, 0x01, 0x25, 0xa4, 0xe2, 0xe4, 0x43, 0xfa, 0x97, 0x8c, 0x22, 0x4a, 0x64, 0x4e, 0xb6, 0x54, 0xf8, 0x73, 0x22, 0xaf, 0x41, 0x86, 0x34, 0x2a, 0xbf, 0xe0, 0x74, 0xdb, 0xb1, 0x08, 0x66, 0x64, 0x16, 0xb6, 0x34, 0xb2, 0xd6, 0x51, 0xd9, 0x88, 0x93, 0x0b, 0x14, 0x0e, 0x82, 0x8b, 0xe0, 0xbb, 0x33, 0x18, 0x71, 0x50, 0x44, 0x81, 0xbf, 0x26, 0xde, 0x1e, 0x5a, 0x7b, 0xff, 0xbb, 0xdb, 0x34, 0x88, 0x48, 0xcf, 0x88, 0x9f, 0x96, 0x9e, 0xf0, 0x46, 0x3c, 0x33, 0xb4, 0x7a, 0x2a, 0xa1, 0xdc, 0x02, 0xa8, 0x4c, 0x0f, 0x5d, 0x1e, 0x5e, 0x3e, 0xdc, 0xab, 0xc0, 0x40, 0x02, 0x54, 0xdc, 0xd8, 0xaa, 0x36, 0x11, 0x3d, 0x51, 0x6b, 0x44, 0x02, 0x42, 0x2a, 0x6d, 0x23, 0x45, 0x3d, 0xfb, 0xa8, 0xcc, 0xe7, 0xdc, 0xd9, 0x56, 0xc9, 0x2b, 0x43, 0x0e, 0xa6, 0x01, 0x84, 0x13, 0xb0, 0x57, 0x60, 0x81, 0x9e, 0x66, 0x04, 0x0d, 0x83, 0x86, 0x48, 0xb9, 0xca, 0x5f, 0xf8, 0x07, 0x14, 0x7c, 0x20, 0xd6, 0x91, 0x11, 0xb4, 0x8b, 0x9a, 0x1a, 0xe0, 0xa6, 0xf8, 0x50, 0x66, 0x6b, 0x51, 0xcc, 0x2e, 0xdb, 0x57, 0x1e, 0x01, 0xc9, 0x5a, 0xaa, 0x8e, 0xd7, 0x0a, 0x10, 0xe7, 0x89, 0x93, 0xfb, 0x2b, 0x2d, 0x56, 0x10, 0xbc, 0x15, 0xf7, 0xa2, 0x49, 0x68, 0x88, 0x4f, 0x6e, 0x2a, 0xc2, 0x72, 0x46, 0x61, 0x45, 0x9a, 0x28, 0x39, 0xcb, 0x73, 0x6d, 0xac, 0xed, 0x3b, 0x45, 0x43, 0x06, 0x76, 0xb4, 0x9e, 0xe0, 0xab, 0x28, 0x44, 0x2d, 0x03, 0xbb, 0x38, 0x09, 0x46, 0x6a, 0xe3, 0x09, 0xd8, 0xf9, 0x98, 0xaf, 0x9c, 0xde, 0x51, 0x07, 0xde, 0x2d, 0x10, 0xcc, 0xa7, 0x25, 0xea, 0xf3, 0xe6, 0x95, 0x16, 0x77, 0xcd, 0x80, 0xf7, 0x41, 0x12, 0x41, 0x2a, 0x80, 0x9a, 0x6d, 0xba, 0xf3, 0x96, 0xf9, 0x3b, 0x6c, 0xb5, 0x5c, 0x89, 0x6e, 0x53, 0x0a, 0x36, 0xaf, 0xd0, 0xe2, 0xf3, 0xdc, 0x28, 0xad, 0xb6, 0xf8, 0xc6, 0x98, 0x43, 0xe5, 0xca, 0x83, 0xa7, 0xc6, 0xb2, 0xc7, 0x4b, 0xa7, 0xc7, 0xe6, 0xb2, 0x89, 0x3d, 0x08, 0x6f, 0x15, 0xe4, 0x1c, 0x26, 0xc5, 0x8c, 0xfa, 0x77, 0xb3, 0x50, 0xad, 0x60, 0xfd, 0xb6, 0x29, 0x48, 0x3c, 0xc9, 0x9d, 0xb8, 0x0c, 0xf5, 0x35, 0x3f, 0x0a, 0x26, 0xd1, 0xf4, 0x04, 0xb3, 0xe4, 0x1a, 0xb4, 0xf0, 0xdf, 0x8d, 0x4a, 0x31, 0xe5, 0x06, 0x13, 0x32, 0x8c, 0x19, 0xe7, 0x56, 0x59, 0x6f, 0x24, 0xe0, 0x7f, 0xd0, 0xcf, 0x67, 0x72, 0x2e, 0x19, 0x50, 0x1b, 0x47, 0x18, 0xca, 0x28, 0xc7, 0xeb, 0x41, 0x79, 0x77, 0x69, 0x95, 0x86, 0x1f, 0x19, 0x54, 0xe5, 0x7b, 0xf2, 0x08, 0xa8, 0x49, 0x73, 0x21, 0xaf, 0x1c, 0xad, 0x5e, 0xa8, 0x4a, 0xf1, 0x1c, 0xd3, 0x03, 0x61, 0xb4, 0xe5, 0x50, 0x36, 0xed, 0x60, 0x82, 0x26, 0x87, 0xd0, 0x73, 0xeb, 0xf7, 0xf9, 0x21, 0xcf, 0xeb, 0x38, 0x66, 0x73, 0x24, 0x58, 0xc3, 0xce, 0x8b, 0x0d, 0x75, 0x80, 0x3b, 0xe5, 0x6b, 0x75, 0x25, 0x8c, 0x01, 0x51, 0xbb, 0x7e, 0x3b, 0x1e, 0xf4, 0xca, 0xb2, 0xf5, 0x37, 0x34, 0x43, 0x2b, 0x92, 0x00, 0x06, 0x50, 0x10, 0x6d, 0xd1, 0xe3, 0xca, 0xb7, 0xc7, 0x13, 0x43, 0xbe, 0x31, 0xa9, 0x27, 0x40, 0x4f, 0x70, 0x5b, 0x25, 0x9a, 0xef, 0xba, 0xff, 0xfe, 0x47, 0xda, 0x97, 0x5b, 0x45, 0x7c, 0x49, 0xff, 0x72, 0xba, 0x5a, 0x8b, 0x56, 0xc3, 0xbd, 0x68, 0x9f, 0xf6, 0x47, 0x70, 0x55, 0xba, 0x07, 0x95, 0x4f, 0x86, 0xe1, 0xec, 0xb3, 0x81, 0x1d, 0x82, 0x99, 0xf6, 0x09, 0x2b, 0xb8, 0xd5, 0x5e, 0x29, 0xf0, 0xa5, 0x22, 0x8f, 0x6e, 0xc9, 0x57, 0x9d, 0xf8, 0xf9, 0x9a, 0xe0, 0xf6, 0x1b, 0x30, 0x2b, 0x50, 0x16, 0x74, 0xe1, 0x29, 0xd6, 0x3f, 0x65, 0x5e, 0x63, 0x0c, 0x65, 0xf3, 0xf5, 0x43, 0x38, 0x14, 0x7a, 0x70, 0x3c, 0x94, 0xf7, 0x97, 0x66, 0x14, 0x49, 0xe2, 0x07, 0x3f, 0x30, 0x53, 0xcc, 0x91, 0x11, 0x37, 0x23, 0xac, 0x3c, 0x02, 0xc1, 0x7d, 0xce, 0x2b, 0x00, 0x5b, 0x46, 0x90, 0x23, 0xd8, 0xa2, 0x14, 0x63, 0xb7, 0x11, 0x5e, 0x5a, 0xb3, 0x94, 0x10, 0x5e, 0x4f, 0x6d, 0x09, 0xbf, 0xdc, 0x14, 0xcf, 0x63, 0x65, 0xe7, 0xe2, 0xcd, 0xd1, 0x38, 0xa2, 0x3b, 0xfc, 0x54, 0xa6, 0x8a, 0x59, 0x1b, 0x0a, 0x38, 0xe0, 0xdc, 0x06, 0x7d, 0x8a, 0xba, 0x8d, 0x33, 0x80, 0x8d, 0xde, 0xba, 0x43, 0x1c, 0x94, 0x60, 0x09, 0x9a, 0x75, 0x9d, 0xe6, 0xff, 0x79, 0xe1, 0xb2, 0xec, 0x73, 0x8b, 0xd3, 0x04, 0x5b, 0xb8, 0x01, 0xab, 0x7a, 0xb6, 0x13, 0x51, 0xf7, 0xeb, 0x9d, 0x45, 0x6c, 0xbc, 0xd3, 0xc8, 0x65, 0xa7, 0xec, 0x8c, 0xfb, 0x9c, 0x82, 0x73, 0x9d, 0xf1, 0x82, 0x83, 0xab, 0x97, 0x88, 0x23, 0xde, 0x10, 0xcb, 0x83, 0x14, 0xce, 0x5b, 0x71, 0xe4, 0x43, 0x93, 0xe4, 0xdc, 0x3a, 0x20, 0x2b, 0xd8, 0x68, 0x48, 0xaa, 0xdd, 0x17, 0x95, 0xa8, 0x57, 0xe0, 0x0b, 0xf4, 0xd2, 0x15, 0x54, 0x05, 0x3b, 0x09, 0x29, 0x2a, 0x80, 0xff, 0xca, 0xcd, 0xfd, 0x82, 0x73, 0x38, 0x45, 0x35, 0xa1, 0x8d, 0x08, 0x61, 0x1d, 0x50, 0x3f, 0x05, 0x52, 0xca, 0xac, 0x54, 0x19, 0xf4, 0x63, 0x9b, 0xb1, 0xa7, 0x2a, 0x08, 0xae, 0xc1, 0x07, 0xec, 0xb0, 0xdb, 0x00, 0x8c, 0x6a, 0x3c, 0xf7, 0xda, 0xda, 0x2b, 0x30, 0x62, 0xa7, 0x6e, 0x39, 0x22, 0xd0, 0xa9, 0x00, 0x4e, 0xd9, 0x47, 0x5c, 0x7d, 0x9f, 0x04, 0x91, 0x44, 0x76, 0x93, 0x83, 0x3f, 0xbb, 0x37, 0xb0, 0xa3, 0x39, 0xa7, 0xae, 0x43, 0xde, 0x5a, 0x9e, 0x22, 0x9a, 0x7b, 0xae, 0xa8, 0xa0, 0xe2, 0x89, 0x76, 0x6b, 0x92, 0x54, 0x5b, 0xc4, 0x23, 0xf6, 0xe9, 0xf7, 0x4c, 0x4b, 0x51, 0xf1, 0x61, 0x77, 0x12, 0x36, 0xb1, 0xe1, 0x3c, 0x6f, 0x2f, 0x19, 0x64, 0x5a, 0xa7, 0x29, 0xc6, 0x1e, 0x0f, 0x29, 0xb1, 0xf6, 0x06, 0x64, 0xe5, 0xc4, 0xac, 0xe1, 0x3e, 0x66, 0x9b, 0x06, 0x00, 0xc8, 0xdc, 0x2f, 0x7c, 0xa6, 0x7a, 0x30, 0x84, 0xfd, 0x75, 0xd7, 0xa4, 0x3c, 0x16, 0x4d, 0xae, 0x08, 0x00, 0x85, 0x84, 0xfb, 0x58, 0x07, 0x2c, 0xda, 0x3a, 0x76, 0x05, 0x47, 0xc3, 0xba, 0xa8, 0x23, 0xee, 0xed, 0xdc, 0xfe, 0x6c, 0x01, 0x93, 0xc2, 0x3d, 0x95, 0xde, 0x99, 0x2c, 0xce, 0x3c, 0x16, 0x90, 0x39, 0x5b, 0x74, 0x08, 0xc5, 0xdc, 0x40, 0xa2, 0xe8, 0x74, 0xfc, 0xbc, 0x00, 0x95, 0xcd, 0x10, 0xac, 0xd3, 0x06, 0x8e, 0x3a, 0x6b, 0xfe, 0xb9, 0x03, 0x09, 0x4e, 0x79, 0x8c, 0xd6, 0x84, 0x3a, 0x5e, 0x97, 0x20, 0x41, 0x68, 0xba, 0xe2, 0x32, 0xd3, 0xe0, 0x7c, 0xe7, 0x7b, 0x60, 0x7d, 0xe7, 0xac, 0x94, 0xec, 0x69, 0x8d, 0x70, 0x8c, 0x00, 0x70, 0xf6, 0x7e, 0x57, 0x3e, 0x42, 0xd8, 0x06, 0x3d, 0xd9, 0x54, 0xe8, 0x05, 0x77, 0xc2, 0x9b, 0x7d, 0x89, 0xda, 0xd7, 0x35, 0xd5, 0x83, 0xf1, 0xb8, 0x35, 0xd9, 0x41, 0x04, 0x5a, 0x60, 0xb8, 0x7a, 0xe8, 0x25, 0x38, 0x92, 0xa6, 0x24, 0xfa, 0x57, 0xd8, 0xa8, 0x27, 0xf1, 0xba, 0x08, 0xc1, 0xc8, 0xf8, 0x7e, 0xd2, 0xb4, 0x4d, 0xca, 0x3a, 0x51, 0xa2, 0x6b, 0x63, 0xe8, 0xe8, 0x03, 0x61, 0xaa, 0xf4, 0xc1, 0x04, 0xa7, 0x91, 0xff, 0x73, 0xa9, 0xfb, 0x29, 0x5e, 0xb1, 0x87, 0x11, 0x06, 0x7c, 0xf4, 0xb8, 0x4c, 0x86, 0x2b, 0x19, 0x93, 0xb5, 0x90, 0xb9, 0xfd, 0xbf, 0x40, 0x54, 0x9c, 0xa1, 0x9b, 0xc8, 0x5d, 0x4b, 0xd5, 0xfa, 0x00, 0x4b, 0xeb, 0x30, 0x23, 0x3c, 0x24, 0x13, 0x0c, 0x33, 0x48, 0x75, 0xba, 0x16, 0x5a, 0xd4, 0xce, 0x24, 0xb2, 0x8a, 0x3b, 0xcd, 0x9a, 0x5e, 0xa6, 0x2e, 0x46, 0xbf, 0xcf, 0x93, 0x4c, 0x58, 0x89, 0xf1, 0xb3, 0x5a, 0x5d, 0x6d, 0xf4, 0x0c, 0xb6, 0xd5, 0x7e, 0x77, 0x97, 0x74, 0xc8, 0xbc, 0xed, 0x04, 0x75, 0x63, 0x21, 0x89, 0xce, 0xc0, 0x9a, 0x2a, 0x73, 0x30, 0x69, 0x10, 0xeb, 0xb8, 0x96, 0x98, 0xde, 0xf4, 0x9d, 0x7b, 0x1d, 0xba, 0x13, 0x59, 0xfc, 0x88, 0x38, 0xef, 0x6e, 0xd6, 0x3a, 0x08, 0xd3, 0x63, 0x31, 0xd6, 0x2d, 0x33, 0xb4, 0x14, 0x5a, 0x4a, 0x16, 0xd0, 0x27, 0x9b, 0x41, 0xee, 0xe4, 0xba, 0x14, 0x39, 0xa0, 0x3a, 0x63, 0x76, 0x3b, 0xf0, 0xd9, 0x0e, 0xf4, 0x9b, 0x6f, 0xa7, 0x56, 0x24, 0x96, 0xb0, 0x31, 0x62, 0x7f, 0xb7, 0x78, 0xd1, 0x3c, 0xfc, 0x69, 0x9d, 0x6b, 0xd8, 0x48, 0xb3, 0x9a, 0xa2, 0x41, 0x66, 0x8f, 0xe4, 0x89, 0x01, 0x0b, 0x92, 0xf3, 0x4e, 0x43, 0xec, 0xaa, 0x16, 0xb0, 0xbb, 0x5c, 0xf5, 0xe3, 0xbd, 0x97, 0xbd, 0x7c, 0xc3, 0xad, 0xf4, 0x4e, 0xf1, 0x1c, 0x05, 0x5b, 0xa1, 0x6f, 0x95, 0x2d, 0xd9, 0x3c, 0x04, 0x86, 0x58, 0xde, 0x5b, 0x56, 0xcf, 0xec, 0x4f, 0x56, 0x72, 0xb9, 0xf9, 0x81, 0x22, 0x47, 0x5f, 0x3a, 0x62, 0xb3, 0xf1, 0x65, 0x38, 0xfa, 0xf8, 0xcb, 0x61, 0xe3, 0x28, 0x0c, 0xcb, 0x56, 0x21, 0x96, 0x8f, 0xcc, 0xfc, 0x34, 0x92, 0x78, 0xe3, 0xe7, 0x9a, 0x46, 0x87, 0x68, 0xee, 0x9d, 0x0d, 0x56, 0xce, 0xfa, 0xd1, 0xf4, 0xf9, 0xdb, 0xbb, 0xda, 0x67, 0x7f, 0x4b, 0x2a, 0xbd, 0x3c, 0x8c, 0xaf, 0xf9, 0x84, 0xdd, 0xc8, 0xa4, 0x6b, 0xe2, 0x0c, 0x5e, 0xdb, 0x39, 0x38, 0x90, 0x92, 0x71, 0x35, 0xcf, 0x6e, 0xfa, 0xd3, 0xd9, 0x88, 0x77, 0x26, 0x35, 0x87, 0x7e, 0xa7, 0x2f, 0x48, 0xbc, 0x3c, 0xc7, 0x23, 0x57, 0xca, 0x6c, 0x5a, 0x1f, 0x86, 0x52, 0x1a, 0x20, 0x89, 0xb2, 0xd8, 0xba, 0xc0, 0x72, 0x68, 0x16, 0x1c, 0x4f, 0xad, 0xdd, 0xf7, 0x7a, 0xca, 0x00, 0x07, 0xab, 0x0e, 0xab, 0xff, 0xe7, 0x87, 0x38, 0x37, 0x30, 0x1b, 0x53, 0x97, 0xa5, 0x07, 0xc0, 0x82, 0x93, 0xb3, 0x7e, 0xed, 0x49, 0x7a, 0x5c, 0x5e, 0x05, 0x13, 0x2f, 0x8b, 0xa1, 0x72, 0xe5, 0xfe, 0xf4, 0x89, 0xc7, 0xb0, 0xd6, 0xc4, 0xfd, 0x39, 0xd9, 0xbd, 0x54, 0xe2, 0x14, 0xc3, 0x9f, 0xec, 0xf6, 0x39, 0x55, 0xa1, 0xd5, 0x81, 0x56, 0x48, 0x40, 0xed, 0xbe, 0x1a, 0xb3, 0xee, 0x4b, 0xde, 0xd6, 0x73, 0x0c, 0xe3, 0x34, 0xec, 0xb5, 0x9a, 0xdd, 0x90, 0x29, 0x6b, 0x72, 0xe7, 0xfd, 0x48, 0x7b, 0x8c, 0xb7, 0x10, 0xea, 0xc5, 0x74, 0x78, 0x8f, 0x24, 0x48, 0xda, 0x4c, 0xf1, 0xae, 0xb8, 0xac, 0x2d, 0xc3, 0x74, 0xa1, 0xce, 0x5e, 0x20, 0x3c, 0x43, 0x9c, 0xfb, 0xa1, 0x99, 0x65, 0xe5, 0x99, 0x22, 0xdf, 0x04, 0x2f, 0x08, 0xe5, 0x29, 0xc4, 0xac, 0x10, 0x9a, 0xe9, 0x85, 0xbc, 0x0d, 0xaa, 0x50, 0x22, 0xe7, 0xc6, 0x99, 0x00, 0x6b, 0x9a, 0x25, 0x38, 0x48, 0x4e, 0x8b, 0x76, 0xc6, 0xad, 0x00, 0x1b, 0xba, 0xae, 0xf3, 0x7b, 0x31, 0x1d, 0xac, 0x2f, 0x03, 0xae, 0x8b, 0x28, 0x37, 0x8c, 0x0d, 0xdf, 0x63, 0x33, 0x38, 0xea, 0x4b, 0xbd, 0x19, 0x4f, 0xf2, 0xca, 0x0e, 0x6c, 0x50, 0xbf, 0x6c, 0x88, 0xeb, 0xf7, 0x36, 0xd5, 0xbd, 0x82, 0x1b, 0x3b, 0xc7, 0xb0, 0xc6, 0xa6, 0xb7, 0x21, 0x1b, 0xa8, 0x91, 0xfd, 0x23, 0xdd, 0x8c, 0x5d, 0xea, 0x0c, 0xf5, 0xdf, 0x89, 0xdd, 0xdc, 0xcc, 0xb6, 0xc2, 0x9c, 0x0f, 0xb9, 0xe6, 0xf7, 0xd2, 0xe8, 0xea, 0x4f, 0x28, 0xdf, 0x8b, 0xf8, 0xa8, 0xdd, 0x72, 0xa3, 0xba, 0x72, 0xb7, 0xf2, 0xbd, 0xb3, 0x1d, 0x9a, 0xff, 0x59, 0x78, 0x26, 0xfa, 0x34, 0x35, 0xe0, 0xec, 0x34, 0xd2, 0x1a, 0xd8, 0x8c, 0xe4, 0x8b, 0xf0, 0xff, 0x23, 0xc9, 0x18, 0x5c, 0x3a, 0x89, 0x3f, 0x6b, 0xbe, 0xb4, 0x2a, 0xac, 0xb4, 0x78, 0x9e, 0x70, 0xbe, 0x84, 0x56, 0xd2, 0xcb, 0xa4, 0x63, 0x66, 0x9e, 0xd6, 0xea, 0xc6, 0x02, 0x50, 0xf5, 0x3e, 0xf3, 0xff, 0x54, 0x1f, 0xae, 0x7f, 0x0c, 0xfb, 0x2e, 0xd5, 0x96, 0x3f, 0xad, 0x6a, 0x2f, 0x30, 0xa5, 0xba, 0xb5, 0xc1, 0xae, 0xd0, 0xfa, 0x45, 0xda, 0x94, 0x3b, 0x48, 0xd2, 0x24, 0x16, 0x33, 0x50, 0x7e, 0x7d, 0x50, 0x0c, 0x76, 0x81, 0x41, 0x86, 0xea, 0xcc, 0xf7, 0x09, 0x56, 0x2f, 0x97, 0xdb, 0xa3, 0x02, 0x90, 0xf1, 0x3c, 0xae, 0x5b, 0xc5, 0x67, 0xcf, 0x84, 0xfc, 0x13, 0xc5, 0x7f, 0x7c, 0xf9, 0x14, 0x93, 0xe4, 0x16, 0xf6, 0x70, 0x36, 0x72, 0x73, 0x72, 0x3d, 0xfe, 0x6e, 0x27, 0x23, 0x6e, 0x07, 0x58, 0x26, 0x6a, 0xae, 0x83, 0xf9, 0xcb, 0x94, 0x47, 0xaf, 0xb8, 0xb2, 0x1e, 0x77, 0xe0, 0xd6, 0x16, 0xc1, 0x7a, 0xc9, 0x3f, 0x77, 0x86, 0xe4, 0x62, 0xed, 0xe2, 0x6e, 0x05, 0xbf, 0x8a, 0x2a, 0x56, 0x1d, 0xea, 0x8f, 0x55, 0x18, 0xc5, 0x7c, 0xe3, 0x1e, 0x31, 0xef, 0x5c, 0xa7, 0x8b, 0x91, 0x62, 0x6c, 0xbd, 0x28, 0xe3, 0x76, 0xfd, 0x41, 0xd5, 0xc8, 0xfc, 0xb4, 0x51, 0x96, 0x25, 0xf8, 0xbb, 0x2f, 0xcf, 0x21, 0x06, 0x5b, 0x84, 0x13, 0x2f, 0xd7, 0xef, 0x16, 0xc9, 0x54, 0x5a, 0xc5, 0x28, 0x66, 0x5f, 0x62, 0xd4, 0xfb, 0x8b, 0x09, 0xb6, 0xaf, 0x8e, 0xdf, 0x27, 0x69, 0x24, 0xa4, 0x11, 0x13, 0x99, 0x9e, 0x7b, 0x5c, 0xb2, 0xaf, 0xd2, 0x6d, 0xa3, 0xb0, 0xe6, 0xeb, 0x3d, 0x12, 0x2b, 0xf9, 0x74, 0xf6, 0x22, 0xbc, 0xad, 0x81, 0x49, 0xeb, 0x6a, 0x18, 0x70, 0x08, 0xbc, 0x7d, 0xde, 0x3b, 0xab, 0x24, 0x07, 0x3a, 0x33, 0x6b, 0x91, 0x76, 0x45, 0xe9, 0x5b, 0xdc, 0x46, 0x8a, 0x14, 0x59, 0x6f, 0xfb, 0x76, 0xb6, 0x57, 0x17, 0x98, 0xf6, 0xaa, 0x5f, 0xe7, 0x67, 0xcf, 0x88, 0x65, 0xae, 0x07, 0x0c, 0x83, 0xa7, 0x88, 0xcf, 0x33, 0x3d, 0xb5, 0x04, 0x81, 0xe2, 0x2d, 0x99, 0xf2, 0xed, 0x98, 0x87, 0x18, 0x59, 0x62, 0xbc, 0x57, 0x06, 0x0d, 0xc4, 0xb0, 0x2f, 0x02, 0xc2, 0x84, 0x6c, 0x4a, 0x5e, 0x5d, 0x8b, 0xfd, 0x23, 0x43, 0x89, 0x55, 0x22, 0x08, 0xc1, 0x61, 0x93, 0xab, 0x08, 0x35, 0x82, 0x12, 0xa3, 0xa3, 0x28, 0x89, 0x8c, 0xfe, 0x96, 0x41, 0x9c, 0x17, 0xbd, 0xd8, 0x4d, 0x75, 0xf6, 0x21, 0x2b, 0x35, 0xff, 0x49, 0x79, 0x1e, 0x90, 0x50, 0x70, 0x66, 0x8f, 0x0b, 0x3b, 0x40, 0x2c, 0xb4, 0xda, 0x29, 0xf0, 0x6d, 0xab, 0x84, 0xd2, 0x82, 0x19, 0x4b, 0x1a, 0xc4, 0x57, 0x28, 0xf2, 0x5e, 0x88, 0xc4, 0x0d, 0x8e, 0x46, 0xda, 0xec, 0xe0, 0xbe, 0x45, 0x2a, 0x3a, 0x1b, 0xee, 0xd3, 0xff, 0x95, 0xa6, 0x27, 0x9b, 0xd2, 0xb2, 0x75, 0xfb, 0xeb, 0x09, 0xcd, 0xc9, 0x3c, 0x46, 0x2a, 0x91, 0xe6, 0x86, 0x86, 0x22, 0xc2, 0xfa, 0x4d, 0xd3, 0xd7, 0xbc, 0x31, 0x0c, 0xec, 0xa8, 0x4a, 0xd2, 0xf2, 0x78, 0xa1, 0xee, 0xba, 0x08, 0x06, 0xbe, 0xa6, 0xf3, 0x06, 0x92, 0x15, 0x4f, 0xac, 0xcf, 0x2f, 0x86, 0xe3, 0xff, 0x7f, 0x9d, 0x5d, 0x34, 0xfa, 0x21, 0xf9, 0xf4, 0x37, 0x48, 0xb9, 0xfd, 0x50, 0x6a, 0xdc, 0x32, 0xee, 0xf5, 0x48, 0x11, 0x1e, 0xfc, 0x22, 0x15, 0xee, 0x1f, 0x20, 0xd3, 0xc2, 0xb9, 0x72, 0x78, 0x79, 0x2e, 0x21, 0xd5, 0x3f, 0x9c, 0xbb, 0x7f, 0xab, 0x61, 0x93, 0x6b, 0x79, 0xaf, 0x42, 0xa9, 0x71, 0xd9, 0x48, 0x71, 0xb8, 0xde, 0x47, 0x06, 0xed, 0xe4, 0x69, 0xfa, 0x27, 0x4b, 0xb2, 0x75, 0xfd, 0x50, 0x74, 0xc4, 0xc2, 0x2d, 0x58, 0x28, 0x31, 0x26, 0x11, 0x79, 0x60, 0x23, 0x5d, 0x10, 0x19, 0xd3, 0x1b, 0x0c, 0xab, 0xa0, 0xd7, 0x49, 0x36, 0xed, 0x60, 0xd7, 0xdd, 0xd2, 0x96, 0x3c, 0x52, 0xcd, 0x5f, 0x53, 0x73, 0x1e, 0x5f, 0x95, 0x5a, 0xc4, 0x72, 0x3a, 0xb7, 0x1e, 0xb6, 0x26, 0xa7, 0x79, 0x7a, 0xac, 0x04, 0x86, 0x3c, 0x1c, 0x6b, 0xe1, 0x9e, 0xba, 0xd8, 0x5a, 0xb2, 0x0f, 0xae, 0x3d, 0xc8, 0x8c, 0x7c, 0x9c, 0x23, 0x19, 0x5d, 0x3d, 0x52, 0x28, 0x4d, 0x9c, 0x00, 0x3b, 0x6a, 0xa2, 0xc5, 0x0e, 0x50, 0x13, 0x20, 0xca, 0xc7, 0x2d, 0x3d, 0xa8, 0x20, 0xa9, 0x01, 0xcd, 0xa7, 0x2f, 0xec, 0x43, 0x52, 0x2e, 0xa0, 0x96, 0xf9, 0x8f, 0x84, 0x33, 0x64, 0x0e, 0x10, 0xa8, 0xb3, 0x1c, 0xfc, 0x2a, 0xe1, 0x99, 0x07, 0xa8, 0xb0, 0xb4, 0x79, 0x38, 0x34, 0x5a, 0x68, 0x8a, 0xe9, 0x6c, 0x79, 0x17, 0xdb, 0x49, 0xe2, 0x56, 0xf4, 0xc5, 0xa5, 0xe3, 0x5f, 0x7d, 0xbd, 0x75, 0xcf, 0xe6, 0xf5, 0x2e, 0xfe, 0x6f, 0xb2, 0xfd, 0x3d, 0x47, 0x55, 0x6c, 0xea, 0x2d, 0xee, 0x95, 0xeb, 0xc4, 0xac, 0x17, 0xe5, 0xc5, 0xfe, 0x32, 0x8f, 0xd9, 0xd9, 0x14, 0x88, 0x20, 0xb9, 0x40, 0x3e, 0xe3, 0x3a, 0xcc, 0xe6, 0xb5, 0x70, 0x79, 0x44, 0xe1, 0x80, 0x14, 0x7c, 0x98, 0x2d, 0x4b, 0x98, 0xd9, 0x63, 0x1a, 0xdc, 0xdd, 0x19, 0x65, 0x6a, 0x50, 0x39, 0x92, 0x11, 0x64, 0xe6, 0x2c, 0xf9, 0xcf, 0x50, 0xc6, 0x75, 0xbf, 0x90, 0x12, 0xcd, 0x02, 0x73, 0x9d, 0x40, 0xf8, 0xa9, 0x78, 0x0b, 0x91, 0x1f, 0x14, 0xc2, 0xf8, 0xf5, 0x96, 0xe1, 0x01, 0x17, 0x8f, 0x5c, 0xb1, 0x96, 0x63, 0xec, 0xaa, 0x62, 0x56, 0x5b, 0xce, 0x26, 0xc4, 0xb0, 0x31, 0xa7, 0x8d, 0x20, 0xdd, 0xff, 0x26, 0x07, 0x90, 0xa4, 0x25, 0x0c, 0x5e, 0x14, 0x21, 0x52, 0x47, 0xc9, 0x8c, 0xea, 0xfd, 0x2d, 0x44, 0x55, 0x7e, 0x21, 0x90, 0x25, 0x83, 0x80, 0xc4, 0x12, 0xb7, 0x60, 0xec, 0xf0, 0xdf, 0x60, 0x8f, 0xa3, 0x46, 0xca, 0x58, 0x8a, 0x9e, 0x32, 0x3a, 0x36, 0x82, 0xef, 0x20, 0x26, 0x8b, 0xda, 0xf5, 0x11, 0x1f, 0x9e, 0xf4, 0x73, 0x18, 0xa7, 0xcf, 0x04, 0x80, 0x77, 0xdf, 0x46, 0x89, 0x4d, 0xdc, 0xc7, 0x2c, 0x3c, 0xf2, 0x8c, 0x94, 0x21, 0xcc, 0xc4, 0xc1, 0x3f, 0x2f, 0x0e, 0x24, 0x52, 0x91, 0x6a, 0xa8, 0xd4, 0x86, 0x5e, 0x9b, 0x54, 0x3a, 0x4a, 0x94, 0x0e, 0xb0, 0x70, 0xa2, 0x5a, 0xd5, 0x29, 0x98, 0x6a, 0x3e, 0xe0, 0xc9, 0xa5, 0x27, 0x3e, 0xc8, 0x5b, 0xa5, 0x4e, 0x85, 0x7c, 0xdc, 0xc9, 0x6e, 0x82, 0x64, 0x14, 0x00, 0x8e, 0xa3, 0x6a, 0x45, 0x30, 0x3b, 0x98, 0x68, 0xbc, 0xef, 0x91, 0x05, 0xfa, 0x99, 0xfd, 0x1c, 0x29, 0x4a, 0x74, 0xb3, 0xad, 0xb1, 0x7a, 0xa9, 0x5e, 0x83, 0x48, 0x81, 0xb5, 0x7e, 0x61, 0xec, 0xd2, 0xc2, 0xab, 0xd6, 0xb5, 0x83, 0xf0, 0x42, 0xcd, 0x04, 0xc0, 0x55, 0xf9, 0x1d, 0x1c, 0x57, 0xbf, 0xac, 0x14, 0xbc, 0x51, 0x61, 0x7b, 0xf1, 0x4d, 0x70, 0xbf, 0x8c, 0x04, 0xdc, 0x20, 0x6f, 0x86, 0x59, 0xc5, 0xd7, 0xde, 0x0d, 0xd2, 0xa4, 0x14, 0x09, 0xb9, 0x06, 0xc6, 0x1c, 0x25, 0x53, 0xbd, 0x4b, 0x1f, 0x06, 0xd2, 0xca, 0xc1, 0xc2, 0xef, 0xc3, 0xd0, 0xab, 0xf1, 0xda, 0x19, 0x67, 0xf7, 0x89, 0xb6, 0x61, 0x06, 0x0c, 0x67, 0x7f, 0x07, 0x5e, 0x35, 0xd3, 0xdc, 0x32, 0xb1, 0xe7, 0xbe, 0xbc, 0x5b, 0xed, 0x2b, 0xf0, 0x95, 0x35, 0xc3, 0xcb, 0x30, 0x85, 0x84, 0xd8, 0xec, 0x31, 0x89, 0xcb, 0x69, 0x78, 0xbf, 0x2a, 0x46, 0x04, 0x79, 0xde, 0xdd, 0x29, 0xd6, 0x40, 0xf6, 0xf6, 0x71, 0x9c, 0x88, 0x16, 0x4b, 0x20, 0xb6, 0x72, 0x74, 0x8a, 0x2a, 0x42, 0x0b, 0xd8, 0x89, 0x21, 0xa9, 0x8e, 0x47, 0x36, 0xcb, 0x0b, 0xd2, 0xde, 0x8b, 0x7e, 0xe6, 0x23, 0x82, 0x19, 0xe1, 0xdf, 0xe1, 0xd5, 0xdf, 0xc4, 0xaa, 0x14, 0x9c, 0xd3, 0x19, 0xb1, 0x5a, 0x60, 0x18, 0x53, 0x19, 0x4c, 0x2d, 0xf5, 0x36, 0xc3, 0x91, 0x4a, 0xed, 0x85, 0xd9, 0xbe, 0x50, 0x37, 0xe9, 0x36, 0xcb, 0xc5, 0xa1, 0x1b, 0x70, 0xe5, 0x5d, 0x25, 0x3c, 0x2d, 0xd8, 0xaa, 0x3c, 0xcb, 0xc1, 0x9e, 0xf9, 0x61, 0x4c, 0xec, 0xf2, 0x4c, 0x1e, 0x7c, 0x45, 0x7a, 0x0d, 0x26, 0xcb, 0x6c, 0xd3, 0x21, 0x20, 0x61, 0x44, 0xef, 0xee, 0x73, 0x6e, 0x39, 0x68, 0x02, 0x2f, 0x36, 0x2d, 0xae, 0xd9, 0x34, 0x7e, 0x0b, 0x48, 0x2e, 0xa5, 0x1c, 0x9a, 0x2e, 0x2e, 0xd3, 0x4a, 0x69, 0x69, 0xf2, 0x5d, 0x91, 0xde, 0x4d, 0x0e, 0x21, 0xd6, 0xad, 0x91, 0xb0, 0xf2, 0x45, 0x21, 0x8d, 0x96, 0x51, 0x77, 0x7d, 0x18, 0xc1, 0xd3, 0x89, 0x0c, 0x17, 0xdb, 0xbf, 0x3d, 0xbf, 0x8d, 0x4c, 0x6f, 0x2a, 0x85, 0x38, 0x54, 0x2c, 0xc7, 0x63, 0x60, 0x8f, 0x4c, 0xce, 0x56, 0x39, 0xdb, 0x3e, 0x39, 0x4e, 0x3d, 0x54, 0xb6, 0x70, 0x19, 0xc1, 0xa9, 0xb0, 0x82, 0x33, 0x94, 0x09, 0x35, 0xd9, 0xce, 0x09, 0x7c, 0x91, 0x36, 0x8e, 0x2f, 0x28, 0x2e, 0xf6, 0xf4, 0x72, 0x84, 0xe7, 0x3a, 0xab, 0xf7, 0xcd, 0x71, 0xcc, 0xf8, 0xe9, 0x8e, 0x9e, 0x1b, 0x50, 0x0c, 0xe9, 0x49, 0xc1, 0xc0, 0xcd, 0x20, 0xa9, 0x2f, 0x59, 0xed, 0x24, 0x8e, 0x1d, 0xf0, 0x01, 0x76, 0x79, 0x7d, 0xef, 0x1c, 0x81, 0x68, 0x6f, 0x41, 0x26, 0x67, 0xc6, 0xe7, 0x84, 0x48, 0xeb, 0x02, 0xd5, 0x15, 0xc9, 0x25, 0xd2, 0x05, 0x4a, 0x37, 0xf1, 0x13, 0x26, 0x62, 0x3b, 0x6a, 0x5f, 0x1e, 0x77, 0x85, 0xaa, 0x54, 0x52, 0xbd, 0x06, 0x98, 0x9a, 0x8e, 0xba, 0x1a, 0x67, 0x0d, 0xda, 0xc4, 0xe9, 0x8f, 0x63, 0x30, 0x4f, 0xd7, 0x4c, 0xa9, 0xf8, 0xa0, 0xf1, 0x84, 0x31, 0x42, 0xd0, 0x70, 0xa2, 0x88, 0x61, 0x15, 0x08, 0x0a, 0x8a, 0xcc, 0xbc, 0x88, 0xc2, 0x77, 0x97, 0x2a, 0xa5, 0x5b, 0x92, 0x11, 0xf1, 0x3f, 0x93, 0x67, 0x97, 0x25, 0x7c, 0x78, 0x62, 0x3a, 0xfb, 0xe1, 0x7a, 0x5b, 0x27, 0xfe, 0x2e, 0xa0, 0x04, 0x8a, 0x2d, 0xf8, 0x73, 0xdd, 0x5a, 0xf6, 0xc3, 0x6a, 0x1d, 0x87, 0x5b, 0x14, 0x05, 0xab, 0xcf, 0xfe, 0x1a, 0x34, 0xd8, 0x92, 0xda, 0x54, 0x3f, 0x9e, 0x15, 0x30, 0xcf, 0x24, 0x93, 0x5f, 0x71, 0x42, 0x13, 0xf4, 0xbb, 0x69, 0xbc, 0x30, 0x4b, 0x00, 0x4a, 0x0f, 0x2d, 0xb3, 0xc3, 0x28, 0xfd, 0xc3, 0x8c, 0xd9, 0xbc, 0x1c, 0x65, 0x8e, 0xf1, 0xae, 0x63, 0x28, 0x84, 0x54, 0xbd, 0x3a, 0x31, 0xf1, 0xd8, 0x00, 0x2f, 0x0d, 0xbe, 0x8d, 0x2a, 0x5d, 0xea, 0x70, 0x78, 0x8b, 0x9e, 0xdd, 0x5f, 0x9e, 0x20, 0x32, 0x60, 0x16, 0x28, 0x0f, 0x84, 0x26, 0xa8, 0x8c, 0x5f, 0x47, 0xc9, 0x2b, 0xb9, 0xeb, 0x79, 0xea, 0xdb, 0x12, 0x7c, 0xc0, 0xea, 0xd6, 0x0e, 0xd0, 0x43, 0x2f, 0x22, 0xda, 0xbe, 0xfd, 0x98, 0x02, 0x0a, 0xf8, 0x47, 0x3e, 0x4c, 0x8e, 0x80, 0x06, 0xc0, 0xb1, 0xa0, 0x39, 0x50, 0x84, 0x5d, 0xd6, 0x9f, 0x91, 0x6d, 0x9f, 0xd1, 0xac, 0xb1, 0x05, 0x77, 0x24, 0x88, 0x1e, 0xa4, 0x86, 0x72, 0x95, 0x3d, 0x8d, 0xe2, 0x64, 0x21, 0x9f, 0xa3, 0x9e, 0x70, 0x02, 0x53, 0x26, 0xbc, 0xc3, 0x52, 0x2f, 0x97, 0x8f, 0xd0, 0x21, 0xd2, 0xb9, 0x79, 0x09, 0xff, 0xcc, 0xfb, 0x56, 0xfd, 0x56, 0x1d, 0x4a, 0xd3, 0xd3, 0x08, 0x10, 0x82, 0xa3, 0xfc, 0xa2, 0x91, 0xe4, 0x32, 0xae, 0x3d, 0x27, 0x5a, 0xeb, 0x78, 0x27, 0xd9, 0x08, 0x32, 0xc4, 0x9c, 0x3d, 0x93, 0x65, 0xe6, 0xb9, 0xe1, 0xd5, 0x49, 0x30, 0x61, 0x14, 0xa8, 0x86, 0xb9, 0x63, 0x37, 0x0a, 0x16, 0x7c, 0x34, 0x08, 0x92, 0xa7, 0xde, 0x6a, 0xd7, 0x1d, 0xef, 0x20, 0xa8, 0x24, 0x25, 0x27, 0x6a, 0x3a, 0x7b, 0x35, 0xa4, 0x36, 0x3e, 0xdf, 0xd7, 0xa8, 0x83, 0x21, 0x2e, 0xb0, 0xb3, 0x48, 0x70, 0x48, 0x1d, 0x3c, 0xb9, 0xb2, 0x4e, 0x09, 0xea, 0xef, 0x20, 0x4b, 0x80, 0x9a, 0xbb, 0x0a, 0x16, 0x3d, 0x18, 0x46, 0x02, 0x49, 0x4a, 0x90, 0x85, 0x9f, 0x4b, 0xcb, 0x82, 0xe0, 0x91, 0x9b, 0x0e, 0x33, 0x23, 0xd7, 0x26, 0x15, 0x28, 0x2d, 0xc3, 0xb7, 0xb8, 0xb3, 0x08, 0x56, 0x37, 0xa0, 0x37, 0x65, 0x33, 0x13, 0x10, 0x1a, 0x68, 0x2c, 0xd0, 0xde, 0x70, 0x75, 0x78, 0xf2, 0x47, 0xb5, 0x7d, 0xf4, 0x8e, 0x06, 0x32, 0x9d, 0x3d, 0x02, 0xf4, 0x8f, 0x27, 0x10, 0x23, 0x47, 0xc1, 0xb4, 0x24, 0x00, 0x0e, 0x5e, 0x61, 0xab, 0x2c, 0x4b, 0x34, 0xd8, 0x40, 0xba, 0xe0, 0x33, 0x4a, 0xe2, 0x97, 0x36, 0xeb, 0x85, 0xbb, 0x28, 0xaa, 0xd0, 0xaf, 0x87, 0x7f, 0x15, 0x7d, 0xa9, 0xb2, 0x35, 0xbc, 0x6d, 0xd2, 0x88, 0x69, 0x65, 0x6c, 0x53, 0x53, 0xb7, 0x1c, 0x13, 0xf5, 0xb9, 0x9e, 0x45, 0x96, 0x4d, 0x26, 0x96, 0x82, 0xa7, 0x90, 0xad, 0x53, 0x84, 0x58, 0x67, 0xdf, 0x00, 0x54, 0x38, 0x6b, 0xe8, 0xe2, 0x9a, 0x91, 0xc5, 0xfe, 0x84, 0x2c, 0x91, 0x80, 0xf3, 0xaf, 0x2d, 0xd6, 0x12, 0x65, 0x38, 0xc4, 0x96, 0x13, 0x41, 0x20, 0x4f, 0x6e, 0x9b, 0x14, 0x5c, 0x9e, 0xe1, 0x7f, 0x83, 0xe4, 0xac, 0x28, 0x61, 0xc9, 0xda, 0x81, 0xdc, 0x77, 0x22, 0x2b, 0x20, 0x57, 0x98, 0x03, 0x0d, 0x78, 0x95, 0xd7, 0xda, 0xaf, 0xb9, 0x85, 0x32, 0xd7, 0x74, 0x90, 0xab, 0x82, 0xaf, 0x88, 0xbf, 0x49, 0x36, 0x09, 0xbc, 0xe6, 0xcc, 0xc4, 0xf5, 0xa3, 0x0c, 0x48, 0xd2, 0x46, 0x9c, 0x3d, 0xe5, 0xde, 0xdd, 0x87, 0x34, 0x4a, 0x0a, 0x3c, 0xb5, 0xfc, 0x03, 0x0f, 0x65, 0x13, 0x38, 0x91, 0x56, 0xc6, 0xbe, 0x1e, 0xbc, 0xce, 0xdb, 0xfb, 0xff, 0x1e, 0xdf, 0x4f, 0xed, 0x26, 0xdf, 0xc1, 0xef, 0xcd, 0xbe, 0x9d, 0x52, 0x53, 0x13, 0x0d, 0x28, 0x32, 0x38, 0x03, 0x69, 0xf6, 0x91, 0x89, 0xed, 0xdc, 0xca, 0xb8, 0xfe, 0x66, 0x60, 0x94, 0x14, 0xdf, 0xef, 0x65, 0x9e, 0x5a, 0x0e, 0x66, 0x1d, 0x9d, 0x22, 0xdf, 0x4e, 0x8f, 0xed, 0x91, 0xef, 0x45, 0x27, 0x80, 0x1a, 0x66, 0xb3, 0xd7, 0xcf, 0xb8, 0xa8, 0x70, 0x5c, 0xaa, 0xc2, 0xf2, 0x26, 0xa9, 0x31, 0xdf, 0x96, 0x81, 0x0b, 0x8d, 0x5e, 0xf9, 0x0e, 0x8b, 0xf4, 0x08, 0x89, 0xd7, 0xa0, 0x37, 0xca, 0x41, 0x56, 0x5c, 0x71, 0xbf, 0x44, 0x7f, 0x1d, 0x59, 0xb4, 0x08, 0x16, 0xf9, 0x1d, 0x50, 0x71, 0x2f, 0x6e, 0xb3, 0xc1, 0x8e, 0x7a, 0x90, 0x78, 0x91, 0x80, 0xf8, 0x14, 0xf5, 0xfd, 0x76, 0x96, 0x7e, 0x77, 0xde, 0x59, 0x7c, 0x88, 0x8c, 0x0a, 0xfb, 0x78, 0x8b, 0x0a, 0x50, 0x40, 0x91, 0xf1, 0xa8, 0xd4, 0xa7, 0xea, 0xd2, 0x16, 0x05, 0xb3, 0x25, 0x0c, 0xe8, 0x92, 0x6b, 0x45, 0x4e, 0x19, 0x7a, 0x4e, 0x47, 0x67, 0x5b, 0x88, 0xf6, 0x56, 0x65, 0x56, 0x83, 0x31, 0x2f, 0x37, 0xe7, 0xef, 0x00, 0x72, 0x06, 0xe8, 0xaa, 0x02, 0x16, 0x4f, 0x19, 0x35, 0x9e, 0x79, 0x8f, 0xff, 0x66, 0x30, 0x9f, 0xd8, 0xc6, 0xe3, 0xe2, 0x57, 0x7e, 0x0e, 0x6d, 0x88, 0x0d, 0x0f, 0xd7, 0xf4, 0x09, 0xbd, 0x29, 0x3c, 0x69, 0x98, 0x3b, 0xa4, 0x38, 0x59, 0x70, 0xdc, 0x7e, 0x89, 0x9f, 0xf1, 0xbd, 0x2c, 0xa8, 0xb8, 0xea, 0x83, 0xa1, 0x3d, 0x6f, 0x05, 0x3a, 0x0b, 0x26, 0x3e, 0xa6, 0xd4, 0xd5, 0x1d, 0x42, 0x5e, 0x23, 0x22, 0x1a, 0xb5, 0x59, 0x6a, 0x47, 0xd6, 0x50, 0x25, 0x03, 0x69, 0xba, 0x4b, 0x44, 0x46, 0x8c, 0x19, 0xf8, 0x13, 0xb5, 0xba, 0x11, 0xf1, 0x7d, 0x65, 0x5b, 0x09, 0xf1, 0xb5, 0x9f, 0x1c, 0x72, 0x5b, 0xfd, 0x45, 0x2b, 0x04, 0x3d, 0x21, 0x1e, 0x5f, 0x82, 0xc7, 0xf8, 0xb7, 0xff, 0x6e, 0x28, 0xf9, 0x6f, 0xaf, 0x81, 0x50, 0x94, 0xdd, 0x04, 0xe5, 0xb0, 0x31, 0x68, 0xdd, 0x93, 0xac, 0x18, 0x78, 0x31, 0x8e, 0xfd, 0x93, 0x33, 0xa5, 0x38, 0x88, 0xec, 0x9e, 0xdb, 0xa3, 0xaa, 0xb3, 0xc5, 0x75, 0x38, 0x28, 0x8e, 0xa0, 0xc2, 0x75, 0x13, 0xa8, 0x7f, 0xc1, 0x8c, 0x6f, 0xc8, 0xdb, 0xc9, 0x7b, 0x86, 0xf2, 0x35, 0xc6, 0xef, 0x5b, 0xac, 0xa4, 0x2e, 0xd5, 0x7d, 0x58, 0x78, 0x39, 0xd4, 0xe8, 0x8a, 0x4c, 0xa1, 0x2e, 0xea, 0x8c, 0x16, 0xfc, 0x0d, 0x8b, 0x06, 0xbf, 0x4d, 0xb2, 0x9a, 0x02, 0xa8, 0x22, 0xb6, 0x85, 0x73, 0x64, 0xaf, 0x7e, 0xfb, 0x7c, 0x25, 0x4f, 0x7f, 0x21, 0x92, 0x96, 0x6a, 0xdd, 0x84, 0x76, 0x80, 0x4a, 0x2c, 0xf1, 0xf2, 0x74, 0xd3, 0xb5, 0xb0, 0x66, 0xb5, 0xf6, 0x1d, 0xd0, 0x61, 0x3c, 0x22, 0x76, 0xb7, 0x04, 0xbb, 0x5b, 0x0b, 0x99, 0x41, 0xb7, 0x00, 0x57, 0x86, 0x38, 0x2c, 0x00, 0x12, 0x0f, 0x3d, 0xd8, 0x6c, 0x19, 0x23, 0xdd, 0xc4, 0xc9, 0x56, 0xaa, 0x7d, 0xf5, 0x47, 0x45, 0xa9, 0xb4, 0x45, 0xef, 0x73, 0xc4, 0x26, 0x89, 0x94, 0x51, 0xe4, 0x17, 0x12, 0x77, 0x09, 0xc8, 0x10, 0xcb, 0x72, 0x82, 0x0e, 0x59, 0x70, 0x64, 0x34, 0x21, 0x46, 0xc6, 0x02, 0x06, 0x6f, 0xff, 0x6e, 0xbf, 0xc3, 0xee, 0x88, 0x57, 0xac, 0x29, 0x51, 0x5d, 0xd8, 0x82, 0xd3, 0x54, 0x15, 0x5e, 0x14, 0x04, 0x12, 0x7b, 0x11, 0x78, 0x49, 0x5c, 0xc9, 0x4d, 0xac, 0xef, 0x93, 0x76, 0x32, 0x1c, 0x65, 0x45, 0x65, 0x25, 0x5a, 0xea, 0x74, 0x02, 0x85, 0xaa, 0xdd, 0x7d, 0x74, 0xa2, 0xea, 0xb1, 0xfb, 0x6b, 0x6c, 0x31, 0xbe, 0x8a, 0x50, 0xcd, 0xda, 0x25, 0x9d, 0x27, 0x97, 0xac, 0x78, 0xe1, 0x51, 0x31, 0x5f, 0xfe, 0x13, 0xca, 0xc7, 0x65, 0x57, 0xa5, 0xf8, 0x78, 0x5f, 0xed, 0xa7, 0xcd, 0x49, 0x23, 0x66, 0x73, 0x5d, 0x91, 0x14, 0x25, 0xd2, 0x6b, 0x93, 0x5a, 0x60, 0x64, 0xd0, 0xf7, 0x55, 0x50, 0xfb, 0xf4, 0xdf, 0x8d, 0x2a, 0xe6, 0x35, 0x18, 0xed, 0xb1, 0x64, 0x4d, 0x1b, 0x0d, 0x09, 0xbc, 0xf3, 0x1b, 0xf3, 0x6d, 0x99, 0xf8, 0x4c, 0xfd, 0xb4, 0x50, 0xfb, 0x46, 0x53, 0x44, 0x46, 0x8f, 0x4b, 0xff, 0x79, 0x47, 0x44, 0xd2, 0xc7, 0xc0, 0x86, 0x8e, 0x99, 0x8d, 0x40, 0xc3, 0x20, 0xe5, 0x82, 0xc5, 0xb2, 0xd2, 0x85, 0x74, 0xe9, 0x11, 0x1e, 0x9e, 0x54, 0x45, 0xeb, 0xf6, 0x1a, 0xde, 0xd3, 0x9f, 0xea, 0xfc, 0x6d, 0x92, 0xe1, 0xdf, 0x51, 0x4d, 0x4b, 0x3c, 0x92, 0xb8, 0xaf, 0xac, 0x94, 0x93, 0x8b, 0x53, 0x1a, 0x76, 0x1d, 0xe7, 0xe0, 0xa5, 0xe2, 0x70, 0x5c, 0x9a, 0x5a, 0x12, 0xda, 0x4c, 0x77, 0x70, 0x94, 0xbe, 0x49, 0x1b, 0x46, 0x0a, 0x9c, 0x31, 0xf2, 0xae, 0x2f, 0xf8, 0xb4, 0x1d, 0x0e, 0xd4, 0x62, 0x87, 0xf6, 0x84, 0xdb, 0x64, 0xd8, 0x9f, 0xdf, 0xcc, 0x97, 0x0e, 0x6c, 0x3a, 0x24, 0xb7, 0x11, 0xe9, 0xc8, 0x97, 0x9b, 0x35, 0x65, 0x47, 0xb4, 0xf8, 0x03, 0xb3, 0x6a, 0x46, 0x29, 0x0e, 0xa9, 0x82, 0xf8, 0x9c, 0x28, 0xaf, 0x46, 0xd3, 0xbc, 0x21, 0xc6, 0x1f, 0x92, 0xef, 0x81, 0x79, 0xb7, 0xc4, 0x2f, 0x32, 0x77, 0x49, 0x68, 0xdb, 0xd1, 0x1a, 0xe6, 0x25, 0x13, 0x76, 0x4e, 0xf0, 0x93, 0xaa, 0x61, 0x8d, 0x31, 0x69, 0x75, 0x5d, 0xf4, 0xa6, 0xc4, 0xc3, 0xc2, 0x0b, 0x08, 0x99, 0x4b, 0x3c, 0x8d, 0x34, 0x6d, 0xfb, 0x12, 0xf2, 0xc9, 0x32, 0x63, 0xec, 0x73, 0x65, 0x29, 0x71, 0xdc, 0x3c, 0xac, 0xd4, 0x62, 0xe1, 0x8b, 0x94, 0xb0, 0x28, 0x9c, 0xbf, 0x69, 0xef, 0x18, 0x7e, 0xb4, 0x54, 0xa8, 0xcf, 0xab, 0x0f, 0x1b, 0xd0, 0x7d, 0xb3, 0xe4, 0x5b, 0x24, 0xe4, 0x00, 0xff, 0xc3, 0x32, 0xa0, 0x07, 0xe2, 0x9c, 0x0f, 0xfb, 0x68, 0xa9, 0x2a, 0x05, 0xec, 0x9d, 0x7f, 0x30, 0x75, 0x87, 0xf3, 0x63, 0x26, 0x26, 0x88, 0xde, 0x5f, 0x87, 0xf0, 0xbc, 0x42, 0xe3, 0x8c, 0x8c, 0x96, 0x0f, 0xfd, 0xdf, 0x8b, 0xcd, 0x58, 0x24, 0xe7, 0x88, 0x76, 0x50, 0xdf, 0xbe, 0xda, 0x55, 0x94, 0xd2, 0xc5, 0x6e, 0xcf, 0x49, 0x0b, 0x58, 0x7e, 0x94, 0x64, 0x0f, 0x39, 0xae, 0x64, 0x96, 0x3b, 0xa5, 0xd3, 0xc7, 0x5f, 0x53, 0x79, 0x82, 0xef, 0x48, 0xa5, 0x7c, 0x56, 0xa2, 0x96, 0xa1, 0x27, 0xbe, 0x23, 0x8e, 0x76, 0xd4, 0x24, 0x1c, 0xb4, 0xb4, 0xb5, 0x9c, 0xf7, 0x42, 0xb3, 0x57, 0x29, 0xfc, 0xc8, 0xa1, 0x80, 0x0d, 0xf8, 0x2d, 0x17, 0x3f, 0x99, 0x09, 0x3d, 0x44, 0xf2, 0x33, 0x19, 0xe7, 0xfd, 0x0d, 0x8e, 0xbd, 0xe7, 0x86, 0x89, 0x15, 0x2f, 0x6e, 0xcc, 0xcd, 0xb2, 0xd6, 0xc7, 0xa8, 0x85, 0x72, 0x7f, 0xc4, 0x17, 0x2b, 0x8f, 0x7b, 0x4b, 0x8e, 0x5f, 0x96, 0xc2, 0xe7, 0xc2, 0x7c, 0x40, 0x6d, 0xda, 0x2a, 0x8b, 0xfe, 0xbc, 0xc8, 0xee, 0x03, 0x7e, 0x91, 0xd5, 0xef, 0xd8, 0xc0, 0xe2, 0xb5, 0x51, 0x26, 0xf4, 0x1a, 0xd3, 0x0a, 0x0b, 0x2b, 0x81, 0xe6, 0xdc, 0x59, 0x88, 0x65, 0x99, 0xa6, 0xd9, 0xa8, 0x37, 0x20, 0xf1, 0x78, 0x33, 0x11, 0xe8, 0xaf, 0xce, 0x9c, 0xe6, 0xe0, 0x7b, 0x14, 0x90, 0xb6, 0x59, 0x65, 0x00, 0x82, 0xb8, 0xd1, 0x8d, 0xe9, 0xac, 0xd2, 0xd0, 0xb8, 0xad, 0x6d, 0x04, 0x94, 0x58, 0x45, 0x9d, 0xb3, 0x46, 0x7d, 0x51, 0x33, 0xae, 0x0e, 0x39, 0x8c, 0x28, 0x03, 0x39, 0xd6, 0x39, 0x72, 0xc3, 0x96, 0x62, 0x76, 0xd3, 0x94, 0xe6, 0xb3, 0xd2, 0x21, 0x43, 0x21, 0x8c, 0x93, 0xad, 0xb9, 0xbe, 0xf6, 0x2c, 0x7b, 0xb2, 0x84, 0xf0, 0x35, 0x25, 0xa0, 0x8a, 0xe2, 0x40, 0x95, 0xcb, 0x1a, 0x54, 0x20, 0x04, 0x2c, 0x03, 0x4b, 0xcf, 0x76, 0x5f, 0xc7, 0xa7, 0xec, 0x9f, 0xbc, 0xdf, 0x77, 0xf4, 0x85, 0xe0, 0x5a, 0xda, 0x9b, 0x1e, 0xc2, 0x84, 0x9d, 0xa8, 0xc8, 0x36, 0x87, 0x0f, 0xea, 0x4c, 0x48, 0xa9, 0xa5, 0x3b, 0x80, 0x7d, 0x52, 0x1d, 0x8e, 0x65, 0x4a, 0x1d, 0x42, 0x87, 0x95, 0x94, 0xa2, 0x42, 0xb7, 0x93, 0x1d, 0xd3, 0x63, 0x74, 0x18, 0x1e, 0x65, 0x4a, 0x08, 0x13, 0x38, 0xea, 0xf4, 0x66, 0x33, 0x6d, 0x09, 0xf8, 0x9e, 0x04, 0x3c, 0x88, 0x39, 0x38, 0xb0, 0x37, 0xbf, 0x65, 0x9e, 0x50, 0xca, 0x2d, 0x43, 0xbe, 0x46, 0x93, 0xc6, 0xb6, 0x0c, 0x81, 0x46, 0xc7, 0xcf, 0x33, 0xce, 0xbc, 0x9e, 0xdf, 0x5b, 0x71, 0xf9, 0x35, 0x2f, 0xae, 0x6c, 0xac, 0xdf, 0x83, 0xbb, 0x1c, 0xe7, 0x81, 0x3d, 0x40, 0x3a, 0x65, 0x0d, 0x34, 0xf8, 0x58, 0xce, 0x5c, 0x30, 0xef, 0x85, 0x5f, 0xc7, 0xa5, 0x40, 0x01, 0x0f, 0xd1, 0x65, 0xf9, 0x29, 0xd9, 0x82, 0xaa, 0x2c, 0x6a, 0x48, 0x1c, 0xb9, 0x35, 0x8a, 0xb9, 0x3e, 0x23, 0xee, 0x68, 0x08, 0xa9, 0xd7, 0xb7, 0xca, 0x19, 0x8e, 0xa0, 0x76, 0x8d, 0xd0, 0x57, 0xaf, 0xb6, 0x78, 0xed, 0x6b, 0x28, 0x53, 0x16, 0x43, 0x72, 0x31, 0xbf, 0x07, 0xb5, 0xd3, 0xe0, 0xbf, 0x71, 0x63, 0xc9, 0x7a, 0x1d, 0xf0, 0x98, 0x83, 0x92, 0x85, 0x98, 0xe9, 0xaa, 0xfc, 0xcc, 0x55, 0x28, 0xdd, 0x12, 0x26, 0xe6, 0xba, 0xab, 0x62, 0x89, 0x5a, 0x58, 0x08, 0xad, 0x93, 0x44, 0xad, 0xda, 0xcf, 0x48, 0xc1, 0x8e, 0xb5, 0x83, 0x39, 0xf6, 0xe7, 0x24, 0x74, 0x82, 0xaf, 0x95, 0x7a, 0xa7, 0xc7, 0x70, 0xcc, 0xc6, 0x26, 0xe4, 0xfe, 0x26, 0x55, 0x48, 0xad, 0xd0, 0xee, 0x89, 0xf4, 0x49, 0xa1, 0x07, 0x0b, 0x86, 0x98, 0x90, 0x51, 0xcd, 0x72, 0xcb, 0x70, 0xe2, 0xf4, 0xe1, 0xd9, 0x47, 0xca, 0xe9, 0xb0, 0xa1, 0x66, 0x94, 0x34, 0x81, 0x56, 0xf3, 0x2a, 0xdd, 0xb4, 0x07, 0x55, 0xdb, 0xb9, 0x7d, 0xc8, 0xe7, 0x30, 0x7c, 0x84, 0xa7, 0xa3, 0x25, 0x71, 0x2b, 0x6f, 0xd3, 0xd1, 0x2a, 0x9a, 0x22, 0x28, 0x58, 0x15, 0x06, 0xdb, 0x5a, 0xfb, 0x5f, 0x2c, 0x61, 0xfd, 0x76, 0xc9, 0x7d, 0xa8, 0xad, 0x43, 0xff, 0xf8, 0xcf, 0x71, 0xf7, 0x83, 0x29, 0xcb, 0x24, 0x5d, 0x0c, 0x74, 0x02, 0x2d, 0xec, 0x35, 0xec, 0x3e, 0xaf, 0x6d, 0xa9, 0x5a, 0xb3, 0x42, 0x31, 0x23, 0x38, 0x79, 0x77, 0x40, 0xb7, 0xb3, 0x74, 0xf7, 0xf0, 0xaa, 0xed, 0xf8, 0x91, 0x60, 0x1b, 0xeb, 0x43, 0x88, 0x6e, 0x48, 0x86, 0xcc, 0x64, 0xf6, 0xa7, 0xad, 0xa1, 0x48, 0xb1, 0x83, 0xe4, 0x3e, 0xb4, 0xf8, 0x63, 0xeb, 0x6e, 0x52, 0x53, 0xd4, 0x99, 0x52, 0x63, 0x23, 0x35, 0xe7, 0x90, 0x5a, 0xeb, 0x2e, 0xa5, 0x55, 0x50, 0xf0, 0x14, 0xc4, 0xa4, 0x93, 0xbe, 0xd7, 0xeb, 0xf9, 0x24, 0x63, 0x71, 0x81, 0x24, 0xd3, 0x49, 0xa1, 0x09, 0x56, 0xc2, 0x3c, 0xf7, 0xe1, 0xf0, 0x91, 0x52, 0x09, 0xb6, 0xf8, 0x96, 0xe6, 0xb0, 0x77, 0x5d, 0xd2, 0x81, 0x92, 0x66, 0x4d, 0x2b, 0x8b, 0x6e, 0xd6, 0x56, 0x86, 0x5c, 0xf8, 0xbc, 0x6c, 0xb4, 0x14, 0x9c, 0x29, 0x30, 0x2d, 0xfd, 0x58, 0x8b, 0xbd, 0x01, 0x89, 0xd3, 0xe8, 0xfd, 0x80, 0x2e, 0x10, 0x93, 0x25, 0x0f, 0x42, 0xcf, 0x36, 0x8a, 0xd8, 0xef, 0xa7, 0xe1, 0xcd, 0x67, 0xde, 0xef, 0xfe, 0x2e, 0xe4, 0xa3, 0x20, 0x07, 0x10, 0xb9, 0xfb, 0xa4, 0x7a, 0x5c, 0x21, 0xe6, 0x77, 0x75, 0x75, 0x94, 0x13, 0x3c, 0x5e, 0xb9, 0xe4, 0xb8, 0xfd, 0xa3, 0x77, 0xb5, 0x44, 0x30, 0x8f, 0x24, 0x77, 0x22, 0x16, 0xb8, 0x0c, 0x96, 0x81, 0x9d, 0xe3, 0xe1, 0xc1, 0x68, 0xa3, 0x98, 0x1f, 0xcd, 0x10, 0x93, 0x38, 0x85, 0x17, 0x12, 0x4f, 0xc6, 0x14, 0xd3, 0x3f, 0xdd, 0x9c, 0xde, 0x75, 0xd5, 0xac, 0xf1, 0x4a, 0xbd, 0x32, 0xcd, 0x45, 0xb5, 0x81, 0xca, 0x3e, 0x97, 0x3c, 0x7f, 0xea, 0xfc, 0x6a, 0x8a, 0xbc, 0x6c, 0xe3, 0x70, 0x5e, 0xc4, 0xaa, 0x0f, 0xc4, 0x18, 0xb6, 0xea, 0xb3, 0xa4, 0x9e, 0x9b, 0x57, 0x41, 0xf3, 0x72, 0xe4, 0x11, 0xc0, 0xd8, 0x52, 0x61, 0xde, 0x0f, 0x7a, 0x89, 0x9e, 0x5f, 0xd6, 0x21, 0x60, 0x3c, 0x8d, 0x49, 0x3f, 0x2a, 0xfe, 0xb8, 0xc2, 0xb1, 0x70, 0x1b, 0x84, 0x84, 0x0d, 0xb9, 0xff, 0xd1, 0x67, 0x90, 0x46, 0x99, 0xe5, 0x23, 0xc0, 0x04, 0x9a, 0x06, 0x02, 0x56, 0xf3, 0x5d, 0xfd, 0xf9, 0x00, 0xb7, 0x28, 0xba, 0x06, 0x4e, 0x47, 0x86, 0xfe, 0x0a, 0x7b, 0x70, 0xcf, 0x25, 0xd5, 0x52, 0xfe, 0xb0, 0x20, 0x3b, 0x62, 0x0a, 0x65, 0x03, 0x90, 0x81, 0xa4, 0x19, 0x4d, 0xe4, 0xfb, 0x4d, 0xe2, 0x36, 0x10, 0x37, 0x1b, 0xda, 0xb4, 0x80, 0x1d, 0xf2, 0xd4, 0x0f, 0x43, 0x6d, 0x90, 0xa1, 0xb4, 0x4f, 0x35, 0xdd, 0x0f, 0xf2, 0x91, 0xff, 0xc6, 0x9b, 0x69, 0xe0, 0x69, 0x66, 0xdb, 0x55, 0x68, 0x2c, 0xd9, 0x84, 0x92, 0x67, 0x9f, 0x3b, 0xfc, 0x0b, 0x68, 0xb9, 0xfa, 0x9f, 0x06, 0xdf, 0xef, 0x79, 0x68, 0x5e, 0x96, 0xe5, 0xd2, 0x1d, 0xd6, 0xe4, 0xc8, 0x05, 0x62, 0x34, 0x67, 0x47, 0x9c, 0x12, 0xe2, 0x05, 0x2e, 0x40, 0x78, 0x33, 0x2d, 0xe7, 0x10, 0x4f, 0x5c, 0xaa, 0xc1, 0x1c, 0x2d, 0xf5, 0x03, 0x94, 0x9f, 0x10, 0xd2, 0xc1, 0x2c, 0x59, 0xd5, 0x5e, 0x94, 0xa6, 0xc5, 0x95, 0xfa, 0xfb, 0xfe, 0xcd, 0x2b, 0xaf, 0x71, 0xc7, 0x62, 0x51, 0x7f, 0x5e, 0x47, 0xf4, 0xe2, 0xc5, 0xa0, 0x84, 0xbb, 0x2d, 0xde, 0xa2, 0xf8, 0x2a, 0x77, 0xe5, 0x71, 0xd8, 0x9f, 0x8e, 0xe5, 0x3d, 0x02, 0x6a, 0x7e, 0x2b, 0xae, 0x7b, 0x4a, 0x9e, 0x5b, 0xa2, 0x03, 0x0e, 0xd7, 0xe8, 0x59, 0x7e, 0x7c, 0x13, 0xab, 0xe4, 0x59, 0x75, 0x18, 0x26, 0xa2, 0x12, 0x84, 0xca, 0xad, 0xa4, 0xa0, 0x4c, 0xd1, 0x38, 0xa5, 0x55, 0xbe, 0xb1, 0x3f, 0x71, 0xac, 0x72, 0x3e, 0x71, 0xe7, 0x02, 0x9a, 0x93, 0xaa, 0x70, 0xeb, 0xec, 0xe4, 0xcf, 0x3e, 0x1c, 0xd6, 0xa3, 0x25, 0xd3, 0x61, 0x3d, 0xa8, 0x9e, 0xc1, 0x87, 0x16, 0xda, 0x98, 0x76, 0x3e, 0x1a, 0xd1, 0x48, 0xae, 0x6b, 0xfa, 0xde, 0x44, 0xe1, 0xdd, 0xea, 0xdb, 0xc0, 0x6a, 0xb5, 0xe9, 0xce, 0x83, 0x8e, 0xed, 0x8b, 0x20, 0xd5, 0x09, 0x02, 0x31, 0x7d, 0x53, 0x28, 0x2c, 0xef, 0x70, 0x59, 0xba, 0xde, 0x6c, 0xde, 0x40, 0x5d, 0xfd, 0xfe, 0xc4, 0xd7, 0x50, 0x48, 0xf0, 0x84, 0xd1, 0xa6, 0xc7, 0xbd, 0xb8, 0xe2, 0xdf, 0xae, 0x77, 0x7c, 0x13, 0x41, 0xef, 0x37, 0x2b, 0xae, 0x4d, 0xbe, 0xf7, 0xf4, 0xc9, 0x7b, 0x70, 0x28, 0xa9, 0x95, 0x31, 0x3c, 0xc4, 0x58, 0x44, 0xb6, 0xe2, 0x7a, 0xcf, 0x3b, 0x43, 0x50, 0x40, 0x17, 0xcf, 0xfb, 0xe8, 0x49, 0x5b, 0x28, 0x72, 0x66, 0x27, 0x6f, 0xfc, 0x85, 0x7c, 0x5f, 0x8e, 0xb5, 0x1a, 0x01, 0xf5, 0x92, 0xce, 0x36, 0x74, 0xa6, 0x7a, 0x5b, 0x78, 0xe4, 0x6a, 0xa1, 0x0a, 0x70, 0x9a, 0x6b, 0xe1, 0x55, 0xda, 0x89, 0x99, 0xca, 0x98, 0x2a, 0xb9, 0x1e, 0x25, 0x86, 0x3f, 0x78, 0x68, 0x77, 0x4c, 0x3e, 0xd4, 0xd9, 0x97, 0x0c, 0x47, 0x4b, 0xec, 0xae, 0xf9, 0x16, 0x35, 0xfc, 0x8c, 0x97, 0xa2, 0xa2, 0x74, 0x9d, 0x15, 0xf5, 0xb5, 0xdb, 0x19, 0xbc, 0x3e, 0x04, 0x99, 0x4a, 0x31, 0xb2, 0x2c, 0x21, 0x9d, 0x36, 0x02, 0x5e, 0x56, 0x03, 0x7e, 0x30, 0x1a, 0x56, 0x4d, 0xce, 0x75, 0x23, 0x8f, 0xa7, 0x00, 0xa5, 0x33, 0x0f, 0x7f, 0x9b, 0x96, 0x66, 0x7e, 0x90, 0xac, 0x0c, 0xd6, 0xfc, 0xa5, 0x51, 0xd1, 0x3b, 0x66, 0xf6, 0x7d, 0x47, 0xb8, 0xe7, 0xf9, 0x21, 0x94, 0x96, 0xdd, 0xb9, 0x94, 0xc5, 0x58, 0x57, 0xb1, 0x8c, 0x87, 0x6e, 0x98, 0x84, 0xf3, 0x00, 0x50, 0x80, 0x45, 0x9f, 0x71, 0xef, 0xef, 0xa7, 0x08, 0xd2, 0x9e, 0xa1, 0xf8, 0x3a, 0x6f, 0x83, 0xb8, 0x8b, 0x42, 0x73, 0x0a, 0x8e, 0x2b, 0xca, 0x5e, 0x2a, 0x17, 0x83, 0x26, 0x60, 0x46, 0xef, 0x27, 0x82, 0x38, 0x84, 0xbe, 0x53, 0x03, 0x44, 0x27, 0x6a, 0x8d, 0xf6, 0x44, 0xa4, 0x93, 0x33, 0xad, 0x23, 0x80, 0xc9, 0x3d, 0x1d, 0xd8, 0x3d, 0xa7, 0xfc, 0x0d, 0x90, 0xd2, 0x8e, 0xc8, 0xc7, 0xbb, 0xb6, 0x0f, 0x97, 0xfe, 0x6e, 0x4a, 0x77, 0x1a, 0xad, 0x6c, 0x9d, 0xa1, 0xa1, 0x3a, 0x88, 0x3f, 0x2b, 0x95, 0x85, 0xdf, 0xe0, 0x0f, 0x37, 0x7b, 0x4c, 0x69, 0x15, 0x3d, 0x06, 0xbb, 0xca, 0x08, 0x9b, 0x48, 0x94, 0x04, 0x39, 0xf8, 0x4e, 0x76, 0x22, 0xff, 0x4f, 0x80, 0x52, 0xc9, 0xb9, 0x06, 0x36, 0x69, 0xdb, 0x73, 0xae, 0x22, 0xcf, 0xfc, 0xf4, 0x04, 0xf9, 0x37, 0x8e, 0xc6, 0xd8, 0x1e, 0xf2, 0x38, 0xdd, 0x57, 0x45, 0x13, 0x56, 0x13, 0x39, 0x12, 0xfb, 0x38, 0xdf, 0xe4, 0x19, 0x65, 0x05, 0x23, 0x32, 0x40, 0xf8, 0x74, 0x3c, 0xc3, 0xcf, 0xf1, 0x52, 0x49, 0xa3, 0xc7, 0xf3, 0x77, 0x28, 0x82, 0x35, 0xaf, 0x40, 0x9f, 0xcc, 0x1f, 0x06, 0x57, 0x29, 0xa2, 0x75, 0xb8, 0x96, 0xa4, 0xcf, 0x19, 0x49, 0x5a, 0xd9, 0x28, 0x56, 0x00, 0xab, 0x11, 0x37, 0xbd, 0x3b, 0x3c, 0xb5, 0x83, 0xcf, 0xfd, 0xdc, 0x8f, 0xe0, 0xc2, 0xec, 0x8c, 0x21, 0xa3, 0xd0, 0xa8, 0x36, 0xc2, 0x27, 0x17, 0x17, 0x36, 0x0a, 0x8e, 0xe1, 0xf1, 0xf6, 0x47, 0xaa, 0x30, 0x4a, 0xad, 0xcd, 0x00, 0x1d, 0x50, 0xf7, 0xe2, 0x40, 0xc6, 0xa2, 0xd6, 0x26, 0x8d, 0x0b, 0x5b, 0xbc, 0x71, 0x43, 0xa4, 0x4b, 0x65, 0x90, 0x42, 0x72, 0x7d, 0xd9, 0x4a, 0x66, 0xeb, 0xec, 0x3f, 0x81, 0x75, 0x16, 0x7d, 0xec, 0xc9, 0x34, 0xb8, 0x28, 0x56, 0x82, 0x8a, 0xb5, 0x5e, 0x4c, 0xa0, 0xbe, 0x56, 0x6c, 0xb0, 0x7e, 0x90, 0xa2, 0xba, 0x89, 0xbf, 0xc7, 0x5c, 0xda, 0xf0, 0x68, 0x8b, 0xc8, 0xf8, 0xa1, 0x09, 0x9b, 0x27, 0x89, 0xef, 0xfb, 0x6f, 0xb5, 0xaf, 0x31, 0x69, 0xd4, 0x6b, 0x72, 0xd7, 0x41, 0x38, 0x61, 0xec, 0x80, 0x08, 0x5e, 0xd5, 0xe7, 0x49, 0x1a, 0x8e, 0x61, 0xfc, 0x73, 0x41, 0xba, 0x51, 0x62, 0x0c, 0x71, 0x67, 0x2d, 0x4f, 0x84, 0x44, 0xce, 0x9d, 0xc9, 0x40, 0x04, 0xca, 0x0a, 0xca, 0xd4, 0xbc, 0xfa, 0xa9, 0x1f, 0xfb, 0x5e, 0xe2, 0x97, 0x70, 0xfa, 0x9a, 0x7b, 0x8f, 0x9c, 0x7d, 0x66, 0x25, 0x11, 0xae, 0x7a, 0x72, 0xc5, 0x9e, 0x0b, 0x7f, 0xf6, 0xf4, 0x36, 0x79, 0xc2, 0x0d, 0xf0, 0x82, 0x9a, 0x75, 0xaa, 0x3b, 0x8f, 0x8f, 0x62, 0xdf, 0x35, 0x14, 0x82, 0x5b, 0xa0, 0x6c, 0x9b, 0xa3, 0xf2, 0xcd, 0xb2, 0x43, 0x26, 0x4c, 0x70, 0x86, 0x42, 0xe2, 0x2f, 0xe3, 0xfa, 0x35, 0x57, 0x70, 0xa5, 0x2f, 0xdc, 0x22, 0x25, 0xdc, 0xf3, 0xef, 0xc1, 0x83, 0x3c, 0xda, 0x39, 0x3b, 0x23, 0x9b, 0x6b, 0xab, 0xa7, 0x51, 0x35, 0x4b, 0xbd, 0xef, 0xa5, 0x76, 0x28, 0x22, 0x91, 0xd6, 0x3b, 0x83, 0x34, 0x74, 0xec, 0xff, 0x19, 0x02, 0xb7, 0x8b, 0x48, 0x70, 0xac, 0x32, 0x0d, 0x03, 0x3d, 0x5d, 0x20, 0xa3, 0x74, 0x98, 0xe7, 0xb5, 0x68, 0x8a, 0xf0, 0xf2, 0x7f, 0xeb, 0x31, 0xa2, 0x00, 0x52, 0xa9, 0x93, 0xa0, 0x03, 0x8a, 0xe6, 0x61, 0x43, 0x3c, 0x72, 0x9f, 0x84, 0xc1, 0x4f, 0xaf, 0x6c, 0x1f, 0xbf, 0x21, 0x96, 0xb0, 0x31, 0x81, 0x2e, 0xbf, 0x17, 0x7c, 0x98, 0x04, 0x41, 0x87, 0xd4, 0xf9, 0xc9, 0x17, 0x10, 0x8b, 0x66, 0xba, 0x92, 0x48, 0x29, 0x7f, 0x93, 0x99, 0x33, 0x7c, 0x6d, 0x11, 0xf2, 0x1d, 0x0d, 0x78, 0xbb, 0xe5, 0xe9, 0x2b, 0x6b, 0x82, 0x1a, 0x1a, 0xb5, 0x12, 0x42, 0x38, 0x64, 0x95, 0x72, 0x9c, 0x8d, 0xec, 0x65, 0x9f, 0x12, 0xdc, 0x87, 0x0f, 0x11, 0x20, 0x87, 0x65, 0x81, 0x37, 0x5f, 0x8c, 0x7d, 0xe6, 0x38, 0x42, 0xe4, 0x51, 0xa3, 0xc4, 0x06, 0xa9, 0x2f, 0x66, 0x82, 0xf3, 0x3e, 0x10, 0xf4, 0x78, 0xa1, 0x08, 0x31, 0x26, 0x63, 0xfa, 0x8c, 0x3e, 0x29, 0x8a, 0x9d, 0x4e, 0x6b, 0x8c, 0x7f, 0xd5, 0x74, 0x32, 0x28, 0xcb, 0xca, 0xb3, 0x79, 0xda, 0xc1, 0x9a, 0x9e, 0xf4, 0xea, 0x7f, 0x2d, 0x65, 0x20, 0xd9, 0x9e, 0xa3, 0x9e, 0x05, 0x04, 0x99, 0x1d, 0x22, 0x70, 0xb3, 0x45, 0x55, 0x0f, 0x2f, 0x0b, 0xb2, 0x8f, 0x7a, 0x6a, 0xfb, 0x5e, 0xd5, 0x4e, 0x7c, 0x38, 0xee, 0xb0, 0x66, 0xef, 0xf2, 0x3e, 0xd8, 0xb7, 0x51, 0xa0, 0xad, 0x12, 0xde, 0x86, 0xf6, 0x3b, 0x15, 0xbe, 0x97, 0x96, 0x1b, 0x7c, 0x3c, 0x42, 0x55, 0x3b, 0xd9, 0xa1, 0xe0, 0x95, 0x86, 0xf8, 0xbf, 0x61, 0xc5, 0x74, 0x25, 0xfd, 0x6e, 0x73, 0x4e, 0x40, 0xd1, 0x83, 0x3e, 0x4e, 0x70, 0x5b, 0x78, 0x14, 0x58, 0xd2, 0x20, 0x1d, 0x8c, 0x72, 0x32, 0x9e, 0x3a, 0xeb, 0x3c, 0xff, 0x80, 0x45, 0x49, 0x6a, 0x39, 0x9b, 0xd3, 0xb2, 0x5b, 0xe7, 0x24, 0xcb, 0x98, 0xc0, 0x6d, 0x2f, 0x24, 0xd1, 0x27, 0x95, 0x81, 0x29, 0x24, 0x2c, 0xd8, 0x7c, 0xf8, 0x05, 0x7b, 0x96, 0xb3, 0xfc, 0xe9, 0x88, 0xc6, 0xb4, 0xdd, 0xe5, 0x21, 0xf6, 0x61, 0xa2, 0x1d, 0x24, 0x86, 0xbe, 0x69, 0xda, 0x7e, 0xec, 0xcc, 0xa9, 0xad, 0x35, 0x8f, 0x1c, 0x1e, 0x2b, 0xe8, 0xd0, 0x21, 0x9c, 0x01, 0x2d, 0x50, 0xc9, 0x79, 0xad, 0x7b, 0xd4, 0x8d, 0xa8, 0xe2, 0xc7, 0x2b, 0x26, 0xd2, 0xac, 0x0e, 0xbd, 0xcd, 0xaa, 0x65, 0x64, 0x33, 0xa5, 0x66, 0x18, 0x0e, 0x33, 0x41, 0x4a, 0x0a, 0xf9, 0x24, 0xae, 0x7a, 0xf0, 0x78, 0x67, 0x24, 0x59, 0x36, 0xec, 0x62, 0x94, 0x4a, 0xae, 0xec, 0xac, 0x4b, 0xb5, 0x4b, 0x89, 0x72, 0xcd, 0xa5, 0xad, 0xc7, 0x43, 0x89, 0xf9, 0xae, 0x66, 0xfb, 0xc9, 0xd6, 0xf6, 0x56, 0x3b, 0x2a, 0x5a, 0x01, 0xed, 0x5f, 0x46, 0x7e, 0xe1, 0x12, 0x99, 0xe7, 0x39, 0x0d, 0xd2, 0xd5, 0x6a, 0xc4, 0xc5, 0x8a, 0xd7, 0xc4, 0x78, 0x53, 0xea, 0x1b, 0x90, 0xd8, 0x64, 0xdd, 0xa8, 0x7c, 0x7a, 0xe4, 0x8a, 0x4f, 0x37, 0xaf, 0x8c, 0x3a, 0xe5, 0x3a, 0x45, 0xc9, 0xe6, 0x22, 0xd7, 0xa6, 0xe5, 0x59, 0x80, 0x40, 0xc3, 0x04, 0x50, 0x71, 0x84, 0x0d, 0xf9, 0x6c, 0xda, 0x3e, 0xd3, 0x97, 0x8b, 0xf1, 0xd6, 0x14, 0x50, 0x78, 0x39, 0x00, 0x42, 0xab, 0xd8, 0xc9, 0xb6, 0xd0, 0x1c, 0xb3, 0x62, 0xd2, 0xd6, 0x06, 0xa8, 0x25, 0xbc, 0x58, 0x9d, 0xbf, 0x65, 0x48, 0x43, 0x4b, 0x65, 0x53, 0x62, 0xd4, 0xc1, 0x64, 0xad, 0x9b, 0x4a, 0x84, 0xc7, 0x15, 0x20, 0x62, 0x3d, 0x9a, 0x15, 0x83, 0x2f, 0xe1, 0xc6, 0x4a, 0x30, 0x50, 0x7a, 0x83, 0x1b, 0x88, 0x4b, 0x93, 0xd6, 0x0f, 0x89, 0xc4, 0xf7, 0xf3, 0x74, 0x76, 0xa1, 0xca, 0x80, 0x62, 0x79, 0x37, 0x64, 0xdb, 0xc7, 0xd5, 0xcd, 0x4b, 0x33, 0x5b, 0x8a, 0x3b, 0x50, 0x4c, 0x2c, 0x08, 0x7d, 0x4a, 0x90, 0x99, 0xdc, 0xf9, 0x9e, 0x76, 0xee, 0xc2, 0xd0, 0x28, 0x24, 0x00, 0xdc, 0x0c, 0x9a, 0x98, 0xf0, 0x27, 0xf9, 0xd3, 0x57, 0xa2, 0x2b, 0xb5, 0x8e, 0x88, 0x51, 0x4b, 0xf1, 0xfc, 0xad, 0x97, 0x0d, 0x42, 0x23, 0x5d, 0x1f, 0x86, 0xda, 0xbc, 0x9d, 0x4e, 0xd0, 0x61, 0xb6, 0x2f, 0x54, 0x42, 0x03, 0x25, 0xff, 0x4b, 0xdf, 0xff, 0x3e, 0x97, 0xc9, 0x4e, 0xba, 0x48, 0xcc, 0x3d, 0x58, 0x2c, 0x17, 0x67, 0x57, 0x34, 0xef, 0x66, 0x12, 0xce, 0x83, 0x58, 0x8e, 0xab, 0x65, 0x9a, 0xd1, 0xc6, 0x32, 0xd8, 0xfb, 0x9d, 0xc2, 0x84, 0xd9, 0x3f, 0xb2, 0x8e, 0x38, 0xc4, 0x0a, 0xb2, 0xc0, 0x48, 0x88, 0xdd, 0x70, 0x3a, 0x94, 0x43, 0x58, 0x48, 0xf6, 0x90, 0x08, 0xca, 0xff, 0xc6, 0xbe, 0xf4, 0xff, 0xf7, 0xa5, 0x91, 0x74, 0x33, 0xbd, 0x43, 0xd5, 0xda, 0x69, 0xa1, 0x47, 0x74, 0x67, 0x78, 0xdf, 0xa3, 0x57, 0x33, 0x62, 0xd6, 0x07, 0x55, 0x9e, 0x7b, 0xc4, 0x69, 0x75, 0x4d, 0x1a, 0x56, 0xf2, 0x30, 0xdd, 0x51, 0x87, 0x22, 0x4a, 0x38, 0x77, 0xac, 0xe9, 0xc8, 0xe5, 0x55, 0xdc, 0x06, 0xb2, 0x2a, 0xb6, 0x80, 0xb5, 0xc8, 0xd7, 0x1d, 0x04, 0xd8, 0xdd, 0x43, 0xc1, 0xcc, 0x81, 0xb5, 0x7c, 0x15, 0xd4, 0x21, 0x2a, 0x23, 0xe9, 0xbd, 0x4a, 0xab, 0x59, 0xc9, 0x25, 0xfe, 0x2b, 0xb8, 0x00, 0x20, 0xe2, 0x95, 0xb3, 0xfe, 0xa2, 0xc2, 0x5a, 0x1c, 0x78, 0x9d, 0x39, 0xbe, 0x21, 0xfe, 0x8f, 0xfa, 0x74, 0xf2, 0x90, 0x23, 0xe0, 0x30, 0xd1, 0xc4, 0x10, 0x2d, 0xcb, 0x90, 0x94, 0x03, 0xe3, 0xcc, 0x50, 0xa2, 0x2d, 0xea, 0x6e, 0x84, 0x43, 0xfc, 0xbf, 0x74, 0x84, 0x6d, 0xaa, 0x7f, 0x97, 0x46, 0x60, 0xb4, 0x26, 0xf1, 0x3a, 0x42, 0x2d, 0x21, 0xb7, 0xa2, 0x3d, 0x81, 0x7d, 0xe8, 0x92, 0x34, 0x5f, 0x30, 0x7b, 0x51, 0xeb, 0x05, 0x70, 0x8f, 0xd3, 0x1d, 0x2e, 0x5b, 0x0c, 0xb8, 0x72, 0x4e, 0x58, 0x5b, 0x47, 0xc2, 0x5c, 0xdf, 0x5c, 0x4e, 0x58, 0xde, 0x1d, 0xe9, 0x51, 0xe5, 0x2b, 0x58, 0x66, 0x64, 0x21, 0xee, 0x8f, 0x0d, 0x30, 0x6a, 0xed, 0x5a, 0x55, 0xa4, 0x51, 0x99, 0x55, 0x3d, 0x55, 0x28, 0x0f, 0xe7, 0x46, 0x7a, 0x5e, 0x49, 0x76, 0xdb, 0xa8, 0x9b, 0xde, 0x01, 0x9a, 0x13, 0x0e, 0x49, 0x10, 0xc7, 0xd4, 0xc8, 0xd4, 0xc5, 0xb4, 0x49, 0xdd, 0x74, 0xc8, 0x24, 0x37, 0x4e, 0xfa, 0x09, 0xcb, 0x9c, 0x70, 0x7f, 0xab, 0xe9, 0xf2, 0x2e, 0xc3, 0x33, 0x0d, 0xcc, 0x79, 0xbb, 0x64, 0x94, 0x6e, 0xe9, 0xcf, 0xcb, 0x0a, 0x85, 0x9a, 0xbb, 0x4a, 0x87, 0x8b, 0xcb, 0x63, 0x6f, 0xad, 0x5e, 0x1a, 0x85, 0xd1, 0x0c, 0x7c, 0xbd, 0x1f, 0x76, 0xad, 0x26, 0x96, 0xb6, 0x33, 0xce, 0xce, 0xde, 0x50, 0x51, 0x30, 0x44, 0x78, 0x57, 0xdb, 0x89, 0xe2, 0x13, 0x5a, 0x91, 0x61, 0xbc, 0x0b, 0xc0, 0xf1, 0x74, 0x27, 0xcc, 0xeb, 0x64, 0xaa, 0x29, 0xf9, 0x59, 0x3b, 0x53, 0xd5, 0x4f, 0x03, 0x78, 0xab, 0xf6, 0xb5, 0x73, 0x1a, 0xcc, 0x17, 0x1b, 0xee, 0x41, 0x82, 0x0b, 0x54, 0x61, 0x66, 0x30, 0x01, 0xcd, 0x4c, 0x6f, 0xfb, 0x96, 0xd9, 0x8b, 0x72, 0x70, 0x6c, 0xec, 0xbd, 0x14, 0x7d, 0x58, 0xce, 0x7e, 0xaa, 0xad, 0xa0, 0x9e, 0xba, 0x79, 0xed, 0x73, 0x56, 0x46, 0xcb, 0x38, 0x9c, 0xf9, 0x10, 0x67, 0x84, 0xd5, 0x6c, 0xd9, 0x22, 0x9c, 0x55, 0x22, 0x0f, 0xe6, 0xad, 0x86, 0xf9, 0xbc, 0xb9, 0xb1, 0x43, 0x93, 0x1e, 0x3a, 0xa4, 0xf0, 0x70, 0x8b, 0xf0, 0xbd, 0x5d, 0xb2, 0x09, 0x3c, 0xf9, 0xa0, 0xc8, 0xb9, 0x3e, 0xfd, 0xef, 0x10, 0x22, 0x0c, 0x44, 0x28, 0x82, 0x75, 0xcf, 0xbe, 0x24, 0xb5, 0x10, 0x3a, 0x56, 0x56, 0x0d, 0x66, 0x5f, 0x92, 0x13, 0xc2, 0xd7, 0x02, 0xc6, 0x65, 0x75, 0xf2, 0xea, 0x43, 0x8c, 0xa1, 0x16, 0x13, 0xe0, 0x94, 0xfa, 0xce, 0x34, 0xaf, 0xf5, 0x15, 0xa2, 0x63, 0x5b, 0x99, 0x90, 0x21, 0xdf, 0x0d, 0x6f, 0x82, 0x4b, 0xde, 0xe3, 0x29, 0x81, 0x71, 0x5b, 0xee, 0x0c, 0x83, 0x48, 0x43, 0xa8, 0x26, 0x6b, 0x65, 0xe0, 0xc4, 0xce, 0x09, 0xbb, 0xba, 0x94, 0x05, 0x86, 0xb2, 0xde, 0x9c, 0x21, 0x07, 0xa3, 0xaf, 0x73, 0x6a, 0x94, 0x77, 0x1d, 0xbd, 0xde, 0x5f, 0xbc, 0x9d, 0x8a, 0x99, 0x9e, 0x74, 0x7a, 0xd2, 0x7e, 0xf1, 0x2f, 0x24, 0x03, 0xdb, 0xda, 0x00, 0x0b, 0xb2, 0xab, 0x59, 0x6d, 0x87, 0x99, 0xf4, 0x22, 0xfd, 0xb4, 0xb9, 0x11, 0x23, 0x91, 0xdb, 0x09, 0xae, 0xdf, 0xe4, 0x6d, 0x8e, 0xec, 0xc1, 0x99, 0xbf, 0x24, 0x50, 0xbf, 0xb5, 0x3b, 0xf5, 0x2f, 0x30, 0xd5, 0x79, 0x4a, 0xa0, 0x5d, 0xff, 0x52, 0x46, 0x00, 0x1e, 0x11, 0x16, 0x1e, 0xa0, 0x77, 0x25, 0x4a, 0xd6, 0xb5, 0xf5, 0x67, 0x1d, 0x97, 0x7c, 0xc7, 0xd8, 0x0a, 0x3f, 0xe2, 0x77, 0x31, 0xe0, 0x69, 0x33, 0x1a, 0x29, 0xd3, 0x6d, 0x6e, 0x1c, 0xf9, 0x5c, 0x97, 0x48, 0xb1, 0x33, 0xcb, 0x4c, 0x1d, 0x0a, 0xd3, 0xdc, 0xeb, 0x73, 0xfb, 0xee, 0xe8, 0xf1, 0xca, 0xc8, 0x55, 0x4e, 0xbd, 0x4a, 0x22, 0x25, 0xc8, 0xb2, 0x84, 0x0c, 0x76, 0x7f, 0x7c, 0xda, 0xd1, 0xe6, 0x2d, 0x3f, 0x58, 0x5b, 0x80, 0x76, 0x04, 0xe5, 0xf6, 0x3a, 0x71, 0x60, 0x28, 0x56, 0x62, 0x26, 0xc2, 0xf6, 0x04, 0x25, 0xcd, 0xed, 0x5d, 0x22, 0xd7, 0x91, 0x41, 0x0c, 0x0f, 0x88, 0x6d, 0xd4, 0xdb, 0x80, 0x2a, 0xad, 0xf2, 0x69, 0x56, 0x80, 0x39, 0xdd, 0x5f, 0xa0, 0xfe, 0x61, 0xf6, 0x4b, 0xb4, 0x69, 0x58, 0x57, 0xdf, 0x65, 0x63, 0x51, 0x80, 0x7b, 0x82, 0x73, 0x94, 0x21, 0xe0, 0xaa, 0x67, 0x9c, 0x89, 0xa3, 0x3c, 0x2c, 0x79, 0x97, 0xec, 0x39, 0xdb, 0xdf, 0x72, 0x9b, 0x5e, 0xe7, 0xd4, 0xb5, 0xa8, 0x29, 0x20, 0x22, 0x30, 0xdb, 0x45, 0x8b, 0x41, 0x23, 0xf4, 0x7c, 0x1b, 0x74, 0xf9, 0x48, 0x92, 0x57, 0xa0, 0x3b, 0x84, 0x51, 0xd9, 0x00, 0x7d, 0xf8, 0xa4, 0x06, 0xbc, 0xa0, 0x19, 0x55, 0xeb, 0xa9, 0x18, 0x93, 0x46, 0x84, 0xae, 0x8b, 0x11, 0xed, 0xe1, 0xad, 0x25, 0xc9, 0xb1, 0x14, 0x03, 0x38, 0x41, 0x61, 0xa4, 0x19, 0xd7, 0xfb, 0x50, 0xc5, 0x43, 0xa4, 0x6a, 0xff, 0x4f, 0xd7, 0xfa, 0xc9, 0xf8, 0x1a, 0x69, 0x1e, 0xba, 0x78, 0x30, 0x71, 0x30, 0xd2, 0xa3, 0x63, 0x72, 0x11, 0xee, 0xd1, 0xb7, 0xad, 0xdd, 0x65, 0x1a, 0x6a, 0x68, 0x3b, 0x53, 0x27, 0x3d, 0x2e, 0xc9, 0x28, 0x32, 0xa2, 0x66, 0xc5, 0x4e, 0xea, 0x27, 0xe4, 0x1a, 0x82, 0x5e, 0x07, 0xd6, 0x8b, 0x2b, 0x80, 0xea, 0x99, 0x02, 0x46, 0x72, 0x74, 0x77, 0x1a, 0xe3, 0x04, 0x53, 0xc5, 0xc7, 0xbe, 0x41, 0x42, 0x76, 0xee, 0x8a, 0x2e, 0x0a, 0x09, 0x7c, 0x96, 0xfb, 0x2d, 0x58, 0x68, 0x29, 0x5f, 0x68, 0x16, 0x16, 0x60, 0x2d, 0x61, 0x04, 0x7f, 0x4a, 0x68, 0x32, 0xfe, 0x22, 0x7c, 0xe5, 0xba, 0x27, 0xbb, 0xfa, 0x9f, 0xc4, 0xeb, 0x05, 0xcc, 0xb5, 0x96, 0xb9, 0xab, 0x59, 0x30, 0x1a, 0x68, 0x5c, 0x60, 0x9e, 0x86, 0x68, 0xf2, 0xe5, 0xae, 0x9c, 0x93, 0xa0, 0xf0, 0x78, 0x36, 0x44, 0x81, 0x16, 0x7f, 0xd7, 0x8b, 0xdb, 0x40, 0xfa, 0x8b, 0x34, 0x22, 0xc3, 0xcd, 0xc3, 0x69, 0xa8, 0x1e, 0xd4, 0x83, 0xa9, 0xe1, 0x4a, 0xa4, 0xf3, 0x8b, 0x93, 0x06, 0xaf, 0xe0, 0x37, 0x4a, 0x88, 0x45, 0x0f, 0x3c, 0xf4, 0x47, 0xd6, 0x34, 0x87, 0x34, 0x14, 0xa5, 0xbb, 0x67, 0xde, 0xb9, 0xa8, 0xd8, 0xba, 0xf7, 0xd9, 0x3a, 0xea, 0xb5, 0xef, 0x88, 0x9a, 0xf8, 0x71, 0x4d, 0x4b, 0xa9, 0x15, 0xd7, 0x8f, 0x42, 0x83, 0x6f, 0xcd, 0x14, 0xfc, 0x67, 0x4c, 0xbe, 0xff, 0xd6, 0x4b, 0x9c, 0xcc, 0x63, 0x98, 0x0e, 0x77, 0x5b, 0xca, 0x00, 0x72, 0xc9, 0xe4, 0x20, 0x05, 0x8b, 0xa9, 0x81, 0x21, 0xff, 0x9d, 0x8f, 0x06, 0x7d, 0xd8, 0xbd, 0xfe, 0x75, 0x1f, 0x62, 0x77, 0xfd, 0x2c, 0x6a, 0x91, 0xb4, 0xc3, 0x02, 0x10, 0xa6, 0xec, 0x9a, 0x27, 0xac, 0x43, 0x43, 0x49, 0x30, 0xd3, 0x13, 0x58, 0xef, 0x55, 0x5b, 0x9c, 0xcf, 0x57, 0xba, 0xef, 0xc8, 0x58, 0xc4, 0x36, 0x0c, 0x06, 0xbc, 0x5c, 0xe1, 0xfe, 0x38, 0x4d, 0xb2, 0xe5, 0x8b, 0x8d, 0xeb, 0xec, 0x55, 0x47, 0xe0, 0x34, 0xd2, 0x42, 0x46, 0xcf, 0x29, 0x17, 0xfe, 0x03, 0x4f, 0x0f, 0x0f, 0x2d, 0x73, 0x06, 0xd5, 0xc6, 0xd6, 0x01, 0x63, 0xd1, 0x76, 0x7f, 0x58, 0x29, 0x88, 0xdd, 0xde, 0x32, 0xe1, 0xe3, 0xb6, 0xa2, 0x6f, 0x22, 0x76, 0x4b, 0x49, 0x8a, 0xb0, 0xa7, 0xbf, 0x4d, 0x0b, 0xf8, 0x30, 0x40, 0xa1, 0xc6, 0x76, 0x45, 0x93, 0xf2, 0x98, 0x22, 0x8a, 0xa1, 0x1c, 0xd8, 0xb4, 0x42, 0x2e, 0x75, 0x0f, 0xb1, 0x23, 0x91, 0x53, 0xeb, 0xbd, 0xee, 0x9d, 0x8d, 0x82, 0xbe, 0x50, 0x69, 0x7e, 0x46, 0xde, 0x8f, 0x11, 0xa3, 0x21, 0xab, 0x8a, 0xc6, 0x56, 0x5e, 0x3b, 0xd9, 0x0c, 0x50, 0x55, 0xd4, 0x6f, 0x40, 0x9f, 0x94, 0x88, 0x9f, 0x93, 0x75, 0x19, 0x76, 0x2d, 0xe1, 0xad, 0x43, 0x09, 0x61, 0x3d, 0x21, 0x02, 0xcf, 0x63, 0xee, 0x91, 0x6c, 0xb2, 0xb7, 0xe8, 0xbb, 0xda, 0x39, 0x12, 0x53, 0xdc, 0xaf, 0x84, 0x03, 0x63, 0x11, 0xba, 0x23, 0x29, 0x3e, 0x8e, 0x91, 0x70, 0x2f, 0x5a, 0x0d, 0xa5, 0x1c, 0x18, 0x98, 0x0a, 0x1a, 0x26, 0x4b, 0x09, 0x14, 0x5c, 0x54, 0x7a, 0x70, 0xd8, 0x84, 0xcf, 0x98, 0x6e, 0xcb, 0x9f, 0x86, 0xed, 0x7a, 0xbc, 0x57, 0x30, 0x7e, 0x05, 0x72, 0x64, 0x8d, 0x74, 0xf8, 0x9b, 0x5b, 0xa2, 0xbc, 0x6a, 0x26, 0x22, 0x23, 0xa9, 0x09, 0xb4, 0xf4, 0x92, 0x8a, 0xb0, 0x09, 0xe1, 0x76, 0x48, 0x51, 0x87, 0x54, 0x67, 0x06, 0xf2, 0x25, 0xa9, 0xb5, 0x07, 0x5d, 0x9f, 0xa9, 0x8b, 0xdc, 0x57, 0x61, 0x3d, 0x18, 0xaf, 0x62, 0x66, 0x2b, 0x2a, 0xff, 0x5c, 0x29, 0xd1, 0x14, 0xd1, 0xd4, 0x82, 0xed, 0x8d, 0x24, 0x94, 0xba, 0xc0, 0x72, 0xf5, 0x42, 0xa3, 0xd8, 0x3d, 0x3d, 0x2c, 0x4e, 0x7d, 0xfb, 0x0e, 0xc3, 0xa9, 0xb6, 0xba, 0xd9, 0x0b, 0xb0, 0x0a, 0xce, 0x63, 0x59, 0xac, 0x23, 0xc0, 0x4c, 0x9b, 0x80, 0xdb, 0x56, 0x1f, 0x79, 0xa4, 0xb9, 0x91, 0xad, 0x45, 0x13, 0x69, 0x2f, 0xb2, 0xdb, 0x1d, 0x09, 0x63, 0xaa, 0x87, 0x43, 0xc8, 0x91, 0xf3, 0xf4, 0x39, 0xd5, 0x05, 0x68, 0x94, 0x84, 0x96, 0xc1, 0xd0, 0xc1, 0x05, 0xf8, 0x12, 0x47, 0xe4, 0xf7, 0x8e, 0xc4, 0xda, 0x8d, 0x1d, 0x16, 0x93, 0x82, 0x50, 0x15, 0x74, 0x79, 0xf3, 0x0f, 0x47, 0xee, 0xeb, 0x49, 0x65, 0x1a, 0x98, 0x92, 0x97, 0x1d, 0x48, 0x3a, 0x76, 0x08, 0x53, 0x22, 0x35, 0xd2, 0xcb, 0xcd, 0x17, 0xa6, 0x1c, 0x78, 0xb7, 0x13, 0xd3, 0x9a, 0x9f, 0x8e, 0x5d, 0xa1, 0xe0, 0x6f, 0xb9, 0xef, 0x99, 0xd9, 0xcd, 0x58, 0xc2, 0x69, 0x81, 0x59, 0x2c, 0x24, 0xdd, 0x21, 0xc6, 0x7e, 0xdc, 0xb4, 0x39, 0x5c, 0xe0, 0x22, 0x26, 0x4d, 0xa3, 0x9d, 0xf0, 0x00, 0x59, 0x63, 0x6d, 0x54, 0xc6, 0xc2, 0x61, 0x6e, 0xf4, 0xac, 0x0c, 0x61, 0x68, 0x43, 0xcd, 0x71, 0xa7, 0x51, 0x62, 0x91, 0xe8, 0xff, 0x4c, 0x02, 0xb9, 0xfa, 0x42, 0xc7, 0x14, 0xf3, 0x0f, 0xfe, 0x2c, 0x3d, 0x7a, 0x0b, 0x3a, 0x54, 0xd9, 0x5d, 0x98, 0x78, 0xbb, 0x25, 0x36, 0xcc, 0x81, 0x4f, 0xea, 0xa7, 0x3b, 0x5e, 0x4f, 0xb5, 0xc0, 0x6a, 0x9c, 0xf8, 0xef, 0x2e, 0x50, 0x52, 0xf7, 0xd4, 0xb1, 0xf0, 0x34, 0x42, 0x99, 0xf8, 0x1a, 0xaa, 0xe8, 0x34, 0x82, 0xb2, 0xba, 0xb7, 0xbd, 0x6e, 0xdc, 0x9b, 0xda, 0x71, 0x7f, 0xed, 0x6b, 0x72, 0x9e, 0xd1, 0xd2, 0xe5, 0x43, 0x0e, 0x21, 0x55, 0x68, 0xd8, 0x6c, 0x32, 0x89, 0xc0, 0x8d, 0xad, 0xa8, 0x63, 0x26, 0x82, 0xda, 0xdf, 0xdd, 0xb8, 0x6b, 0x8f, 0x2f, 0x1a, 0x69, 0x1f, 0xb0, 0xdc, 0x98, 0xa9, 0x1e, 0x05, 0x7e, 0x06, 0x21, 0x22, 0x9f, 0x38, 0xb9, 0xe2, 0x0b, 0xd9, 0x84, 0x63, 0x99, 0x7a, 0x8c, 0xf4, 0x57, 0xb5, 0xc4, 0xc1, 0xbb, 0xf4, 0xbc, 0x82, 0x4a, 0xad, 0x35, 0x76, 0xca, 0x21, 0x0b, 0xd5, 0x02, 0xf1, 0xed, 0x19, 0xbd, 0x8d, 0xc7, 0x74, 0x5a, 0xa0, 0xf6, 0xd8, 0xe2, 0x39, 0x8a, 0x2a, 0xf1, 0x52, 0x64, 0x63, 0x63, 0x29, 0xb3, 0xf5, 0x58, 0x3d, 0xdd, 0x0f, 0xb2, 0x29, 0x0a, 0x90, 0xfe, 0xfa, 0x7b, 0x9f, 0x93, 0x4e, 0x72, 0xb7, 0x7f, 0x0f, 0x25, 0x75, 0x70, 0x88, 0x82, 0x1c, 0x25, 0xfe, 0x5a, 0x58, 0x59, 0x4f, 0xea, 0xd2, 0xf6, 0xd4, 0x12, 0xac, 0x63, 0x01, 0xc1, 0xab, 0x95, 0x0c, 0x50, 0x34, 0x5e, 0xf6, 0x67, 0xdf, 0xb7, 0x24, 0x30, 0x06, 0x98, 0xfd, 0x00, 0xc4, 0xaf, 0x52, 0x93, 0x2d, 0xff, 0xe7, 0x50, 0x05, 0x0b, 0x8c, 0x72, 0xc4, 0x42, 0x9b, 0xb3, 0x48, 0x99, 0xf2, 0xde, 0x15, 0xa7, 0x18, 0xd0, 0x01, 0x0f, 0x21, 0x8b, 0x75, 0xc8, 0xfc, 0x05, 0xba, 0xe3, 0x4c, 0x83, 0x7e, 0x3a, 0xcd, 0x21, 0x75, 0x4e, 0x32, 0x6c, 0xf8, 0xf7, 0xf4, 0x17, 0x06, 0xc9, 0x87, 0x20, 0xef, 0xee, 0x04, 0x33, 0x8a, 0xad, 0xbe, 0xc9, 0x50, 0xb3, 0x85, 0xc2, 0x6f, 0x29, 0x84, 0x8e, 0x28, 0xef, 0x98, 0x14, 0x09, 0x9c, 0xeb, 0xec, 0x4f, 0x9f, 0x1e, 0x3b, 0x5e, 0xd1, 0x7f, 0x1f, 0xd5, 0x9b, 0x65, 0x63, 0xca, 0x1e, 0xb1, 0x85, 0xd1, 0xa0, 0x4d, 0x5c, 0x7f, 0x27, 0x84, 0x0e, 0x9b, 0x7c, 0x6e, 0x7c, 0x2c, 0xc8, 0xdc, 0xcf, 0x90, 0xaa, 0x71, 0xf8, 0xb4, 0xe8, 0x6a, 0xd1, 0xb6, 0x2a, 0xe0, 0xd8, 0xeb, 0xdf, 0xe4, 0x18, 0xed, 0x31, 0x0f, 0xfe, 0xe3, 0xa6, 0xcf, 0x5a, 0x3b, 0xa5, 0x8f, 0xe6, 0x51, 0xf8, 0x86, 0x90, 0x78, 0x2c, 0xf2, 0x90, 0x16, 0x75, 0xa0, 0xd4, 0xf0, 0xcc, 0x5f, 0x7c, 0x58, 0x09, 0x6b, 0xee, 0x81, 0x28, 0xe5, 0x66, 0x89, 0x2b, 0x14, 0x8c, 0x32, 0x7a, 0xee, 0x62, 0x8e, 0xe4, 0x82, 0x12, 0x35, 0x20, 0xe6, 0xf5, 0xc7, 0x88, 0x76, 0x60, 0x00, 0xe1, 0xc0, 0xed, 0x61, 0x10, 0x9e, 0x20, 0x4a, 0xe5, 0xdd, 0x74, 0xc3, 0x65, 0x11, 0x73, 0xfe, 0x41, 0xd0, 0xc9, 0x4b, 0xcd, 0xb5, 0x3b, 0x39, 0x95, 0x8d, 0xaf, 0xd2, 0x29, 0x6c, 0x67, 0xf0, 0x07, 0xa3, 0x6e, 0x30, 0xbe, 0xd5, 0x34, 0xcb, 0xb0, 0xcc, 0x3a, 0xe5, 0x7c, 0xe5, 0xf1, 0x55, 0x75, 0x6c, 0xca, 0x0b, 0x0e, 0x23, 0x53, 0x76, 0x6d, 0xfa, 0xa9, 0xae, 0x28, 0x92, 0xf7, 0xfd, 0xef, 0x76, 0x2c, 0x21, 0xd9, 0xe3, 0x52, 0x6a, 0x19, 0x12, 0x35, 0xf1, 0x1e, 0x38, 0x27, 0x13, 0xe6, 0xac, 0x6e, 0x3a, 0x86, 0x7c, 0x8b, 0xe9, 0x6e, 0xc8, 0x63, 0x77, 0xfc, 0x2d, 0x23, 0x43, 0x90, 0x47, 0xbd, 0xd8, 0xfa, 0x9a, 0xad, 0x65, 0xe5, 0x69, 0xc8, 0x97, 0x23, 0x41, 0xf6, 0x77, 0x02, 0x6d, 0xa9, 0xe3, 0xc3, 0xc6, 0x8f, 0x83, 0x0d, 0x1d, 0x70, 0x39, 0xae, 0xbd, 0xdb, 0x6c, 0x2f, 0xf9, 0x8e, 0x07, 0xf7, 0xab, 0x5d, 0xa0, 0x83, 0x44, 0x51, 0xca, 0xf6, 0x0c, 0x14, 0xe4, 0x0f, 0x1b, 0xdd, 0x9f, 0xed, 0x72, 0x97, 0xec, 0x86, 0x10, 0x3f, 0xd6, 0xa8, 0x31, 0x17, 0x8a, 0xae, 0x0e, 0xc7, 0x39, 0x8d, 0x8a, 0x2d, 0xfb, 0x3c, 0x06, 0x4a, 0x99, 0x92, 0x88, 0xbc, 0xe4, 0xe4, 0xf8, 0xfb, 0x15, 0xc3, 0xcd, 0xab, 0x95, 0xbd, 0x15, 0xde, 0xef, 0xb5, 0x2e, 0xa0, 0x9f, 0xa0, 0xbf, 0x24, 0x11, 0x33, 0x5e, 0x7e, 0xae, 0x9c, 0x47, 0x12, 0x00, 0x16, 0x9f, 0x4c, 0x4c, 0x49, 0x47, 0x9a, 0x35, 0x26, 0x97, 0xdb, 0x95, 0x60, 0x9d, 0x2c, 0x2f, 0xad, 0x1e, 0xee, 0x3d, 0x35, 0x0a, 0x8e, 0x3d, 0x0a, 0xc9, 0xc4, 0x3d, 0x09, 0xcb, 0x1c, 0x3c, 0x96, 0xfd, 0x9f, 0x43, 0xbe, 0x92, 0x28, 0xf1, 0x81, 0xb1, 0x34, 0xa6, 0x59, 0x16, 0xda, 0x56, 0xe2, 0x3b, 0x45, 0x01, 0x79, 0xb6, 0x6b, 0x0b, 0x36, 0x01, 0x15, 0xb4, 0x61, 0x88, 0xef, 0x68, 0x9f, 0x0b, 0x28, 0x15, 0xe1, 0x11, 0x94, 0x37, 0x42, 0x62, 0xd6, 0xb2, 0xa1, 0x9b, 0x1c, 0x47, 0xab, 0x62, 0xa8, 0xe9, 0x00, 0xfa, 0x37, 0xf5, 0xaa, 0x31, 0x31, 0x77, 0xca, 0x47, 0xa5, 0x9c, 0xf3, 0x4a, 0x92, 0x18, 0xbb, 0xa2, 0x1a, 0x15, 0xa1, 0x4b, 0xe9, 0xd0, 0x35, 0xef, 0xbe, 0x72, 0x0a, 0x48, 0xf1, 0x44, 0x22, 0xb1, 0xae, 0xcd, 0x95, 0xc5, 0x76, 0x46, 0x1e, 0xb9, 0x21, 0x92, 0x59, 0x56, 0xb9, 0x3c, 0x3f, 0x0b, 0xf4, 0x4d, 0x12, 0x9d, 0x68, 0xca, 0x68, 0xb5, 0x85, 0x30, 0xb6, 0x4c, 0x06, 0x0b, 0x68, 0xc0, 0xff, 0x9c, 0x0a, 0x5e, 0x5c, 0xa5, 0xac, 0xb2, 0x48, 0xfa, 0x02, 0xe5, 0xe9, 0x2f, 0x8e, 0x68, 0x47, 0xa8, 0xd1, 0xa0, 0xc1, 0xbc, 0xcd, 0xea, 0x39, 0x89, 0x83, 0xe5, 0x60, 0xc3, 0x97, 0x4a, 0xf9, 0xf8, 0x5a, 0x7f, 0x74, 0x16, 0x49, 0x8c, 0x77, 0xba, 0x3b, 0x09, 0xa1, 0xf8, 0xe3, 0x09, 0xa7, 0x38, 0xdd, 0xf0, 0x31, 0x1d, 0xda, 0x4f, 0x0e, 0x09, 0xad, 0xaa, 0x44, 0x6d, 0x2c, 0x0c, 0x29, 0x18, 0x84, 0x51, 0xd7, 0x0d, 0x28, 0xd2, 0x3a, 0x03, 0x41, 0x80, 0x48, 0xfc, 0xb6, 0x90, 0xed, 0xd5, 0x45, 0xcf, 0xd9, 0x93, 0x2a, 0x98, 0x57, 0x5e, 0x44, 0x0d, 0x69, 0xdd, 0xe5, 0x5c, 0x12, 0x65, 0xf5, 0xdc, 0xe5, 0xb1, 0xef, 0xf9, 0x0d, 0xbc, 0xe2, 0xc7, 0x07, 0xf5, 0xf2, 0xd3, 0xfe, 0x63, 0x73, 0x73, 0xd8, 0x41, 0x81, 0xde, 0x4c, 0x41, 0xe3, 0x31, 0xaf, 0xb7, 0xaf, 0x41, 0x36, 0xb0, 0xdd, 0xe7, 0xb5, 0x4b, 0x97, 0x5c, 0x63, 0x02, 0x90, 0xeb, 0xd6, 0xcc, 0x7c, 0x85, 0x67, 0xa2, 0x32, 0x60, 0xf6, 0x92, 0xa5, 0x82, 0xf3, 0x5e, 0xf2, 0x17, 0x29, 0xe0, 0x28, 0xe4, 0x6f, 0x07, 0x98, 0x7f, 0x80, 0x93, 0x99, 0x81, 0xf0, 0xe1, 0x35, 0x28, 0xe1, 0x60, 0x2d, 0xf9, 0xb7, 0x56, 0x55, 0x1c, 0x52, 0xa0, 0x9b, 0x33, 0xe3, 0xff, 0x49, 0x0d, 0x9f, 0xe0, 0xa0, 0xa4, 0xb6, 0x5a, 0x1e, 0x69, 0x2d, 0x1e, 0x90, 0x95, 0x04, 0x2d, 0xd5, 0xea, 0xd5, 0xf8, 0xb8, 0x4f, 0xe7, 0xc5, 0xa1, 0xf4, 0x16, 0xaa, 0x4b, 0xef, 0x43, 0x21, 0xb4, 0x53, 0xb3, 0x2b, 0xe4, 0x28, 0x8f, 0x3d, 0xf2, 0x86, 0xa1, 0xff, 0xff, 0x51, 0x4f, 0x1d, 0x07, 0xd3, 0x1d, 0x61, 0x86, 0xbf, 0xc1, 0x5a, 0xa4, 0x96, 0x57, 0x4c, 0xcb, 0xcf, 0x98, 0x0c, 0x29, 0x1f, 0x55, 0xa8, 0x0f, 0x58, 0x03, 0xa5, 0x53, 0xfa, 0x3b, 0xd8, 0x6a, 0xf1, 0x9d, 0xdb, 0x83, 0x12, 0x96, 0x42, 0xf7, 0x9e, 0xe0, 0x21, 0xba, 0x77, 0x10, 0x01, 0x89, 0xfa, 0xd7, 0x6b, 0x89, 0x32, 0xe8, 0x4e, 0xe9, 0x09, 0x56, 0x3b, 0x82, 0x64, 0xbf, 0xfc, 0x8e, 0xcc, 0x8e, 0x0f, 0xd3, 0x37, 0x4a, 0x5f, 0xa3, 0x30, 0x88, 0x3d, 0x74, 0x2c, 0xb6, 0xcc, 0x82, 0x4e, 0x93, 0x06, 0xec, 0x32, 0x25, 0xc6, 0xf5, 0x65, 0x16, 0x8d, 0x25, 0x8d, 0x2b, 0xc9, 0x5e, 0x7b, 0x90, 0xf2, 0xb4, 0x4f, 0x31, 0x77, 0x7b, 0xbd, 0x74, 0xb5, 0x4a, 0x24, 0x00, 0x9d, 0x86, 0x9a, 0x19, 0x44, 0x16, 0xec, 0x1f, 0x93, 0xe0, 0x8f, 0x45, 0x1f, 0x7b, 0x8b, 0xc1, 0x82, 0xda, 0x47, 0x4c, 0x16, 0x9f, 0xd3, 0x9f, 0x84, 0xf8, 0x37, 0x1b, 0x2d, 0xd9, 0x83, 0x70, 0xdd, 0x4e, 0xac, 0x6f, 0x62, 0xd3, 0xc2, 0x46, 0xeb, 0x61, 0xe3, 0xb4, 0xc8, 0x5e, 0xe9, 0x9f, 0x35, 0x0b, 0xf0, 0x08, 0xf2, 0x31, 0x2d, 0xf6, 0x7d, 0xc6, 0xe1, 0x9d, 0x6d, 0xe7, 0xa3, 0x50, 0x03, 0x42, 0xb8, 0xdc, 0x7a, 0x8b, 0x5e, 0x24, 0x65, 0x30, 0x85, 0x3f, 0x23, 0x68, 0xf0, 0x5c, 0xdd, 0x1a, 0xbe, 0x87, 0xf5, 0x1c, 0xa8, 0x4e, 0x53, 0x8d, 0xeb, 0xaf, 0x71, 0xd0, 0x87, 0xed, 0xbc, 0x6a, 0x44, 0x2f, 0xe5, 0x3c, 0x83, 0x10, 0xb1, 0x26, 0x18, 0xb1, 0x9c, 0xd8, 0x16, 0x0e, 0xde, 0x3c, 0x5b, 0xfd, 0x0a, 0xc8, 0x42, 0x9a, 0x7f, 0xce, 0x89, 0x62, 0xb9, 0xab, 0x62, 0x10, 0xb3, 0x8a, 0x27, 0xac, 0xe9, 0xfa, 0x1c, 0x09, 0x7d, 0x53, 0x0b, 0x1a, 0xa1, 0xde, 0x96, 0xa4, 0xb0, 0x44, 0x71, 0x4d, 0xe1, 0xbe, 0xfd, 0x69, 0xf6, 0x40, 0x58, 0xa4, 0x84, 0xb2, 0x27, 0xe8, 0xd3, 0x71, 0x17, 0x0e, 0xfb, 0x13, 0x19, 0xad, 0x6d, 0xdb, 0xc3, 0x2c, 0x0e, 0xee, 0x71, 0x7c, 0xd9, 0xcf, 0x0d, 0x2e, 0xd5, 0x15, 0xfb, 0xe7, 0xba, 0x89, 0x22, 0xab, 0xea, 0x5b, 0xb0, 0x6a, 0x5f, 0x4c, 0x78, 0x2d, 0x46, 0xf8, 0xee, 0x52, 0x87, 0x2b, 0x34, 0x36, 0x69, 0xbf, 0xea, 0xb3, 0xf3, 0x71, 0x49, 0x34, 0xd1, 0x45, 0x72, 0x74, 0xd2, 0xe4, 0x2e, 0x22, 0xb9, 0xfb, 0x5b, 0x94, 0xc4, 0x4a, 0x23, 0x59, 0x74, 0x0f, 0x5e, 0x99, 0xbf, 0xf5, 0x70, 0x86, 0x7c, 0x4a, 0x0e, 0x02, 0xe0, 0x1c, 0xcf, 0xdb, 0x78, 0x47, 0xaa, 0x78, 0x6b, 0xbd, 0x88, 0x15, 0xfc, 0x7f, 0x2e, 0x3b, 0x4f, 0x39, 0x10, 0xa4, 0x93, 0x47, 0xab, 0xaf, 0xd1, 0x80, 0xde, 0xd2, 0x36, 0x8b, 0x51, 0x51, 0x3f, 0xbb, 0xb5, 0x9a, 0x02, 0xc0, 0xac, 0x0a, 0x56, 0xcf, 0xea, 0x5c, 0x41, 0x8c, 0xb8, 0x55, 0x13, 0x31, 0xbf, 0x82, 0x8c, 0xf9, 0xdc, 0x67, 0xe9, 0x85, 0x3d, 0x17, 0xd1, 0x3b, 0x59, 0xbc, 0x66, 0x8d, 0x52, 0x84, 0xe7, 0x28, 0x90, 0xed, 0xb2, 0xa9, 0xa8, 0xdf, 0xeb, 0xd2, 0x31, 0xc0, 0xcb, 0x53, 0xe2, 0xc2, 0xc4, 0x42, 0xf8, 0x06, 0x7a, 0x37, 0x8e, 0x4b, 0x51, 0x57, 0x2d, 0x76, 0x96, 0x7e, 0x40, 0xbc, 0x00, 0x1a, 0x61, 0xc1, 0x16, 0x7f, 0x9c, 0x8a, 0x04, 0xe2, 0x77, 0x1f, 0x50, 0xc4, 0x36, 0x4b, 0xf2, 0x52, 0x74, 0x4f, 0x80, 0x59, 0xf1, 0x15, 0xbf, 0x08, 0xbc, 0xd7, 0x6e, 0x1f, 0x98, 0x1c, 0x58, 0x42, 0x2e, 0x67, 0xbe, 0xdb, 0x41, 0x26, 0x92, 0x47, 0xb5, 0x36, 0x53, 0x88, 0xdd, 0x83, 0xe3, 0x02, 0xa3, 0xc5, 0xe8, 0xfb, 0xf5, 0x42, 0x5a, 0xa3, 0x8b, 0x9c, 0xdd, 0xdf, 0x26, 0x30, 0x1f, 0xa0, 0x5a, 0xdb, 0xad, 0xec, 0xb4, 0x31, 0xcb, 0x89, 0x6e, 0x94, 0x41, 0x88, 0xcc, 0xc3, 0xc7, 0x74, 0x80, 0x44, 0x25, 0x91, 0x57, 0xde, 0x35, 0xca, 0x7e, 0x75, 0xd6, 0x39, 0x49, 0x37, 0x93, 0xb3, 0xd7, 0xe5, 0xc9, 0x74, 0x8f, 0xe7, 0x18, 0xf9, 0x42, 0x76, 0xca, 0x66, 0xb0, 0x97, 0x89, 0x91, 0x14, 0x53, 0x40, 0x57, 0x5d, 0xdc, 0x22, 0x2b, 0xfd, 0xc4, 0xc9, 0xe0, 0x48, 0x98, 0x94, 0x6d, 0xc0, 0x87, 0x48, 0xbd, 0x1e, 0x79, 0x9f, 0x89, 0xea, 0xbe, 0xa8, 0x53, 0x88, 0x2b, 0x41, 0x61, 0xfc, 0xd5, 0x88, 0xfc, 0xe3, 0xae, 0xdb, 0xa4, 0xfa, 0xf1, 0x86, 0xa2, 0xbb, 0x40, 0x9c, 0x29, 0x94, 0xbb, 0x56, 0x8a, 0xa9, 0xc6, 0x2d, 0xf9, 0xd2, 0x83, 0xf4, 0x11, 0x54, 0xf2, 0x8a, 0x49, 0xea, 0xf7, 0xa5, 0xfd, 0x0f, 0xbf, 0x84, 0xf5, 0x50, 0x15, 0x46, 0x57, 0xf1, 0x4e, 0xd1, 0x7f, 0x94, 0x6f, 0x9a, 0xc8, 0x99, 0x42, 0x29, 0xed, 0x95, 0x3b, 0x2e, 0x7a, 0x63, 0xf3, 0x08, 0xdb, 0x51, 0xd3, 0x97, 0xb4, 0xef, 0x91, 0x1f, 0x4e, 0x9d, 0x96, 0x4f, 0xf8, 0x1f, 0xc9, 0xe4, 0x89, 0xe5, 0xf7, 0x6a, 0x73, 0xbb, 0x6b, 0x08, 0x56, 0xb8, 0x6d, 0x30, 0x13, 0x9e, 0xc0, 0xf4, 0x62, 0x56, 0x6e, 0xe0, 0xb6, 0x4d, 0xd9, 0xb7, 0x95, 0x9d, 0x6d, 0x59, 0x2f, 0xaa, 0x6e, 0xfa, 0x01, 0x67, 0x4a, 0x3e, 0xa6, 0xe1, 0x49, 0xe1, 0x1a, 0xe8, 0x1c, 0xe4, 0x0d, 0xb5, 0xa0, 0xa8, 0x68, 0x99, 0x08, 0xc2, 0xe1, 0xef, 0xca, 0x54, 0xdb, 0xc0, 0x94, 0x9f, 0xf7, 0x0a, 0xb1, 0x21, 0x02, 0xe5, 0x87, 0x4e, 0x2a, 0xe2, 0xa9, 0xb8, 0x00, 0xb8, 0xff, 0x9e, 0xc2, 0x2f, 0x96, 0xb1, 0xd3, 0xf3, 0xea, 0xa8, 0xd9, 0xf7, 0x57, 0x31, 0xf7, 0x8d, 0xc7, 0x88, 0x1a, 0xdb, 0x98, 0x64, 0xb5, 0xb9, 0xfc, 0xf2, 0x2a, 0x78, 0xd4, 0x54, 0x1a, 0x75, 0xea, 0xd5, 0xe8, 0x79, 0x92, 0x99, 0xa4, 0xff, 0xb2, 0x80, 0xa9, 0x2f, 0xd7, 0x09, 0x11, 0x86, 0x73, 0x5b, 0x67, 0x31, 0x17, 0xf9, 0xcf, 0xd3, 0x40, 0x1b, 0x43, 0x0c, 0x2f, 0x0e, 0x00, 0xca, 0x6b, 0xce, 0xf0, 0x64, 0x61, 0x13, 0xf2, 0x80, 0x3e, 0xc4, 0x61, 0x6a, 0x8e, 0x94, 0x10, 0x62, 0xd3, 0xf6, 0x4c, 0xf5, 0xe0, 0x89, 0xa7, 0x09, 0x4a, 0x6e, 0xdb, 0x8b, 0x2e, 0x05, 0x3a, 0xef, 0xbc, 0x3c, 0x9d, 0x4a, 0x1e, 0xb3, 0xbe, 0xe1, 0x31, 0xd5, 0xb7, 0x53, 0x1d, 0x53, 0xfe, 0xab, 0xc0, 0x2e, 0x64, 0x77, 0xc1, 0xf0, 0x87, 0x99, 0xd8, 0xdb, 0xd4, 0xdf, 0xe5, 0x74, 0xf4, 0xf6, 0x19, 0x70, 0x02, 0x4c, 0xac, 0xb4, 0xa2, 0x8e, 0x36, 0x84, 0x67, 0xf7, 0x45, 0x18, 0x82, 0xa0, 0xbf, 0xb3, 0x02, 0xa7, 0x4d, 0xaa, 0x29, 0xf8, 0xfa, 0xed, 0x25, 0xf3, 0x9f, 0xba, 0xd0, 0xb2, 0x47, 0x14, 0x1d, 0x4e, 0x9f, 0x10, 0x12, 0x6c, 0x6e, 0x62, 0x2f, 0x25, 0x37, 0x62, 0x20, 0x7e, 0xae, 0x26, 0x4a, 0x23, 0xa0, 0x7b, 0x73, 0x00, 0x13, 0x26, 0xa9, 0x62, 0xab, 0x5e, 0x49, 0xc0, 0x25, 0x30, 0xa8, 0xd8, 0x41, 0x27, 0x9d, 0x52, 0xc4, 0x15, 0xa8, 0x00, 0x5a, 0xeb, 0x43, 0x21, 0x9b, 0x6b, 0x20, 0x91, 0x51, 0x31, 0x33, 0x4f, 0x70, 0xf1, 0xd8, 0x43, 0xd8, 0x0a, 0x4b, 0xed, 0x8c, 0xfb, 0xd8, 0xcb, 0xac, 0x14, 0x90, 0x5c, 0x2d, 0x3c, 0xc2, 0x1a, 0x0e, 0xa2, 0x40, 0x7f, 0xb9, 0xd1, 0x2a, 0x5b, 0xfb, 0x3c, 0x93, 0x7a, 0x10, 0xdc, 0x5b, 0xee, 0x34, 0x3a, 0x70, 0x3b, 0xc8, 0x6b, 0x5b, 0x90, 0xdb, 0xa5, 0x5b, 0xe0, 0x0f, 0x3a, 0x88, 0xed, 0x0a, 0x04, 0x2c, 0xcc, 0xb1, 0x6c, 0x76, 0x29, 0x32, 0xce, 0x11, 0xcc, 0x82, 0xe3, 0xe1, 0x85, 0x76, 0x3b, 0xfb, 0x19, 0xa2, 0x21, 0x74, 0xab, 0x4e, 0x84, 0x54, 0x2d, 0xe5, 0xc8, 0x1b, 0x57, 0x35, 0x4c, 0xd3, 0x4f, 0xc6, 0x21, 0x77, 0x65, 0x03, 0x8a, 0x03, 0xb3, 0x63, 0x64, 0xc1, 0xba, 0x7e, 0x25, 0x3e, 0x2c, 0x03, 0xc7, 0xbe, 0xe8, 0x2e, 0x13, 0x41, 0x04, 0x0f, 0x6b, 0xfc, 0xff, 0xa6, 0xd0, 0x87, 0x28, 0x12, 0xaf, 0xff, 0xfc, 0x8e, 0x85, 0x12, 0x7a, 0x94, 0x5f, 0xb0, 0x35, 0xad, 0x60, 0x43, 0x4b, 0xe0, 0xa9, 0x70, 0x44, 0xe2, 0x9b, 0x48, 0x90, 0x69, 0x08, 0x7b, 0x41, 0xc5, 0xc5, 0x42, 0x6c, 0x9e, 0xc9, 0x31, 0x43, 0x84, 0xfe, 0x58, 0x32, 0x31, 0x7f, 0x8b, 0x3c, 0x47, 0xed, 0x26, 0x1d, 0x1b, 0xba, 0xae, 0x2f, 0xe3, 0x8d, 0xd0, 0xb7, 0xa3, 0xd9, 0x3d, 0x3a, 0x26, 0x71, 0xf9, 0xe8, 0xd1, 0x56, 0x59, 0xd3, 0x1d, 0x20, 0x03, 0xad, 0xf1, 0x0e, 0x8d, 0x8a, 0xfd, 0xbe, 0x64, 0x9a, 0x2f, 0x75, 0x79, 0x9e, 0xcb, 0x1e, 0x21, 0xaf, 0xe5, 0xc4, 0x33, 0x5e, 0x5c, 0xfc, 0x20, 0x56, 0x48, 0xbf, 0xb7, 0xd9, 0xfd, 0x62, 0x53, 0xb2, 0xc8, 0x42, 0xc9, 0x22, 0x2c, 0x76, 0xcb, 0x3f, 0xc9, 0xca, 0x89, 0x72, 0x96, 0x9f, 0x5d, 0xbd, 0x52, 0x97, 0x84, 0xd7, 0x97, 0xe5, 0x1a, 0xed, 0x6b, 0x19, 0x23, 0x8e, 0x38, 0x8d, 0x6a, 0x69, 0x2e, 0xda, 0xfb, 0x3a, 0xc9, 0xb2, 0x2b, 0x5a, 0xbc, 0xd2, 0x60, 0x20, 0x24, 0x43, 0xec, 0x84, 0xbb, 0xc9, 0x49, 0xff, 0xd7, 0x53, 0xec, 0x2d, 0x27, 0x0c, 0xd7, 0x8f, 0x84, 0x46, 0x25, 0x97, 0x1f, 0x74, 0x8e, 0xab, 0x77, 0x82, 0x8b, 0x5e, 0x6d, 0x32, 0x84, 0xb8, 0x3a, 0xcd, 0x0f, 0x7a, 0x00, 0x1f, 0x0d, 0x09, 0x63, 0xed, 0xe4, 0xf2, 0x37, 0x12, 0x7f, 0x1a, 0xb7, 0xb2, 0x01, 0x70, 0xc1, 0x7b, 0xa4, 0xe9, 0xa0, 0x50, 0xe7, 0xe4, 0x23, 0xcf, 0x2a, 0xfa, 0x95, 0x1e, 0xc6, 0xb1, 0x40, 0x0c, 0xf8, 0xa5, 0x8c, 0x2c, 0x92, 0xc9, 0xc5, 0x29, 0x24, 0xa1, 0x3a, 0x14, 0x3f, 0x7b, 0x00, 0xc5, 0x84, 0x43, 0x7b, 0xeb, 0xaf, 0x7f, 0x93, 0x9d, 0x05, 0xd0, 0x8a, 0x1d, 0x7f, 0x00, 0xac, 0xb1, 0xd4, 0xd4, 0xe2, 0x65, 0x47, 0x4e, 0xa0, 0x7c, 0x66, 0xca, 0xd6, 0xc3, 0x01, 0xee, 0x28, 0xbd, 0x25, 0xf9, 0x05, 0xa3, 0x37, 0x6c, 0x15, 0xa8, 0x4b, 0xf1, 0x09, 0x7a, 0x2c, 0xc6, 0xa7, 0xc4, 0x1a, 0xb2, 0x32, 0x3d, 0xd2, 0x0b, 0xb9, 0x98, 0x8b, 0x49, 0x31, 0xd9, 0xb9, 0xda, 0x0c, 0x76, 0x96, 0x5a, 0xec, 0x0b, 0x03, 0x07, 0x55, 0x0b, 0x74, 0xac, 0x96, 0x75, 0x62, 0x1c, 0x7e, 0xd1, 0x05, 0xcc, 0xaf, 0xad, 0xee, 0xaa, 0xbf, 0x7b, 0xda, 0xe1, 0x00, 0xd1, 0x2c, 0xbf, 0x8b, 0x7d, 0x42, 0xc7, 0x2d, 0xb0, 0x32, 0x48, 0x88, 0xbc, 0xbe, 0xd9, 0x54, 0x6b, 0x2d, 0x2e, 0xff, 0x7f, 0x9c, 0x06, 0x95, 0xde, 0xc8, 0x45, 0x11, 0x55, 0x4a, 0x38, 0x0b, 0x65, 0xd9, 0x0f, 0x2f, 0x2c, 0x66, 0x9d, 0x61, 0x21, 0xe4, 0x2c, 0x96, 0xd3, 0xb9, 0x7d, 0x3e, 0xf6, 0x02, 0x34, 0xcd, 0x50, 0x80, 0xe1, 0xc3, 0xf0, 0x49, 0x48, 0x14, 0xbe, 0xb7, 0xc3, 0xe6, 0x3d, 0x7d, 0x5d, 0x6d, 0x79, 0x62, 0x26, 0xbd, 0x19, 0x16, 0xa8, 0x4b, 0x5a, 0xec, 0xb6, 0xf9, 0x43, 0xc0, 0x5e, 0x4c, 0xd5, 0x8b, 0x21, 0xb6, 0x68, 0xda, 0x5a, 0x0a, 0xa2, 0xbf, 0xe1, 0x94, 0x49, 0x66, 0x54, 0xc1, 0xff, 0x90, 0x27, 0xd4, 0xc8, 0x1a, 0xf0, 0xc2, 0x99, 0xdc, 0x5d, 0xc0, 0x0b, 0xfb, 0x29, 0xab, 0xab, 0x64, 0x0f, 0xff, 0xc1, 0xa5, 0x90, 0x60, 0xfc, 0xdf, 0x8e, 0x7a, 0x0d, 0xe9, 0x28, 0xc7, 0x42, 0xb0, 0xa1, 0x16, 0xbb, 0x64, 0x0a, 0x0c, 0x76, 0x74, 0xc5, 0x40, 0x90, 0xcd, 0xa3, 0xae, 0xc7, 0x76, 0x2b, 0xac, 0xd7, 0x4d, 0x17, 0x61, 0x8c, 0x25, 0x49, 0x4e, 0xbd, 0x0b, 0xd8, 0x77, 0x4d, 0x80, 0xaf, 0x33, 0x2e, 0xd2, 0x29, 0xbc, 0x77, 0xb2, 0x12, 0x56, 0xa9, 0x6b, 0xf0, 0x67, 0xe2, 0x55, 0xac, 0xfd, 0xad, 0xc5, 0xc8, 0xd8, 0x30, 0xbc, 0x3b, 0x4c, 0x1b, 0x12, 0x4f, 0x8e, 0x3d, 0x4e, 0x36, 0xbb, 0x52, 0xfa, 0x13, 0xd4, 0x95, 0xb8, 0x56, 0xa6, 0x4a, 0xb5, 0x38, 0x98, 0x8f, 0x0d, 0x90, 0x7c, 0xfb, 0x2b, 0xcb, 0xed, 0xe1, 0x05, 0x28, 0xc6, 0xfc, 0x0a, 0x43, 0x72, 0xfe, 0xbc, 0xa2, 0x80, 0xaf, 0x69, 0x62, 0x83, 0x70, 0x1d, 0xd9, 0xc3, 0xff, 0x14, 0x7b, 0x8a, 0x37, 0x0a, 0x3b, 0x70, 0x3d, 0x67, 0x75, 0xa7, 0x59, 0xfe, 0xe9, 0xd7, 0x9d, 0xda, 0x5f, 0xa4, 0xfd, 0x77, 0x4c, 0x09, 0x97, 0x68, 0x24, 0x87, 0x6e, 0x34, 0xa0, 0x5e, 0x1c, 0xf8, 0x38, 0x92, 0x41, 0x91, 0x03, 0xc7, 0x24, 0xc6, 0x01, 0x0d, 0x56, 0xe7, 0xaa, 0x96, 0x3d, 0xf4, 0x69, 0xe0, 0xd0, 0xc4, 0x5d, 0x76, 0xfb, 0xd3, 0xd9, 0xbb, 0x5f, 0xc9, 0x01, 0xac, 0x5e, 0x93, 0x10, 0x47, 0x8f, 0x28, 0x65, 0x3e, 0x33, 0xcc, 0x99, 0x6a, 0xa4, 0x02, 0x1a, 0xa5, 0x92, 0x04, 0x57, 0x57, 0x74, 0x5f, 0x95, 0x2a, 0x31, 0x57, 0x94, 0xd2, 0x7e, 0x44, 0x73, 0x80, 0x50, 0x18, 0xfb, 0x71, 0xbf, 0xc2, 0x02, 0x29, 0x3a, 0x99, 0x84, 0xd9, 0x0e, 0x30, 0x8b, 0x65, 0x22, 0xd4, 0x36, 0x04, 0xc4, 0xe3, 0x9d, 0x7f, 0x40, 0xad, 0x1b, 0x3d, 0x90, 0x76, 0xf3, 0x0c, 0x88, 0x72, 0x77, 0x5e, 0x13, 0x7e, 0x4f, 0x3a, 0x54, 0xea, 0x4b, 0x8f, 0x91, 0xf4, 0x19, 0x0f, 0xcc, 0x65, 0xae, 0xcc, 0x93, 0x47, 0x8f, 0xa8, 0x95, 0xab, 0x5c, 0x46, 0x66, 0x91, 0x81, 0xce, 0xe9, 0x17, 0x21, 0xf0, 0x8e, 0x58, 0xe1, 0x62, 0xf6, 0x4c, 0x3d, 0x3a, 0xf0, 0xee, 0x16, 0x23, 0x3e, 0x9a, 0xcf, 0x0d, 0xb7, 0x0f, 0xe3, 0xc5, 0xf7, 0xbb, 0x25, 0xf4, 0xe9, 0xc7, 0x71, 0xf8, 0xc5, 0x30, 0xda, 0x25, 0xe2, 0x78, 0x29, 0x2c, 0xd1, 0xa8, 0x43, 0x06, 0x19, 0xca, 0x4e, 0xc1, 0xa5, 0xc9, 0xab, 0xa5, 0x3b, 0xdf, 0x55, 0xd6, 0x29, 0xdb, 0x5f, 0x30, 0x23, 0xd9, 0xfc, 0x05, 0x0f, 0x04, 0x05, 0xa8, 0x88, 0x23, 0x8c, 0x50, 0xc5, 0xaf, 0x3a, 0x4a, 0x95, 0x0f, 0x9f, 0x95, 0x52, 0xfd, 0x6f, 0xa4, 0x82, 0x27, 0xba, 0x19, 0x67, 0x02, 0x2e, 0x14, 0xd8, 0x44, 0xf8, 0xd4, 0xc6, 0x67, 0xf9, 0xa8, 0x2e, 0x61, 0x76, 0x91, 0x69, 0x6e, 0x86, 0xfc, 0xfa, 0x59, 0x21, 0xb1, 0x98, 0x0f, 0xee, 0x93, 0x5e, 0x09, 0x60, 0x42, 0xb1, 0x9b, 0x32, 0x0b, 0x09, 0xd4, 0x1d, 0xdf, 0xa3, 0x62, 0x93, 0x3f, 0x6f, 0xaa, 0xe7, 0x32, 0xf9, 0x5b, 0xd1, 0xbe, 0x4f, 0x32, 0x81, 0x50, 0xb7, 0xfd, 0xd7, 0x83, 0x02, 0xcf, 0xfa, 0xe7, 0x4c, 0xfe, 0x86, 0xf4, 0xf8, 0xbc, 0xd2, 0x66, 0xb3, 0xf8, 0x41, 0x89, 0x9b, 0x12, 0xd3, 0x18, 0x96, 0x67, 0xf1, 0x5b, 0xa8, 0x3a, 0x17, 0x6d, 0x4a, 0x55, 0xf7, 0x8a, 0x3c, 0x7f, 0x93, 0x23, 0xf5, 0xe9, 0x65, 0x1e, 0xc9, 0x95, 0x69, 0x0c, 0x38, 0xe7, 0xd3, 0x68, 0xd3, 0x77, 0xf5, 0x6e, 0xce, 0x29, 0x25, 0x0a, 0x28, 0xe2, 0x4d, 0xb0, 0x7d, 0xd3, 0x59, 0x5c, 0xd0, 0xcd, 0xfc, 0xac, 0x1a, 0x4e, 0x18, 0x6c, 0xac, 0x0e, 0x8d, 0xc5, 0xb8, 0x21, 0x2e, 0x75, 0xa9, 0xcf, 0xa7, 0xa7, 0x1d, 0x9f, 0x18, 0x9d, 0x8a, 0x63, 0x9a, 0x6a, 0xf1, 0x98, 0xed, 0x12, 0xe1, 0x70, 0x1e, 0x9e, 0x34, 0x38, 0x2b, 0x3e, 0x0f, 0xc5, 0xfb, 0x00, 0x0a, 0xe3, 0x33, 0xb6, 0x00, 0x79, 0xbe, 0x5d, 0xce, 0x90, 0x11, 0x29, 0x18, 0xaa, 0xf6, 0x4d, 0x16, 0x43, 0x10, 0xc5, 0xf0, 0x6f, 0xf0, 0xb5, 0xde, 0xfb, 0x0b, 0xb2, 0x74, 0x66, 0xa8, 0x7e, 0x42, 0xdb, 0xdf, 0xff, 0x82, 0x32, 0x19, 0xbb, 0xfe, 0x3f, 0x00, 0xf0, 0x34, 0xe1, 0x72, 0xf7, 0x0d, 0x3e, 0x27, 0xc0, 0x0f, 0x68, 0x60, 0x21, 0xe1, 0x0f, 0x1f, 0xef, 0xbd, 0x81, 0xf0, 0xc8, 0xa8, 0xf6, 0x57, 0x80, 0xea, 0xc5, 0xcc, 0x26, 0xee, 0x9e, 0xb5, 0xd9, 0x47, 0x92, 0xfa, 0xc5, 0x8b, 0xee, 0x36, 0x5b, 0x88, 0xbb, 0xfa, 0x86, 0xc8, 0xd8, 0x57, 0x78, 0x1b, 0x87, 0x4c, 0x0b, 0xae, 0x50, 0x05, 0x24, 0xd4, 0x0b, 0x35, 0xc4, 0x07, 0x4f, 0xb0, 0xac, 0xd2, 0x16, 0xea, 0x64, 0x6a, 0x67, 0x34, 0x6c, 0x3e, 0x0f, 0xde, 0x9d, 0x24, 0x14, 0x9b, 0x20, 0x2f, 0x0f, 0x0b, 0x6c, 0x00, 0x09, 0x87, 0xf9, 0x02, 0x28, 0xb7, 0x05, 0x40, 0x96, 0x77, 0xa3, 0x4e, 0x8e, 0xb5, 0xe6, 0x0d, 0xce, 0xb9, 0xc6, 0x76, 0xb1, 0x4d, 0xa3, 0xe8, 0x32, 0xff, 0xef, 0xb4, 0xee, 0x57, 0x83, 0x2d, 0xba, 0xba, 0x31, 0x2a, 0xe0, 0xd7, 0xee, 0x4c, 0xd6, 0x28, 0x1e, 0x85, 0x21, 0x97, 0x9a, 0x6e, 0x22, 0xd9, 0x0c, 0xd1, 0xe3, 0xdf, 0x7f, 0xe7, 0x74, 0x54, 0xdc, 0xa9, 0x87, 0x21, 0x26, 0xfc, 0x17, 0x73, 0x90, 0x38, 0xc4, 0x4b, 0x80, 0xf1, 0x6f, 0xcf, 0x5c, 0x1e, 0x6e, 0x65, 0xe7, 0x11, 0x49, 0x7f, 0x92, 0x63, 0x22, 0xa7, 0xda, 0xf1, 0xa0, 0x1e, 0xba, 0xc3, 0x65, 0xbe, 0x44, 0xef, 0x6e, 0x61, 0x21, 0xc3, 0x6e, 0x1b, 0xf8, 0x77, 0x4e, 0xf6, 0x9b, 0x12, 0x60, 0x21, 0x92, 0x16, 0xc1, 0xef, 0xd1, 0x07, 0x9e, 0x98, 0xe6, 0x20, 0x43, 0x14, 0xae, 0x82, 0x4a, 0x59, 0x78, 0xa2, 0x8a, 0xc0, 0xa8, 0xfb, 0xcc, 0x8e, 0x7e, 0xf5, 0x9e, 0xff, 0xb5, 0xf1, 0xf7, 0x3a, 0x7c, 0x15, 0xf1, 0x51, 0x8e, 0xb2, 0x39, 0xeb, 0xc9, 0x21, 0x3e, 0xcd, 0x7d, 0x3e, 0xbe, 0x57, 0x16, 0x25, 0x21, 0x64, 0xdb, 0x26, 0x62, 0x4e, 0x9f, 0x63, 0x85, 0x2a, 0x04, 0xb7, 0xc0, 0x58, 0xa7, 0x37, 0xd4, 0xc2, 0xf2, 0x25, 0x66, 0xc9, 0x98, 0x7e, 0xba, 0xd2, 0xbf, 0x52, 0x8e, 0xcf, 0x15, 0x0d, 0xa4, 0xc3, 0xa5, 0x4f, 0xf4, 0xa2, 0x32, 0x18, 0xc2, 0x12, 0x6c, 0x4f, 0x6b, 0x01, 0xce, 0xe8, 0xe5, 0xc7, 0x20, 0x3e, 0xe9, 0xb1, 0x16, 0x55, 0x67, 0xae, 0x89, 0x58, 0x41, 0x5b, 0x58, 0x42, 0x04, 0xfb, 0x20, 0x39, 0xd6, 0x57, 0x36, 0x12, 0xd6, 0xbb, 0x58, 0x9f, 0x4e, 0xc3, 0xc1, 0x0f, 0xf8, 0xe6, 0x2f, 0xe0, 0x7e, 0x14, 0xe0, 0x8e, 0x58, 0xe5, 0x3f, 0x90, 0xce, 0xce, 0x35, 0xc7, 0xcd, 0xa7, 0x60, 0xa1, 0xe2, 0xde, 0xee, 0x43, 0x52, 0x56, 0xb3, 0x4f, 0x6f, 0xcf, 0x33, 0xce, 0x64, 0x10, 0xae, 0x94, 0xbf, 0x6d, 0x01, 0x72, 0x38, 0x82, 0x6f, 0x97, 0x3a, 0x68, 0xd8, 0xde, 0xdb, 0x34, 0x55, 0x65, 0xa2, 0x5e, 0x95, 0xcb, 0x6e, 0xdf, 0xed, 0xdb, 0x27, 0x5c, 0xdb, 0x5b, 0x2f, 0x90, 0xc7, 0x0d, 0x41, 0x14, 0x85, 0xbb, 0xf9, 0x0f, 0xb3, 0x5b, 0x31, 0x9e, 0x98, 0xf3, 0x5a, 0x4a, 0x49, 0x30, 0x6e, 0xa1, 0x18, 0xdd, 0xaf, 0x51, 0x25, 0xc5, 0x53, 0x62, 0xe7, 0x4c, 0x6c, 0xfb, 0x6d, 0x7e, 0x6c, 0x25, 0xc1, 0x2f, 0x86, 0x08, 0xd6, 0xc4, 0xdf, 0xa8, 0x18, 0x7f, 0x78, 0x23, 0x73, 0x0f, 0x8d, 0xe1, 0xa4, 0x83, 0xe5, 0x18, 0xfe, 0x2c, 0xb1, 0x39, 0x76, 0x08, 0xf9, 0x8d, 0xa2, 0x5a, 0x52, 0x75, 0x95, 0x1d, 0x5c, 0x80, 0x17, 0x15, 0xe5, 0x61, 0xf7, 0xe6, 0xc2, 0xab, 0x59, 0x25, 0x66, 0x7e, 0xc5, 0x7a, 0x40, 0x39, 0x23, 0x25, 0xf8, 0xf8, 0x8d, 0xea, 0xc8, 0x22, 0x24, 0x75, 0x65, 0xd5, 0xee, 0x02, 0xb2, 0x17, 0xb5, 0xf0, 0x22, 0xc1, 0x2d, 0x55, 0x1a, 0xee, 0xa4, 0x1b, 0x23, 0x08, 0x20, 0xc5, 0xb8, 0x60, 0xf4, 0x78, 0xb7, 0xa8, 0x1c, 0x1e, 0xa8, 0xf0, 0xc3, 0xab, 0x11, 0x3f, 0xc5, 0x93, 0x43, 0x37, 0xfa, 0x55, 0xb5, 0x2c, 0x02, 0x50, 0x04, 0x13, 0x90, 0x9e, 0xcc, 0x9f, 0x25, 0x6a, 0x2c, 0xef, 0x9a, 0x4f, 0x0c, 0x6d, 0x0c, 0x54, 0xd6, 0xa1, 0xba, 0xc7, 0xef, 0x81, 0x98, 0x81, 0xf4, 0x24, 0xa7, 0x89, 0x26, 0xbd, 0x50, 0xf8, 0x76, 0x80, 0xe3, 0xa2, 0xf3, 0x8f, 0x4b, 0x9b, 0x76, 0xdc, 0x7d, 0xbe, 0x9f, 0x33, 0x2d, 0x8c, 0x74, 0xf0, 0xa8, 0x11, 0x52, 0x10, 0x39, 0xa4, 0xfa, 0x7e, 0x25, 0x1b, 0x4b, 0x22, 0xc7, 0x2d, 0x87, 0xf7, 0xf2, 0xb5, 0x0a, 0x66, 0x3d, 0x3e, 0xd2, 0x98, 0xd1, 0x65, 0x83, 0x71, 0x43, 0x0f, 0x1f, 0x65, 0x10, 0xd8, 0xc1, 0x38, 0x33, 0x84, 0xf6, 0x45, 0xea, 0x82, 0xec, 0x53, 0x0e, 0x58, 0x76, 0xa5, 0xfe, 0x32, 0xe8, 0xa7, 0xc7, 0x5a, 0x24, 0xc9, 0x44, 0x68, 0x1e, 0x49, 0x49, 0xb0, 0xe3, 0x49, 0xb1, 0x3e, 0xc9, 0xb4, 0x2c, 0x33, 0x6c, 0x7c, 0xfe, 0xf3, 0x0c, 0x3c, 0x30, 0x67, 0xba, 0xc2, 0xd4, 0x9b, 0x14, 0x1c, 0xd4, 0x8b, 0xdd, 0xbc, 0xdc, 0x9b, 0x20, 0xd9, 0x75, 0xfa, 0x4d, 0x03, 0x06, 0x83, 0x7e, 0x7b, 0x6b, 0x17, 0x09, 0xcb, 0x91, 0xfd, 0x6a, 0x0d, 0x64, 0x53, 0x52, 0x76, 0xb0, 0x42, 0xb5, 0x6d, 0xa6, 0x32, 0x27, 0x4d, 0x32, 0xd0, 0x2b, 0x39, 0x15, 0x61, 0x8f, 0xec, 0x45, 0x1e, 0x82, 0xb9, 0x32, 0x8c, 0xd7, 0xb8, 0x89, 0x10, 0xed, 0x87, 0xf6, 0x15, 0xfa, 0xb9, 0xe7, 0xea, 0xc2, 0xab, 0x4e, 0xb1, 0x81, 0xd2, 0x94, 0x0f, 0x47, 0x04, 0xb1, 0x44, 0x06, 0x0c, 0xdf, 0xbc, 0x02, 0x50, 0x36, 0xc9, 0x72, 0x30, 0x5a, 0xf1, 0x5e, 0xc9, 0xec, 0x60, 0xc4, 0xdb, 0x75, 0xca, 0xfe, 0x5d, 0x15, 0x3b, 0xc3, 0x88, 0xfb, 0x4b, 0x57, 0x0c, 0xec, 0x00, 0xbb, 0x4b, 0x38, 0xa1, 0x70, 0xcd, 0xb6, 0x4b, 0xce, 0x04, 0xa5, 0x5e, 0x78, 0xa4, 0x5e, 0xbf, 0x25, 0x4f, 0x97, 0x0f, 0x68, 0x54, 0x1b, 0xed, 0x58, 0x9c, 0x37, 0xf6, 0x3d, 0xa2, 0x76, 0x3d, 0x5a, 0x79, 0x04, 0xa0, 0x9b, 0x0b, 0x69, 0xc6, 0x40, 0xc3, 0xf0, 0xcc, 0xb9, 0x42, 0x7a, 0x0d, 0x73, 0x09, 0x8c, 0x42, 0xb1, 0x23, 0xb0, 0x11, 0xcb, 0x9a, 0x5a, 0x02, 0x84, 0x7d, 0xab, 0x3c, 0xb9, 0xaf, 0x71, 0xd6, 0xa0, 0xe5, 0x8d, 0x97, 0xbd, 0x5e, 0x47, 0x2a, 0xb3, 0xfe, 0x82, 0x7b, 0x7a, 0xe8, 0x39, 0xec, 0xe0, 0xe0, 0xb7, 0xfc, 0x07, 0x51, 0x0e, 0x84, 0xbc, 0xd9, 0x5d, 0xf8, 0x4d, 0xe5, 0x33, 0x4e, 0x78, 0xbe, 0x12, 0x34, 0x88, 0x7d, 0xcb, 0xe2, 0xab, 0xe0, 0x49, 0x42, 0x01, 0xf9, 0x85, 0x18, 0xcc, 0xf7, 0x1a, 0xb3, 0x81, 0x58, 0x8f, 0xdd, 0x68, 0x05, 0x82, 0x5d, 0xb3, 0xde, 0x6b, 0x39, 0x9b, 0xdd, 0x03, 0x26, 0x77, 0xc3, 0x6f, 0xa5, 0xd1, 0xd2, 0x47, 0x3d, 0x0d, 0xbe, 0x35, 0x12, 0x88, 0x7f, 0xbd, 0xa6, 0xd1, 0xf5, 0x6d, 0x31, 0x6b, 0x08, 0x7c, 0xae, 0xbf, 0x5a, 0xc3, 0xe8, 0xf2, 0x03, 0xe4, 0x0e, 0xe6, 0xcc, 0x6f, 0xf7, 0xcd, 0x46, 0xa6, 0x2c, 0x0e, 0xae, 0x13, 0x84, 0x7c, 0x17, 0x95, 0x7b, 0x83, 0xd1, 0x16, 0xef, 0x82, 0x55, 0x09, 0xe9, 0x3f, 0x68, 0x13, 0x90, 0xe9, 0xad, 0x64, 0x98, 0x43, 0x83, 0xb8, 0x6a, 0x55, 0xfa, 0x29, 0x3c, 0xca, 0xe5, 0x09, 0x76, 0x3a, 0xe3, 0x2d, 0x00, 0xd5, 0xd1, 0xce, 0x1f, 0x2c, 0xee, 0xbc, 0xed, 0xd8, 0x6e, 0x98, 0xf1, 0xf9, 0x25, 0x09, 0x67, 0xe0, 0xdc, 0x64, 0xb9, 0xed, 0x4c, 0xa7, 0x88, 0x41, 0xbc, 0x70, 0xfe, 0x4c, 0xfb, 0x2c, 0x7c, 0xf3, 0xc5, 0x80, 0xf9, 0xb5, 0xbb, 0x9c, 0x56, 0xfb, 0xf0, 0x0f, 0xe2, 0x58, 0xa2, 0xa1, 0x7b, 0x43, 0x74, 0x13, 0x7a, 0x63, 0x68, 0x26, 0xc8, 0x9b, 0xb5, 0x45, 0x1a, 0xb3, 0xc4, 0x92, 0xa0, 0x3a, 0x00, 0x1a, 0x9e, 0x45, 0x9d, 0x6e, 0x70, 0x5c, 0x30, 0xb3, 0xf0, 0x4c, 0x48, 0xc4, 0x01, 0xdd, 0xc9, 0x9b, 0xd4, 0x54, 0xd9, 0x35, 0x13, 0x99, 0x3b, 0xb7, 0xd2, 0x88, 0xe9, 0x90, 0x25, 0xad, 0xc5, 0xa7, 0x99, 0x1f, 0x44, 0xe6, 0x5c, 0x5b, 0x3f, 0xc2, 0xb5, 0x91, 0x08, 0x5e, 0x6a, 0xe9, 0xba, 0x08, 0xa9, 0x6e, 0x75, 0x33, 0x25, 0xf2, 0xe8, 0x19, 0xae, 0xcc, 0x6c, 0xc2, 0x32, 0x0c, 0x1d, 0x3c, 0x05, 0x8f, 0x6d, 0xe4, 0xe9, 0x99, 0x2f, 0xbf, 0x9b, 0x0c, 0x9d, 0x88, 0x63, 0x91, 0x24, 0x99, 0x63, 0x92, 0x50, 0xcb, 0x2f, 0xe2, 0x76, 0x8a, 0xd5, 0x95, 0x6c, 0x38, 0x98, 0x3a, 0x16, 0x07, 0x7f, 0x58, 0x2d, 0x27, 0x1f, 0x98, 0x1f, 0x87, 0x38, 0x3b, 0xea, 0x39, 0x05, 0xab, 0x18, 0xae, 0x25, 0xf8, 0xe7, 0x7e, 0xa3, 0x0f, 0x12, 0xa4, 0xd9, 0x19, 0xa9, 0x5d, 0xda, 0xa3, 0x7b, 0xfb, 0x20, 0x81, 0x0e, 0x1f, 0x7a, 0xfa, 0x08, 0x3e, 0xd8, 0x9d, 0xd2, 0xe5, 0x2a, 0x9c, 0xb4, 0x22, 0x17, 0x5e, 0x06, 0x76, 0x07, 0xef, 0xb8, 0x78, 0x87, 0xb5, 0x60, 0xca, 0x2f, 0x5f, 0xc5, 0x82, 0x08, 0x7e, 0xe0, 0x90, 0x71, 0xc2, 0x4f, 0x29, 0xa2, 0x63, 0x7c, 0x2d, 0xab, 0xab, 0xc5, 0xbd, 0xcc, 0x40, 0xe3, 0x0d, 0x52, 0xfe, 0x3d, 0x4c, 0x34, 0xaa, 0xdb, 0xac, 0x4f, 0xeb, 0x5a, 0x1f, 0xef, 0x06, 0x72, 0x08, 0xe8, 0x36, 0x2a, 0x2f, 0x9e, 0xdf, 0x90, 0x8a, 0x0f, 0x23, 0x61, 0xa2, 0x29, 0x88, 0x84, 0xb4, 0xb7, 0xd0, 0x24, 0x5a, 0xde, 0x7e, 0x94, 0x03, 0x1d, 0x48, 0x81, 0x13, 0x1b, 0x46, 0xa4, 0x14, 0x4d, 0x02, 0x47, 0x66, 0x0d, 0xce, 0x81, 0x78, 0x15, 0xc4, 0x04, 0x2d, 0xbb, 0xcc, 0x2f, 0xba, 0x8e, 0x53, 0x1e, 0x47, 0x8e, 0xd4, 0xa5, 0x99, 0x02, 0xc8, 0x19, 0x40, 0x99, 0x4f, 0xb6, 0xc8, 0x8e, 0xd3, 0xab, 0x72, 0xdc, 0x05, 0xe1, 0x16, 0x4d, 0xea, 0x2d, 0x8b, 0xeb, 0xd3, 0xf9, 0xd2, 0x74, 0x26, 0x2c, 0x36, 0x81, 0xfe, 0x06, 0xe0, 0x5f, 0x66, 0x32, 0xc9, 0xd0, 0x04, 0x0b, 0xd0, 0x34, 0xb8, 0xe0, 0xb7, 0x90, 0x2f, 0xe5, 0xf2, 0xb9, 0x6a, 0x0e, 0xee, 0x5c, 0xdd, 0x05, 0xe1, 0xc4, 0xdb, 0xb9, 0xf3, 0xf2, 0x3e, 0xc7, 0x34, 0xc4, 0x36, 0x3a, 0xb1, 0xe1, 0x16, 0x92, 0xa3, 0xc5, 0x7f, 0xc3, 0x96, 0x22, 0x54, 0x48, 0x5b, 0x12, 0x44, 0x5b, 0x1d, 0xb7, 0xa4, 0xcb, 0x7c, 0x32, 0x4d, 0x3d, 0x73, 0x4a, 0x41, 0x78, 0xc2, 0x9a, 0x2a, 0xe2, 0x59, 0xf6, 0xd9, 0xf3, 0xc3, 0xfe, 0xba, 0x28, 0x7c, 0xa9, 0x9f, 0xe8, 0x8f, 0xdb, 0x40, 0x73, 0x7d, 0xc8, 0xf3, 0x9c, 0x18, 0xb6, 0x64, 0xd7, 0x8a, 0x53, 0xc5, 0x0c, 0x76, 0x00, 0x4d, 0x9b, 0xdb, 0xcd, 0x8a, 0x99, 0x94, 0x4a, 0x52, 0x8f, 0x0d, 0xb9, 0x6a, 0x19, 0x83, 0x0c, 0x6f, 0xa5, 0x4f, 0x93, 0x90, 0x88, 0x1a, 0xbb, 0xf8, 0x47, 0xd6, 0xa2, 0x38, 0x35, 0x63, 0x9d, 0xaa, 0x8a, 0x40, 0x72, 0x42, 0x90, 0xb9, 0x78, 0xc9, 0x94, 0x53, 0xe7, 0x70, 0xf8, 0xf8, 0x7e, 0x4a, 0x7a, 0xb2, 0x31, 0x77, 0x0c, 0xaa, 0x66, 0x99, 0x31, 0x50, 0x60, 0xf3, 0xbd, 0xcf, 0xbf, 0xf1, 0xcb, 0xcc, 0xe4, 0xb2, 0xd1, 0x77, 0xd0, 0xcf, 0x75, 0x94, 0xff, 0x99, 0xd4, 0x89, 0xa6, 0xb9, 0xc7, 0x4b, 0x88, 0x07, 0x41, 0x46, 0xe0, 0xbd, 0x01, 0xf8, 0xb9, 0xae, 0xb7, 0x31, 0x3d, 0xb3, 0xab, 0x63, 0xda, 0xef, 0x42, 0x8e, 0x10, 0x3b, 0xc9, 0x8b, 0x2c, 0x35, 0xcb, 0x6c, 0xa9, 0x7d, 0x50, 0x04, 0x18, 0xa6, 0x8d, 0xab, 0x19, 0x90, 0x1c, 0xf6, 0x64, 0x18, 0xd7, 0x17, 0x68, 0xa4, 0xd2, 0x67, 0xaf, 0x66, 0x0c, 0xe5, 0x5f, 0x0c, 0x31, 0xc7, 0xbd, 0x9b, 0x19, 0xbb, 0x67, 0x7a, 0xce, 0x04, 0xa6, 0x75, 0x1c, 0x9a, 0xb0, 0xef, 0x4b, 0xf6, 0x02, 0x46, 0x41, 0xfb, 0x9d, 0x93, 0x03, 0x8f, 0x02, 0xe8, 0x71, 0x53, 0x0c, 0x55, 0x4a, 0x75, 0x8d, 0x40, 0xed, 0x31, 0x01, 0x33, 0x9a, 0x01, 0x17, 0xbb, 0xf4, 0xfb, 0x4a, 0xda, 0xe3, 0xf6, 0x3c, 0x17, 0x11, 0xa4, 0x24, 0xb5, 0x95, 0x8c, 0x6c, 0x62, 0x38, 0xff, 0x4f, 0xdc, 0xb4, 0x6e, 0xc1, 0x4d, 0x59, 0xc8, 0x7c, 0x5a, 0x1b, 0x2e, 0x9e, 0xec, 0xf0, 0xfe, 0x47, 0x22, 0xce, 0x5d, 0x76, 0x2e, 0x52, 0x1f, 0xb7, 0xe9, 0xae, 0xfe, 0xc8, 0x58, 0xe2, 0xc7, 0x9e, 0xd0, 0x66, 0x31, 0xfe, 0xfd, 0x3c, 0x8b, 0x80, 0x8f, 0x6f, 0xec, 0x49, 0x28, 0x0c, 0x0c, 0x00, 0xe2, 0xe3, 0xab, 0x73, 0x45, 0x27, 0x6f, 0x11, 0xd5, 0xba, 0x38, 0xe6, 0x72, 0x41, 0x4b, 0x1a, 0x09, 0xe5, 0x8c, 0x0d, 0x34, 0x9a, 0x71, 0x32, 0x45, 0x46, 0xee, 0xb6, 0x00, 0xa0, 0x86, 0x03, 0xd9, 0x7d, 0x56, 0xa4, 0xc8, 0x21, 0x96, 0x1b, 0xf1, 0xe3, 0x54, 0x44, 0x88, 0x07, 0x87, 0xe7, 0xd5, 0xbd, 0x22, 0xbf, 0xae, 0x92, 0x7a, 0x3c, 0xd5, 0x1f, 0x37, 0x00, 0x27, 0x94, 0x73, 0x1d, 0x32, 0x3e, 0x90, 0x89, 0xcf, 0xdd, 0x7a, 0x78, 0x9c, 0xc2, 0x8e, 0x55, 0x40, 0xf4, 0x88, 0xd2, 0xcf, 0x58, 0xe1, 0xdd, 0x71, 0x4f, 0xaf, 0x06, 0x7e, 0xd8, 0xd7, 0x4e, 0xb8, 0xd0, 0x0c, 0x76, 0x21, 0x50, 0xda, 0x49, 0x98, 0xa8, 0x0b, 0x34, 0xce, 0xe0, 0xba, 0xf1, 0xcf, 0x44, 0x87, 0x9e, 0x65, 0x08, 0x0c, 0xd6, 0xda, 0x1f, 0x2e, 0x71, 0x08, 0xf3, 0xbe, 0xe0, 0x25, 0x93, 0xea, 0x4e, 0xef, 0xb5, 0x2a, 0x17, 0x27, 0xfb, 0x67, 0xe0, 0xd2, 0x8b, 0x3b, 0x2b, 0x2a, 0x7b, 0x9e, 0x35, 0x6f, 0x11, 0x9d, 0xd9, 0x46, 0x57, 0xd7, 0x2a, 0x7e, 0x15, 0xaf, 0x92, 0x7b, 0xfd, 0xd4, 0x08, 0xe1, 0x9f, 0x66, 0xca, 0x0b, 0x8d, 0x95, 0x24, 0x27, 0x79, 0xf0, 0xc0, 0x6a, 0xec, 0xb9, 0x53, 0x69, 0x14, 0xc7, 0xd7, 0x37, 0x54, 0x66, 0xfa, 0x89, 0x46, 0xc3, 0xf4, 0x54, 0x41, 0x58, 0x0b, 0xcf, 0x22, 0x59, 0x0b, 0xbc, 0x14, 0xbf, 0x8e, 0x07, 0xd2, 0x9c, 0x9a, 0x10, 0x54, 0x95, 0x7f, 0x8e, 0x4a, 0x3f, 0xa0, 0xb9, 0x0f, 0x56, 0xa4, 0xe8, 0x8e, 0xd1, 0x7d, 0x28, 0xa0, 0x63, 0xa4, 0xd5, 0xfa, 0xea, 0xc2, 0x0c, 0x1c, 0xd5, 0xc5, 0x02, 0x7e, 0xf7, 0x46, 0x3f, 0xa2, 0x5f, 0x0f, 0xdc, 0x14, 0x98, 0xa2, 0xe7, 0x4b, 0x84, 0x6c, 0xf2, 0xee, 0x70, 0xcc, 0xd0, 0x2a, 0x6f, 0xf2, 0x4e, 0xf8, 0xfd, 0x5e, 0x37, 0x9a, 0xe8, 0x70, 0x16, 0xb8, 0xf8, 0xc2, 0x0b, 0x1e, 0x46, 0x20, 0xa9, 0xc3, 0xae, 0x55, 0x66, 0x18, 0x51, 0x93, 0x02, 0xf3, 0x67, 0xa4, 0xa2, 0xa3, 0x47, 0x20, 0x35, 0x88, 0xfa, 0x40, 0x3c, 0xce, 0x17, 0x90, 0x76, 0x3d, 0xbd, 0x5c, 0x80, 0xb8, 0xca, 0xff, 0x57, 0x66, 0xb2, 0xd3, 0x06, 0xcd, 0x91, 0xf5, 0x6a, 0xd7, 0x42, 0x99, 0x79, 0xd9, 0x67, 0xe1, 0x90, 0x6d, 0x58, 0x54, 0xf6, 0xf2, 0x1f, 0xbd, 0x6e, 0x3c, 0xfe, 0x52, 0xca, 0x56, 0x46, 0xb4, 0x3d, 0x13, 0xdc, 0xc0, 0xb9, 0xe4, 0x7d, 0xac, 0xd8, 0x60, 0x0d, 0xbc, 0xa3, 0x38, 0x1c, 0xab, 0x20, 0xfb, 0x92, 0x40, 0x29, 0x43, 0xbe, 0x5d, 0x18, 0x5a, 0xa5, 0x6a, 0x11, 0xbf, 0x15, 0xdd, 0xe6, 0x2d, 0xf4, 0x8e, 0x14, 0x2c, 0xb7, 0x26, 0xa9, 0xfc, 0xe2, 0xcd, 0x82, 0x52, 0x96, 0x26, 0x66, 0x78, 0x0b, 0x25, 0x67, 0xdb, 0x33, 0xff, 0x06, 0x94, 0x52, 0x3e, 0x8c, 0x69, 0x21, 0xe1, 0x4e, 0xdf, 0x8e, 0x88, 0xbd, 0x3e, 0xe9, 0xf6, 0x3c, 0xf0, 0x17, 0x98, 0x35, 0x59, 0x68, 0xd0, 0x09, 0x58, 0x22, 0x0a, 0x14, 0x25, 0xb7, 0xad, 0xb3, 0x94, 0x65, 0x59, 0x2a, 0x26, 0x38, 0x78, 0x10, 0xd8, 0x87, 0x73, 0x15, 0x56, 0x48, 0xc4, 0xc2, 0xa0, 0xcc, 0x2c, 0xf8, 0xeb, 0xe2, 0x8c, 0x92, 0xfe, 0x1c, 0x57, 0xb4, 0xbb, 0x33, 0x9b, 0xa3, 0x15, 0x0a, 0xaa, 0xb2, 0x83, 0xd8, 0xeb, 0xc5, 0x21, 0xbc, 0x36, 0x77, 0x22, 0x50, 0x9b, 0x12, 0xe9, 0x54, 0xf5, 0x97, 0x2e, 0xba, 0x45, 0x2c, 0xf8, 0x2f, 0xaa, 0x9b, 0xa8, 0x62, 0x8e, 0x72, 0x65, 0x95, 0xe6, 0x4f, 0x8b, 0x6f, 0xc9, 0x89, 0x67, 0x88, 0x22, 0x2e, 0xdf, 0xd9, 0x8d, 0xfa, 0xb5, 0x90, 0x5c, 0xa1, 0x34, 0x01, 0x85, 0x9f, 0x7c, 0x70, 0x1e, 0xfd, 0x68, 0xe8, 0x84, 0x3f, 0x13, 0x04, 0xaa, 0x8f, 0x3f, 0x1b, 0x58, 0xbd, 0x3a, 0x3c, 0x83, 0x10, 0xac, 0x6d, 0x62, 0x9d, 0x10, 0x19, 0xf6, 0x84, 0xd2, 0x86, 0x96, 0x84, 0xc5, 0x36, 0x87, 0xc1, 0x59, 0xc9, 0x35, 0x17, 0xb1, 0x9c, 0x82, 0x89, 0x49, 0x44, 0x71, 0x64, 0x83, 0x7f, 0x8c, 0x80, 0x14, 0xf7, 0x1d, 0x40, 0x61, 0x1f, 0xec, 0x12, 0x0d, 0xf3, 0x68, 0x56, 0x1d, 0xef, 0xce, 0x05, 0x9c, 0xd0, 0xb8, 0x4a, 0xa9, 0x4f, 0x00, 0x14, 0x52, 0x76, 0xc1, 0xb2, 0x91, 0xb0, 0xfb, 0x42, 0x3e, 0xa1, 0xb7, 0xfa, 0x1a, 0x1f, 0x36, 0x72, 0x68, 0x19, 0x79, 0x3f, 0xda, 0xd0, 0xf2, 0x97, 0x96, 0x16, 0xdf, 0x86, 0xd0, 0xc7, 0x3f, 0x53, 0x55, 0x3c, 0x90, 0x27, 0xed, 0x8d, 0x56, 0x2f, 0xde, 0x59, 0x90, 0xf1, 0xf5, 0x83, 0xc0, 0x5e, 0xf1, 0xbb, 0xbf, 0xf3, 0xf7, 0xaa, 0x8b, 0x26, 0xe5, 0x05, 0x59, 0x81, 0x06, 0x81, 0x50, 0x84, 0x1f, 0x41, 0x8b, 0xc8, 0x8d, 0xf1, 0x97, 0xf1, 0x00, 0xb7, 0x5f, 0x65, 0x52, 0xb5, 0x9c, 0x5f, 0x0d, 0x7f, 0xa4, 0xc5, 0x63, 0x31, 0xa7, 0x64, 0xed, 0x49, 0xf3, 0x33, 0x02, 0xa2, 0xb8, 0xa9, 0xa0, 0xd4, 0xe6, 0x5c, 0x46, 0x4c, 0x24, 0x60, 0x1a, 0x59, 0x10, 0xfb, 0xbe, 0xdc, 0xe0, 0x5e, 0x15, 0xe1, 0x4e, 0xb4, 0x7f, 0x9a, 0xc9, 0xc9, 0xca, 0xa5, 0x68, 0xd2, 0x62, 0x3e, 0x74, 0x75, 0x53, 0x1c, 0x79, 0x53, 0xa3, 0x0a, 0xbf, 0x79, 0xa6, 0xae, 0xba, 0xc8, 0x59, 0xc0, 0x35, 0xd1, 0x1a, 0x8e, 0x3e, 0xf7, 0x9e, 0x80, 0x63, 0xfb, 0x38, 0x88, 0x7f, 0x9f, 0xd9, 0x35, 0xdf, 0xdb, 0x5a, 0xae, 0x3a, 0xf3, 0x1e, 0x69, 0x90, 0x26, 0xe2, 0xe2, 0x74, 0x5e, 0x9b, 0x75, 0x74, 0x0f, 0x8b, 0xb8, 0x44, 0x37, 0x97, 0x60, 0x7a, 0x32, 0x51, 0x6c, 0x33, 0xf8, 0x02, 0x85, 0x79, 0xa4, 0x60, 0x01, 0xea, 0x27, 0xb8, 0xc8, 0xc0, 0x2f, 0x9a, 0x73, 0x6f, 0xbf, 0x41, 0x74, 0x98, 0x4c, 0x5d, 0xf3, 0x4b, 0x44, 0xe1, 0x7e, 0xac, 0x79, 0x67, 0xe2, 0x14, 0xee, 0x0d, 0xd5, 0xfc, 0x19, 0x80, 0x95, 0xa6, 0xd5, 0x53, 0xa6, 0xce, 0xe2, 0xef, 0x8e, 0xd6, 0x2c, 0x7c, 0x65, 0x17, 0x8d, 0x43, 0x60, 0xde, 0x31, 0xe0, 0xed, 0x42, 0x56, 0x60, 0x54, 0x8e, 0x51, 0xd1, 0x43, 0xd7, 0x9d, 0x49, 0xe5, 0xf3, 0x30, 0xbf, 0xbb, 0x95, 0x00, 0xa4, 0x42, 0xba, 0xea, 0x26, 0xc3, 0x4f, 0xb8, 0xa5, 0xea, 0xb1, 0x95, 0x1e, 0x02, 0x89, 0x14, 0x71, 0x39, 0x72, 0xb4, 0x08, 0xad, 0xb8, 0x94, 0x87, 0x2b, 0x1c, 0x79, 0x34, 0x63, 0xb7, 0xc8, 0x19, 0x7a, 0xf9, 0xe6, 0xd8, 0x2b, 0x42, 0xba, 0x41, 0xd4, 0x7d, 0xe1, 0x46, 0x9e, 0x58, 0x0b, 0x98, 0x7e, 0xd7, 0xe5, 0x5f, 0xc1, 0xce, 0x5c, 0xbc, 0x6e, 0x9f, 0x86, 0xc4, 0x77, 0x49, 0x54, 0x59, 0x8a, 0x52, 0x7b, 0x0b, 0x1c, 0xba, 0x22, 0xb9, 0x52, 0x91, 0x34, 0x41, 0x21, 0xd4, 0x61, 0x89, 0xad, 0xda, 0xd5, 0x3f, 0xfb, 0x3d, 0xe1, 0xf5, 0x1e, 0x0c, 0xe2, 0x83, 0xb9, 0x95, 0x32, 0xde, 0x64, 0xe7, 0x99, 0x1d, 0x27, 0x1a, 0x28, 0x73, 0x41, 0x40, 0x4b, 0x9f, 0x04, 0xaf, 0x8f, 0x17, 0x52, 0x64, 0xfa, 0xd7, 0x9f, 0xbc, 0x97, 0x08, 0x9f, 0x16, 0x20, 0x9d, 0x66, 0x7a, 0x7b, 0xdd, 0xd3, 0x38, 0x8f, 0x8d, 0x0b, 0x31, 0xc5, 0xb5, 0x95, 0xc4, 0x6b, 0xff, 0xb7, 0x14, 0xa1, 0xa3, 0x54, 0x37, 0x22, 0x93, 0xdb, 0xbd, 0xea, 0x56, 0x5e, 0x89, 0x10, 0x1e, 0x09, 0x20, 0x5d, 0x45, 0xd5, 0x00, 0x83, 0x4a, 0xe5, 0x66, 0xb6, 0x8f, 0x8b, 0x4d, 0xc7, 0x4c, 0x43, 0x31, 0x83, 0x7d, 0xb4, 0x46, 0x09, 0xa5, 0x8f, 0xd5, 0xae, 0xbd, 0x1b, 0xcc, 0x1c, 0x07, 0x75, 0x28, 0x2d, 0xfd, 0xc6, 0x91, 0xc8, 0xa0, 0xf9, 0x18, 0x91, 0x68, 0x4b, 0x73, 0x98, 0xfd, 0xb3, 0x34, 0x25, 0x5e, 0x97, 0x85, 0x77, 0xb2, 0x81, 0x4b, 0xce, 0xbb, 0xf7, 0x07, 0xfb, 0x00, 0x4d, 0xd6, 0xc0, 0x89, 0xb9, 0x22, 0x39, 0xb6, 0xd2, 0x80, 0x54, 0xed, 0x9b, 0x9b, 0x5a, 0xe8, 0xd4, 0x5c, 0x59, 0xba, 0x86, 0xa4, 0x8e, 0xe1, 0xde, 0x49, 0xde, 0x0e, 0x1a, 0x51, 0x4f, 0x61, 0x92, 0x5f, 0xd0, 0xe1, 0x62, 0x6b, 0xf4, 0x2d, 0xfc, 0x90, 0x4d, 0x6c, 0x56, 0xc7, 0x34, 0x50, 0xf5, 0x6e, 0xe4, 0x12, 0x33, 0x77, 0xb8, 0x43, 0x75, 0x80, 0x8c, 0xb5, 0x8b, 0x8f, 0x9a, 0x26, 0x7c, 0xf5, 0xc6, 0x37, 0x57, 0xc9, 0x88, 0x4b, 0xbe, 0x01, 0x40, 0x8a, 0x04, 0xb3, 0x5b, 0x6f, 0x51, 0xb5, 0x19, 0x73, 0xd0, 0xf2, 0xf9, 0x9c, 0xd8, 0xf8, 0x69, 0xb1, 0xd3, 0xd7, 0x44, 0xae, 0x53, 0xe1, 0xd5, 0x6b, 0xda, 0x62, 0xf6, 0x64, 0x08, 0x67, 0x77, 0x29, 0x6a, 0xec, 0x97, 0x98, 0x8f, 0x11, 0x03, 0xd2, 0x1e, 0xf4, 0x5c, 0x42, 0xff, 0xf9, 0xe9, 0xb0, 0xb2, 0x51, 0x87, 0x78, 0x56, 0x21, 0x04, 0x04, 0xd7, 0x36, 0xf9, 0x75, 0xd0, 0x14, 0x90, 0x1b, 0xd0, 0x0d, 0x0d, 0x68, 0x5a, 0xa9, 0x18, 0xd9, 0x0e, 0x64, 0xfd, 0x0d, 0x40, 0x24, 0xec, 0xfc, 0x3c, 0x30, 0x2f, 0xa5, 0x2f, 0x02, 0x0a, 0xf6, 0x11, 0x4c, 0xc9, 0xa0, 0xf0, 0x5d, 0x50, 0xa7, 0xb1, 0x16, 0xd8, 0xff, 0xb8, 0x03, 0x3d, 0xd1, 0x6c, 0x60, 0x29, 0x9b, 0x53, 0xb3, 0x19, 0x4c, 0x97, 0xf4, 0xef, 0x49, 0x3f, 0x22, 0x94, 0x4a, 0x26, 0x47, 0x47, 0xb0, 0x26, 0x02, 0xae, 0x2b, 0xb8, 0xc5, 0x43, 0xd8, 0x51, 0x46, 0x50, 0x23, 0x69, 0xd0, 0x68, 0xf7, 0x71, 0x02, 0xd0, 0x82, 0xb1, 0x66, 0x92, 0x5a, 0xd0, 0x94, 0xe7, 0xe5, 0xae, 0x98, 0x21, 0xeb, 0x9c, 0x6d, 0x4f, 0xe0, 0xa2, 0x89, 0x97, 0x29, 0x52, 0x43, 0x14, 0x0d, 0xdf, 0xd7, 0xc3, 0xfb, 0x3c, 0x3f, 0x41, 0x92, 0x74, 0x5e, 0x8b, 0x24, 0x27, 0x89, 0xf1, 0x96, 0x17, 0x10, 0x36, 0xdf, 0xeb, 0x93, 0x1b, 0xaa, 0x57, 0xfc, 0xf7, 0x8e, 0x4c, 0x5c, 0x78, 0xd4, 0x21, 0xab, 0x5a, 0x9c, 0xbb, 0xaa, 0x88, 0x27, 0x84, 0x0b, 0x3c, 0x80, 0x07, 0x0e, 0x7b, 0x59, 0x19, 0x33, 0x33, 0x44, 0x8e, 0xd4, 0x50, 0x85, 0x71, 0x97, 0xbb, 0x72, 0x52, 0xa0, 0x88, 0x8e, 0x79, 0xd0, 0x86, 0xde, 0xd7, 0xb3, 0x5d, 0x45, 0x5d, 0xc1, 0xb1, 0x98, 0x9e, 0x14, 0x59, 0x7f, 0x6d, 0xac, 0xad, 0x10, 0xe5, 0xb1, 0x0b, 0x49, 0x29, 0x12, 0xe6, 0xc5, 0x29, 0x1c, 0x65, 0xc8, 0x75, 0xa7, 0xca, 0xdc, 0x22, 0x58, 0xb9, 0x92, 0x8c, 0x23, 0xc9, 0xea, 0xc9, 0x1d, 0xbd, 0x06, 0x67, 0xb0, 0x4d, 0xcf, 0xab, 0x5f, 0x0d, 0x41, 0x9a, 0x91, 0x21, 0xaa, 0xc1, 0x41, 0x34, 0x3b, 0x83, 0xed, 0x18, 0xee, 0xc2, 0xb3, 0x62, 0xe3, 0x75, 0xd0, 0x3c, 0xc7, 0x3f, 0x00, 0xf1, 0x05, 0xcb, 0xa2, 0x9f, 0x14, 0xbf, 0x0e, 0x0b, 0x31, 0x8b, 0x5d, 0x05, 0x06, 0xc3, 0x82, 0x27, 0xc6, 0x4b, 0x74, 0x82, 0x90, 0x56, 0x07, 0x57, 0x6a, 0xed, 0x71, 0x0e, 0x22, 0xcd, 0x27, 0x16, 0xb4, 0x97, 0xd1, 0x8d, 0x8f, 0xda, 0x5b, 0xa2, 0x3b, 0x02, 0xaa, 0x9a, 0x2a, 0x47, 0x80, 0xb9, 0xe7, 0x58, 0x93, 0x57, 0x6c, 0xb1, 0x6a, 0xfe, 0x9e, 0xd6, 0x29, 0x6a, 0x07, 0xb4, 0xfb, 0xea, 0xb7, 0x6a, 0x03, 0xa4, 0xc4, 0xfc, 0x73, 0xdc, 0x1d, 0x9e, 0x89, 0xc4, 0xd2, 0xe2, 0x41, 0x51, 0xb6, 0xbd, 0xb8, 0x7a, 0xa2, 0x7d, 0x12, 0x78, 0x9c, 0xe7, 0x81, 0xcd, 0x56, 0x0f, 0x69, 0x25, 0x22, 0xca, 0x53, 0xa5, 0x3b, 0xb8, 0x07, 0x9c, 0x6d, 0x76, 0xd0, 0xae, 0x64, 0xa1, 0xc5, 0xea, 0xc0, 0xec, 0x83, 0xda, 0xf7, 0xc9, 0x04, 0xd5, 0x1a, 0xe5, 0x86, 0x0e, 0x3f, 0x17, 0x3f, 0x4e, 0x22, 0x3f, 0x45, 0x32, 0x04, 0xae, 0x01, 0xb4, 0x52, 0xce, 0x25, 0x48, 0xdb, 0x0a, 0x07, 0x70, 0x71, 0x21, 0xa4, 0x2b, 0xbc, 0x8e, 0xd6, 0x42, 0xfa, 0x74, 0x85, 0x0d, 0xb9, 0x86, 0x2f, 0x1b, 0x82, 0xed, 0x04, 0x7f, 0x35, 0x93, 0xf1, 0x07, 0xc6, 0xac, 0xda, 0xcb, 0xe7, 0x62, 0xc0, 0x4b, 0xcf, 0xe4, 0x1c, 0xf5, 0x15, 0x3c, 0xa1, 0x14, 0x00, 0xcc, 0xb2, 0xcc, 0x21, 0x51, 0x1d, 0x5c, 0x4f, 0x94, 0x5b, 0xe3, 0x90, 0x09, 0x27, 0x91, 0x30, 0x20, 0xe5, 0x54, 0x73, 0xc2, 0x68, 0xc9, 0xf7, 0xb3, 0xc1, 0x1c, 0xfb, 0xf1, 0x8d, 0x30, 0x9f, 0x87, 0x0e, 0x05, 0x34, 0x35, 0x00, 0x92, 0x32, 0x70, 0xa8, 0xcc, 0x64, 0x45, 0x68, 0xae, 0x15, 0xb4, 0xfa, 0x4a, 0x7f, 0xd4, 0xaf, 0xe5, 0x35, 0x1b, 0x88, 0x91, 0x4b, 0x0a, 0x7a, 0x3f, 0x7f, 0x66, 0x6e, 0xb8, 0x2b, 0xfa, 0xb5, 0x09, 0x2c, 0x45, 0x28, 0x96, 0xaa, 0x1a, 0x1c, 0x74, 0x87, 0x76, 0x6d, 0x6a, 0xa1, 0xa3, 0xa0, 0x6c, 0x39, 0xa0, 0x72, 0xb0, 0xe2, 0x66, 0xd3, 0x95, 0x1c, 0x91, 0xfd, 0x4d, 0x7d, 0x42, 0xa2, 0xde, 0x0f, 0x2c, 0x88, 0x3b, 0xa9, 0x14, 0x7b, 0x1d, 0xe4, 0x78, 0x6b, 0xb4, 0xda, 0x65, 0xa0, 0x96, 0x9e, 0xc2, 0xfe, 0x8d, 0xe8, 0x79, 0x98, 0x19, 0xf7, 0x77, 0xe5, 0x08, 0x58, 0xc9, 0x97, 0x97, 0x4d, 0x1f, 0x10, 0x1e, 0x96, 0x96, 0x44, 0x2a, 0x5b, 0xbe, 0x32, 0xca, 0x79, 0x0e, 0xb2, 0x49, 0x50, 0x74, 0x7c, 0x7f, 0x4d, 0xa7, 0xd2, 0x8d, 0x09, 0x44, 0xa9, 0xd7, 0x40, 0x47, 0x96, 0xb4, 0x3a, 0x5e, 0xdb, 0xb2, 0xf3, 0xc4, 0x4f, 0xf7, 0x5a, 0xdb, 0xbe, 0x04, 0x2f, 0x54, 0x75, 0xee, 0x5d, 0x62, 0x23, 0x69, 0x5d, 0x08, 0x4a, 0x7a, 0x1a, 0x4a, 0x97, 0x8d, 0xb8, 0xbd, 0x8d, 0x30, 0xe5, 0x70, 0x73, 0x59, 0x89, 0xdd, 0x37, 0xc5, 0xaf, 0x04, 0x79, 0x26, 0x69, 0xde, 0xc0, 0x8b, 0x2a, 0xe9, 0x33, 0x24, 0xae, 0x01, 0xeb, 0x60, 0xce, 0xca, 0x90, 0xdd, 0x9b, 0x2f, 0x15, 0x55, 0x6c, 0x95, 0x26, 0xbb, 0x8d, 0x84, 0x85, 0x45, 0xd6, 0xf8, 0x0b, 0x3a, 0x67, 0x24, 0xdd, 0x0b, 0x49, 0xac, 0x5d, 0x47, 0x11, 0xd0, 0x4f, 0x86, 0x5c, 0xbe, 0x01, 0xfd, 0x9a, 0xbf, 0x1c, 0x9d, 0x96, 0x09, 0x4b, 0xcf, 0x15, 0x91, 0xf7, 0xc1, 0xdf, 0xfc, 0xe2, 0x97, 0xdc, 0x01, 0x73, 0x61, 0x6c, 0x01, 0xbb, 0xf4, 0xcc, 0x72, 0x1b, 0x81, 0xe6, 0xe9, 0x9f, 0x05, 0xe5, 0xac, 0xbe, 0x9e, 0x48, 0x7d, 0xe3, 0x69, 0xde, 0x54, 0xc7, 0x72, 0xb2, 0x84, 0x8b, 0x8b, 0x2e, 0xd5, 0xa3, 0x18, 0xfc, 0xc9, 0x68, 0xe6, 0xcc, 0x23, 0x58, 0x6a, 0xe9, 0xa0, 0xd0, 0x82, 0x04, 0x8f, 0x34, 0x19, 0xf8, 0x55, 0xbf, 0x66, 0xbe, 0x9e, 0xc1, 0xbc, 0x41, 0xc4, 0xfa, 0xb2, 0x67, 0x31, 0x18, 0xf1, 0xe1, 0xa1, 0x37, 0xe0, 0x61, 0xaf, 0x44, 0x2f, 0x47, 0x17, 0x78, 0xfb, 0x97, 0x3d, 0xca, 0x43, 0xfe, 0x27, 0xdf, 0xcf, 0x76, 0x1d, 0x9c, 0x57, 0xf3, 0x3a, 0x4a, 0x93, 0xcc, 0x51, 0xc1, 0xfa, 0x6e, 0xbc, 0x28, 0x97, 0x1f, 0x9a, 0x84, 0x15, 0xef, 0x87, 0x0f, 0x49, 0x50, 0xee, 0x0e, 0xf6, 0x35, 0x0b, 0x09, 0x7a, 0x43, 0x8b, 0x94, 0xf4, 0xfb, 0x4c, 0x1e, 0x54, 0x09, 0x9f, 0x83, 0x6d, 0x20, 0xfc, 0x81, 0x70, 0x5f, 0x85, 0xd1, 0x1a, 0xc7, 0x17, 0x05, 0x6b, 0x51, 0xa3, 0x37, 0x57, 0x24, 0xae, 0x2e, 0x60, 0x98, 0x20, 0x7c, 0x4c, 0x17, 0xb5, 0x8e, 0x75, 0x57, 0x04, 0xa9, 0xb6, 0xa4, 0x79, 0x82, 0xa1, 0x09, 0x80, 0xb8, 0x07, 0xe8, 0xe1, 0x82, 0xcd, 0xc3, 0xc3, 0x45, 0x76, 0x68, 0xb0, 0xb2, 0x8b, 0xa1, 0xbc, 0xaf, 0x6c, 0x88, 0x1d, 0x76, 0x02, 0xe0, 0x77, 0x23, 0x73, 0xab, 0xa5, 0x68, 0x2d, 0x15, 0x4b, 0xf1, 0xdd, 0xb8, 0x85, 0xe6, 0x30, 0xac, 0x25, 0x2a, 0x16, 0x2c, 0x3e, 0x48, 0xd4, 0x0a, 0x62, 0x2a, 0x34, 0x5f, 0xd6, 0x8e, 0x24, 0x81, 0xde, 0x4c, 0x23, 0x49, 0x92, 0xde, 0xa4, 0xba, 0xb6, 0x7d, 0x03, 0x46, 0x09, 0x8c, 0x4f, 0x52, 0x64, 0x6a, 0x95, 0x24, 0x57, 0x3a, 0xdd, 0x01, 0xd5, 0x95, 0x71, 0xaf, 0x18, 0x03, 0x10, 0x92, 0x3e, 0xbc, 0x76, 0x92, 0x37, 0xc8, 0x91, 0xfe, 0x5e, 0x59, 0xb5, 0x53, 0x4b, 0x44, 0x90, 0x7e, 0x4e, 0xcc, 0x2f, 0xc4, 0xa1, 0x6a, 0xca, 0xe5, 0xf8, 0x16, 0xfc, 0xd8, 0x86, 0x15, 0x6c, 0xd3, 0x0c, 0x9a, 0xc7, 0xad, 0x07, 0x73, 0x9a, 0x7e, 0xb2, 0x5e, 0x56, 0xa1, 0x8f, 0xa1, 0x18, 0x84, 0x58, 0x5a, 0x0b, 0x7a, 0xe6, 0x10, 0x92, 0x5b, 0xd0, 0x4c, 0x75, 0x46, 0x2a, 0x0b, 0x3a, 0xe1, 0x41, 0xee, 0x5b, 0xad, 0x09, 0x31, 0x13, 0xdf, 0x90, 0x19, 0x65, 0x92, 0x03, 0x59, 0x18, 0x78, 0xdb, 0xdc, 0x6d, 0x11, 0xda, 0x68, 0x77, 0x47, 0xce, 0xd0, 0x79, 0xa3, 0xf0, 0x91, 0x8e, 0x13, 0x24, 0xe6, 0x23, 0x5b, 0xa1, 0x2b, 0xca, 0x53, 0x31, 0x38, 0xe3, 0xd2, 0x86, 0xc4, 0x8a, 0xdb, 0xad, 0xe8, 0xa2, 0x29, 0xef, 0x24, 0xa8, 0x0d, 0xf0, 0x23, 0x7a, 0x25, 0x03, 0xc6, 0xd8, 0xb7, 0xe4, 0x57, 0xf7, 0x8f, 0xf9, 0xaf, 0x7f, 0x3a, 0x26, 0x84, 0xe8, 0x3c, 0x71, 0x32, 0x72, 0x6d, 0x2f, 0x39, 0x4e, 0x67, 0x6b, 0xfc, 0xdd, 0x39, 0x91, 0x6f, 0xa4, 0xbe, 0xed, 0xa3, 0xb3, 0x15, 0xa2, 0x38, 0xbc, 0x5b, 0x5d, 0x23, 0x50, 0x13, 0x5c, 0x56, 0xd6, 0x87, 0x3c, 0x9d, 0x60, 0xbd, 0x4b, 0x5f, 0x50, 0x01, 0x42, 0xaa, 0x7e, 0x41, 0xc0, 0x9f, 0x25, 0x97, 0x24, 0x4b, 0xa5, 0x1d, 0x34, 0x1c, 0x14, 0xd7, 0x95, 0x63, 0x5e, 0xc2, 0x23, 0x97, 0x41, 0x51, 0xbb, 0x3d, 0x65, 0x3a, 0xd9, 0xbd, 0x6b, 0x5b, 0xc4, 0xd3, 0x07, 0xde, 0x82, 0x1f, 0xf8, 0x55, 0x67, 0x37, 0x17, 0x30, 0x6c, 0xba, 0x9e, 0x77, 0x78, 0xc5, 0xbe, 0xc2, 0xe8, 0x91, 0x65, 0x7b, 0xad, 0xf7, 0x88, 0x4b, 0x21, 0xe8, 0xc0, 0xae, 0x7e, 0x5b, 0x16, 0x74, 0x92, 0xfa, 0xbd, 0x9c, 0x23, 0x7c, 0x16, 0xce, 0x46, 0xf2, 0xcb, 0xba, 0x01, 0xd5, 0x56, 0x7e, 0xf8, 0x1e, 0xe8, 0x91, 0x8c, 0xf6, 0x12, 0xde, 0xb4, 0x7f, 0x69, 0x9f, 0xdc, 0xac, 0xf9, 0x80, 0xc7, 0xc7, 0xb7, 0xe1, 0xde, 0xa7, 0x5e, 0xd7, 0x27, 0x31, 0x7e, 0xf3, 0x17, 0x71, 0x61, 0x04, 0xae, 0x6a, 0x95, 0x85, 0x9e, 0x6d, 0x06, 0xf9, 0xf2, 0x3a, 0x72, 0x02, 0x9e, 0x87, 0xcb, 0xc9, 0x7a, 0xa1, 0x2f, 0xdc, 0x50, 0xbe, 0xdf, 0x1c, 0xfa, 0x3c, 0x1f, 0xc3, 0x68, 0xcd, 0x73, 0xd5, 0xa0, 0x20, 0xf4, 0xb9, 0x41, 0xf5, 0x14, 0x6f, 0x01, 0x05, 0xc5, 0x6b, 0xc1, 0xdc, 0x8a, 0xed, 0x71, 0xdf, 0xc9, 0xb0, 0x7a, 0xb0, 0x5b, 0x00, 0xf5, 0xeb, 0xb8, 0xa4, 0x6c, 0xe3, 0x91, 0x7c, 0x8c, 0x42, 0x90, 0xc4, 0x90, 0x98, 0x33, 0xc1, 0xca, 0x61, 0x77, 0x88, 0xac, 0x46, 0x9d, 0x98, 0xbc, 0x61, 0xe5, 0x2a, 0xa9, 0x9f, 0x29, 0x60, 0xd9, 0xcd, 0xcc, 0x9f, 0x06, 0x2e, 0x60, 0x2f, 0x5c, 0x88, 0xd9, 0xa3, 0x39, 0x31, 0xc1, 0xd6, 0x84, 0xdc, 0xc8, 0x28, 0x77, 0x6b, 0x54, 0x16, 0x0e, 0x0c, 0xa8, 0xbe, 0xbb, 0x3a, 0x46, 0x2d, 0x63, 0x69, 0xe1, 0x68, 0xf5, 0xbc, 0x42, 0x58, 0x7d, 0x2e, 0xdc, 0xe8, 0x29, 0x84, 0xf8, 0x94, 0x9b, 0x2c, 0x77, 0x14, 0x20, 0x04, 0x44, 0xf9, 0xe9, 0x81, 0x22, 0xb5, 0x00, 0xd7, 0xd9, 0x97, 0x55, 0xc1, 0x82, 0xd6, 0x8a, 0x13, 0xea, 0xa7, 0xb3, 0xf2, 0xbe, 0x94, 0xeb, 0x5e, 0x66, 0x32, 0x8b, 0xbf, 0xd6, 0xdd, 0x34, 0xbb, 0x71, 0xf3, 0x92, 0x7e, 0x29, 0x30, 0x44, 0x2f, 0xb8, 0x13, 0xdf, 0xd6, 0x19, 0xf1, 0x0a, 0xc4, 0x05, 0x37, 0xe4, 0xdc, 0x98, 0x59, 0xac, 0xf0, 0x0b, 0xce, 0x9e, 0x1c, 0xb7, 0x67, 0x10, 0x93, 0x26, 0xb3, 0xee, 0x15, 0x45, 0x57, 0x21, 0xa0, 0x56, 0x8f, 0xbe, 0x1c, 0xc0, 0x65, 0x76, 0xfa, 0x07, 0xf8, 0xb1, 0x94, 0x1b, 0x81, 0xa9, 0x34, 0xe8, 0x0b, 0xb0, 0x75, 0xf0, 0xd6, 0x79, 0x71, 0xcb, 0xb3, 0x7d, 0x7f, 0x29, 0x35, 0x8f, 0x72, 0xe0, 0x2b, 0xd3, 0x2f, 0x63, 0xfe, 0xd1, 0x7d, 0x23, 0x33, 0x85, 0x4d, 0x5a, 0x58, 0x45, 0xd0, 0x0d, 0xc2, 0x02, 0x1a, 0x90, 0x1d, 0xdf, 0x2e, 0xa6, 0x95, 0x01, 0xff, 0x62, 0xa5, 0x7a, 0x0a, 0x36, 0xb8, 0xed, 0xd4, 0xc0, 0x1e, 0x3d, 0x25, 0x99, 0x33, 0x3d, 0xf6, 0xde, 0x2f, 0x49, 0x20, 0x7a, 0xcd, 0x9c, 0x29, 0x81, 0xf7, 0x0b, 0xb8, 0x65, 0xfc, 0xee, 0x35, 0xfc, 0x4c, 0x21, 0x57, 0x3d, 0x34, 0xaf, 0x72, 0x03, 0x5f, 0xa7, 0x01, 0x15, 0xf5, 0xf0, 0x32, 0xb9, 0x7f, 0x02, 0x1b, 0x2f, 0x76, 0xdd, 0x06, 0x9d, 0x5c, 0x93, 0xb6, 0xeb, 0x3f, 0x78, 0x42, 0x1f, 0xa9, 0x64, 0xdc, 0x00, 0x0e, 0x2e, 0xc4, 0x6a, 0x25, 0x09, 0x27, 0x54, 0x52, 0xae, 0xb8, 0x13, 0xc0, 0x08, 0xce, 0x12, 0x32, 0xcc, 0x75, 0x0e, 0xa3, 0x00, 0x7b, 0xa8, 0x9e, 0xef, 0x7c, 0x20, 0x38, 0xd3, 0x50, 0xf8, 0x75, 0xaf, 0x8a, 0x78, 0xf3, 0xc5, 0xef, 0xe9, 0xbc, 0xed, 0x79, 0x5a, 0x6c, 0xc4, 0xaf, 0x90, 0x5f, 0x02, 0x20, 0xd1, 0xb8, 0x08, 0x41, 0xf1, 0x49, 0x16, 0x5a, 0xb4, 0x1c, 0x65, 0xc4, 0xc9, 0x6b, 0x0a, 0x55, 0x47, 0x94, 0x3c, 0x5a, 0x65, 0x98, 0xdd, 0x78, 0x7c, 0x50, 0x8d, 0x2d, 0x83, 0xdd, 0x34, 0xf3, 0x75, 0xe2, 0x63, 0x61, 0xa6, 0x03, 0xc4, 0x86, 0xac, 0x74, 0x89, 0x60, 0xb6, 0x08, 0x43, 0x8d, 0xfb, 0x2e, 0x39, 0x07, 0x4d, 0x38, 0x42, 0x58, 0xe5, 0xaf, 0x77, 0x6d, 0xf7, 0xad, 0x07, 0xa4, 0xb0, 0x4c, 0xaf, 0x9c, 0x8f, 0xfd, 0xc7, 0xe6, 0x44, 0xa9, 0x78, 0x15, 0x43, 0x9c, 0x4a, 0x72, 0x7c, 0xdd, 0xfd, 0x6a, 0xb9, 0x63, 0xd3, 0xd9, 0xa8, 0xb4, 0x06, 0x28, 0x2f, 0xe6, 0x17, 0x38, 0x67, 0xbd, 0x57, 0xd6, 0xe7, 0x28, 0xc8, 0x1b, 0x74, 0x1f, 0x0e, 0x21, 0xe3, 0x7e, 0x1b, 0x4b, 0x1f, 0x27, 0xdb, 0xe7, 0x0c, 0x60, 0xc4, 0xb9, 0xb8, 0xf0, 0x78, 0xdc, 0xe1, 0xca, 0xa1, 0x26, 0x78, 0xbe, 0x5f, 0xa9, 0x04, 0xe7, 0xa9, 0x36, 0xfb, 0x55, 0xc9, 0xbf, 0x36, 0x5b, 0xd0, 0x2d, 0x8c, 0xae, 0x66, 0x85, 0x0b, 0x67, 0x0f, 0x31, 0x8e, 0x3d, 0x2b, 0x94, 0x12, 0x19, 0xc3, 0xfa, 0xd9, 0x0d, 0x12, 0xfd, 0x97, 0x70, 0x02, 0x0e, 0xd5, 0xb7, 0x24, 0x9f, 0x79, 0x0f, 0x24, 0x43, 0x60, 0x01, 0x05, 0xc2, 0xd2, 0xa3, 0x34, 0xe0, 0x45, 0xc2, 0x4f, 0xf2, 0x23, 0x71, 0x18, 0x6a, 0xc0, 0x3b, 0x51, 0x5c, 0xad, 0x77, 0x50, 0x5d, 0xbc, 0x7c, 0x21, 0xe8, 0x1f, 0x29, 0x20, 0x73, 0xc3, 0xba, 0xa1, 0x00, 0x00, 0x43, 0x9f, 0xe6, 0xf5, 0x39, 0x71, 0x6a, 0x66, 0x06, 0xaa, 0x95, 0x37, 0xec, 0xdf, 0xe7, 0x07, 0x3f, 0x50, 0xa5, 0x13, 0x1c, 0x99, 0xca, 0xcd, 0xa8, 0x81, 0x78, 0x20, 0xa7, 0x51, 0x44, 0xe7, 0x2c, 0x7f, 0xca, 0x5a, 0xc4, 0xb3, 0x48, 0xc4, 0xaf, 0x80, 0xa8, 0xf1, 0x7d, 0x3c, 0x5d, 0xd5, 0x3d, 0x3b, 0xbe, 0x74, 0xd3, 0xb6, 0x0f, 0xdc, 0x10, 0x6a, 0xe1, 0xbc, 0x37, 0xf3, 0xfe, 0x58, 0x9d, 0x3f, 0x71, 0xff, 0xf9, 0x71, 0x9f, 0xb9, 0xf3, 0x00, 0x18, 0x4c, 0x3d, 0x85, 0xe5, 0xcb, 0x9c, 0x2b, 0x9b, 0x30, 0xff, 0x71, 0x17, 0x88, 0x01, 0x5b, 0x7e, 0xa2, 0x0b, 0xc5, 0x9a, 0x07, 0x6d, 0xd4, 0x09, 0x2a, 0x89, 0xe0, 0x5f, 0x93, 0xda, 0xa0, 0x69, 0xc0, 0x84, 0x9b, 0x70, 0xcd, 0x1a, 0x47, 0x68, 0x78, 0xcd, 0x10, 0xe8, 0xbd, 0xbc, 0xe1, 0x73, 0xa4, 0xd7, 0x8c, 0xa6, 0x51, 0xab, 0x44, 0xe3, 0xaf, 0x79, 0xd5, 0xa3, 0x1f, 0x74, 0x48, 0xbf, 0xfe, 0xbc, 0xd5, 0xcd, 0xf5, 0x3e, 0x76, 0x52, 0x11, 0x9a, 0xe3, 0x5d, 0xf3, 0xe2, 0x94, 0x11, 0x6e, 0x8b, 0x41, 0x4a, 0x58, 0xa1, 0x77, 0x72, 0xcd, 0x3a, 0x9b, 0x92, 0xa7, 0x8b, 0xca, 0x7b, 0x3f, 0x9a, 0x8d, 0xb7, 0xb3, 0x61, 0x6d, 0xf8, 0x85, 0x16, 0x64, 0x7c, 0x62, 0xcc, 0x07, 0x5f, 0xaa, 0xdd, 0x41, 0xc3, 0xc6, 0xfd, 0x2e, 0x7a, 0x66, 0xc8, 0x76, 0x3d, 0x1a, 0x0e, 0xcb, 0x9e, 0xf6, 0x01, 0xa1, 0xe5, 0x2a, 0xd5, 0xd7, 0x7e, 0xc7, 0x46, 0x24, 0xc3, 0xe2, 0x33, 0x50, 0xe9, 0x0c, 0x9f, 0xa4, 0xb8, 0x0d, 0xa6, 0x18, 0x5c, 0x05, 0xe1, 0x44, 0xd5, 0xe2, 0xe8, 0x51, 0x29, 0xfc, 0x0f, 0xbb, 0x8a, 0xed, 0xb9, 0xd2, 0xa7, 0x13, 0xcb, 0x6d, 0x05, 0x35, 0xd4, 0x32, 0xd1, 0x67, 0x53, 0x26, 0xb2, 0x2b, 0x29, 0xd1, 0x4c, 0x54, 0xb1, 0x26, 0x75, 0x64, 0xb9, 0xdd, 0x27, 0x67, 0x54, 0xd5, 0xa5, 0xb4, 0x0f, 0xad, 0x26, 0xb8, 0x4e, 0x5b, 0xa3, 0x3f, 0x46, 0x39, 0x03, 0x95, 0xb0, 0x35, 0x18, 0x35, 0x81, 0xa2, 0x65, 0xd0, 0x96, 0x9a, 0x9d, 0xf3, 0x59, 0xab, 0x3d, 0x73, 0x68, 0xf1, 0xac, 0xa0, 0xd5, 0xde, 0x85, 0x9b, 0x6b, 0xf5, 0x3c, 0x2f, 0x0d, 0x15, 0xd0, 0x91, 0x1d, 0xd5, 0x49, 0x3b, 0x09, 0x0d, 0xc4, 0x3f, 0x66, 0x3b, 0x60, 0x48, 0xf9, 0xa3, 0x03, 0xe5, 0x63, 0x3a, 0xcd, 0x65, 0x4a, 0x70, 0x89, 0x9a, 0x5c, 0x30, 0x92, 0x92, 0xb6, 0xcf, 0x0c, 0x7e, 0x81, 0xb2, 0xc5, 0xc8, 0xba, 0x54, 0xb7, 0x54, 0x27, 0x36, 0x6f, 0xd7, 0x2b, 0xf5, 0xad, 0xad, 0xbb, 0xd8, 0xeb, 0x5b, 0xa0, 0x18, 0xa6, 0x82, 0x52, 0x85, 0x2f, 0x76, 0xf1, 0x61, 0x22, 0x73, 0xcf, 0x10, 0x56, 0x3f, 0xd3, 0x0e, 0xdb, 0x0a, 0x6d, 0xb4, 0x17, 0x83, 0x11, 0x92, 0x7f, 0x58, 0x2f, 0xee, 0xb7, 0x4e, 0xdc, 0x91, 0xf4, 0x35, 0x66, 0x3c, 0xa3, 0xe3, 0x0b, 0x7a, 0xad, 0x7d, 0x9d, 0xce, 0x11, 0x66, 0xbe, 0x17, 0xce, 0xc3, 0xae, 0x14, 0xcb, 0x4f, 0xd0, 0xee, 0xf7, 0x0d, 0xaa, 0x89, 0x5f, 0x7c, 0x0d, 0x86, 0xb0, 0x8c, 0xcc, 0x2d, 0x95, 0x5a, 0xe2, 0x5c, 0xa8, 0xe4, 0xbb, 0x91, 0x8b, 0x84, 0x05, 0xa1, 0xd7, 0xe8, 0x6a, 0x4e, 0x47, 0x7f, 0x49, 0x5f, 0x25, 0x16, 0x9d, 0xeb, 0x81, 0x18, 0x91, 0x69, 0x16, 0x75, 0xb2, 0xec, 0x3b, 0x42, 0xa6, 0x95, 0xa0, 0xbb, 0x0d, 0x18, 0xd5, 0xc7, 0xfd, 0x85, 0x05, 0x8b, 0xd9, 0x20, 0xf9, 0x1a, 0x41, 0xb8, 0xc0, 0x6a, 0xb3, 0x91, 0xa3, 0x94, 0x8f, 0xaa, 0x2a, 0xb2, 0xe7, 0x14, 0x3b, 0x95, 0x08, 0x47, 0xff, 0xde, 0x8b, 0x15, 0x98, 0x2d, 0x33, 0x0d, 0xf2, 0x03, 0xe2, 0xda, 0x64, 0x00, 0x50, 0x53, 0x7e, 0x64, 0xd0, 0x75, 0x4d, 0x1c, 0x31, 0x1e, 0xc4, 0xc0, 0xf8, 0x9b, 0xc1, 0x12, 0x76, 0xef, 0xa1, 0x24, 0xa1, 0x2a, 0xa3, 0xa3, 0x07, 0x89, 0x6c, 0xd3, 0x14, 0xe5, 0x81, 0xd1, 0x22, 0xf9, 0x4a, 0x4e, 0x79, 0xb9, 0x1b, 0x96, 0x50, 0x28, 0xea, 0xdf, 0xbb, 0x26, 0x93, 0xb2, 0x5d, 0xae, 0x97, 0xa8, 0xed, 0x5c, 0xf9, 0x6f, 0xea, 0x61, 0x81, 0xb6, 0x24, 0xe2, 0xa6, 0x2d, 0x04, 0x51, 0x4c, 0x9f, 0xc8, 0xec, 0x1a, 0x05, 0x0b, 0x9d, 0x2d, 0x09, 0x98, 0x46, 0x71, 0xb6, 0x01, 0x3f, 0x64, 0x15, 0xae, 0xd4, 0x8e, 0xb3, 0xde, 0x98, 0x32, 0xb5, 0xc6, 0x7e, 0xbb, 0xd4, 0x8e, 0x58, 0x4c, 0x9f, 0x39, 0x69, 0x18, 0xb5, 0x77, 0x1a, 0x9d, 0x39, 0x1b, 0xee, 0xa4, 0x4a, 0x93, 0x6c, 0x3b, 0x29, 0x28, 0x43, 0x40, 0x0b, 0x7c, 0x97, 0xfc, 0x72, 0xb5, 0x97, 0xb4, 0x21, 0x79, 0xe3, 0x05, 0xaa, 0xa6, 0xa1, 0x06, 0x08, 0xc3, 0x5f, 0xee, 0x0c, 0x1f, 0xd9, 0xfd, 0xfe, 0x8c, 0x26, 0xa4, 0xf5, 0xcc, 0x33, 0xb9, 0xa8, 0x4f, 0x4b, 0x29, 0x65, 0x20, 0x84, 0x20, 0x01, 0x5c, 0x4a, 0x2b, 0x07, 0xd3, 0x23, 0x17, 0xc0, 0x54, 0xf4, 0x6d, 0x70, 0x0e, 0x9e, 0x01, 0x3e, 0xb9, 0xb6, 0xa9, 0xf7, 0x4c, 0x5a, 0xba, 0xe2, 0xfa, 0x70, 0xcd, 0x49, 0x05, 0xe1, 0x55, 0x23, 0x62, 0xea, 0xf7, 0x01, 0xe5, 0xf9, 0xdc, 0x40, 0x19, 0xfa, 0x49, 0x66, 0x86, 0xba, 0x90, 0xa6, 0x5b, 0x3b, 0x30, 0x85, 0x20, 0x5f, 0xac, 0x2b, 0x59, 0x20, 0xcb, 0xd6, 0x64, 0x5a, 0x9c, 0x26, 0x5d, 0xf8, 0x7a, 0x76, 0x97, 0x19, 0xb6, 0xfc, 0xab, 0x6c, 0x30, 0xbe, 0x92, 0x53, 0x7c, 0xe3, 0xa3, 0xfb, 0xdf, 0x64, 0x59, 0xe8, 0x25, 0x8b, 0x41, 0xc9, 0x48, 0x35, 0xb3, 0x72, 0x5d, 0x47, 0x98, 0x6f, 0x84, 0x15, 0x58, 0x24, 0x25, 0xd8, 0xe0, 0x37, 0x85, 0xd5, 0x32, 0xc2, 0xec, 0xba, 0x36, 0x5c, 0x48, 0x8a, 0xeb, 0x61, 0x85, 0xdf, 0x29, 0xdd, 0x5d, 0x46, 0xe5, 0x83, 0x89, 0x9d, 0xd3, 0x5d, 0x6b, 0x06, 0xd2, 0x4c, 0xbb, 0x49, 0x74, 0xad, 0x32, 0x89, 0xd1, 0x1a, 0xbf, 0x32, 0x9f, 0x04, 0xc3, 0x75, 0x0e, 0x67, 0xab, 0xac, 0x09, 0x8f, 0xea, 0x6c, 0xbf, 0x02, 0xac, 0xfa, 0xb1, 0xe9, 0x9c, 0x8b, 0xb4, 0xbe, 0x24, 0xb6, 0x6d, 0x7e, 0x00, 0x02, 0xa4, 0xee, 0x8d, 0x02, 0xa2, 0xfa, 0x00, 0xea, 0xda, 0xcd, 0xf5, 0xb9, 0xb2, 0x8d, 0x5a, 0x48, 0x79, 0xa0, 0x4b, 0x75, 0xcf, 0xfa, 0x04, 0x0c, 0xbe, 0x08, 0x42, 0xb4, 0xf9, 0xb4, 0x66, 0x4b, 0x2b, 0x9a, 0x24, 0x09, 0xd9, 0x22, 0xb3, 0x7f, 0x07, 0x43, 0xee, 0x57, 0x54, 0x6d, 0xe4, 0xd7, 0x73, 0x2b, 0x3b, 0xf6, 0x4c, 0x98, 0x8c, 0xf4, 0xe8, 0x95, 0xfb, 0x12, 0xd4, 0xc1, 0x53, 0x51, 0x62, 0x21, 0xe8, 0x6b, 0xd2, 0x93, 0x01, 0x9d, 0xa6, 0x59, 0xbb, 0x70, 0xae, 0x01, 0x0c, 0xa2, 0x9e, 0xac, 0xd2, 0x1e, 0x80, 0x39, 0xa2, 0xae, 0x2f, 0x41, 0xc4, 0xa8, 0x7f, 0x29, 0xc8, 0xf7, 0xdb, 0x5c, 0x06, 0xc8, 0x36, 0x70, 0xe8, 0x65, 0x9e, 0xf0, 0x2e, 0xf3, 0x55, 0x4c, 0xb0, 0x0c, 0x52, 0xeb, 0xa7, 0xe8, 0xc8, 0x7a, 0x29, 0xe0, 0x47, 0xfd, 0x96, 0xe2, 0xfb, 0x9b, 0x46, 0x17, 0x52, 0xc3, 0x79, 0xf3, 0xbe, 0x05, 0x20, 0x1c, 0x25, 0xdd, 0x77, 0x5e, 0xd1, 0x4b, 0xf1, 0xc8, 0xd9, 0x99, 0xaf, 0x0b, 0x7a, 0x3e, 0xa2, 0x90, 0x3f, 0x01, 0x9e, 0x5c, 0x9a, 0xbd, 0x6e, 0xca, 0x10, 0xd7, 0x25, 0x64, 0xe5, 0xe1, 0xf9, 0x56, 0x8f, 0x43, 0x2a, 0x4f, 0x0b, 0xe4, 0x53, 0xf7, 0xd7, 0x0f, 0x58, 0xff, 0x47, 0x1b, 0x4a, 0xfc, 0xca, 0xf2, 0x32, 0xfc, 0xce, 0x22, 0xbe, 0x5a, 0xd4, 0xb8, 0x5d, 0x84, 0xb5, 0xb0, 0x42, 0x21, 0xc1, 0x9d, 0xbf, 0xb4, 0xac, 0x08, 0x91, 0xc1, 0x2e, 0x88, 0xbb, 0xf0, 0x51, 0xfd, 0xcc, 0x98, 0x3f, 0xd1, 0x73, 0x37, 0xad, 0xf1, 0x39, 0xe3, 0x09, 0x31, 0xe5, 0xa7, 0x85, 0x21, 0xdc, 0xc5, 0xc0, 0x4e, 0x02, 0x41, 0x82, 0x7f, 0x88, 0x19, 0xcf, 0x79, 0x0f, 0x0a, 0x04, 0x0b, 0x88, 0xc5, 0x1b, 0xa2, 0x85, 0x03, 0x0a, 0xd4, 0x36, 0x7c, 0xf9, 0x49, 0x77, 0x8b, 0x39, 0x33, 0xc9, 0xa0, 0xac, 0xdb, 0x3b, 0xfb, 0xf5, 0x79, 0x53, 0x8f, 0x34, 0xc1, 0xfb, 0x99, 0x41, 0x4c, 0x97, 0x91, 0x30, 0xce, 0x53, 0xf4, 0x6f, 0x62, 0x79, 0xb6, 0x78, 0x87, 0xec, 0x97, 0xaf, 0xf7, 0x04, 0x63, 0x5f, 0xd6, 0x7a, 0x66, 0x3d, 0xd0, 0x4c, 0x55, 0x38, 0x75, 0xc6, 0xe1, 0xc5, 0x35, 0x1e, 0x61, 0xdb, 0x6b, 0xce, 0xc5, 0x3e, 0x17, 0x8a, 0x01, 0x98, 0xdc, 0xdb, 0x6a, 0x8a, 0xc5, 0x59, 0x84, 0x5e, 0xb4, 0x0c, 0xf0, 0x83, 0xab, 0xef, 0x1c, 0x45, 0x4c, 0x3d, 0xa4, 0x71, 0x90, 0xe1, 0xb8, 0xf6, 0xaf, 0x1c, 0xe3, 0x6d, 0x9e, 0x98, 0xe3, 0xfe, 0xf0, 0x18, 0x74, 0x4f, 0xea, 0x00, 0xbf, 0x3b, 0xfe, 0xb6, 0x5f, 0x07, 0x55, 0xdd, 0x6f, 0xc5, 0x52, 0xf7, 0xe7, 0xfa, 0x71, 0x85, 0x41, 0xc0, 0xf1, 0x90, 0xf3, 0x1a, 0x89, 0xa5, 0x70, 0x56, 0xf1, 0x22, 0x58, 0x3d, 0xa3, 0xf0, 0x37, 0x5d, 0x81, 0x37, 0x23, 0x28, 0x92, 0x8e, 0x69, 0xe3, 0x45, 0x74, 0x33, 0x8f, 0x25, 0xe9, 0xb6, 0x9e, 0xd0, 0x63, 0x96, 0x6d, 0xf6, 0xf8, 0x7a, 0x03, 0xe1, 0x06, 0xaf, 0xb9, 0x78, 0x40, 0x19, 0xa3, 0x8d, 0xa0, 0x07, 0x5d, 0x83, 0x1d, 0xb5, 0x32, 0xe8, 0xb1, 0x50, 0x80, 0x3a, 0x52, 0xd9, 0xbb, 0xb1, 0x69, 0x90, 0xe1, 0xb0, 0x0b, 0x15, 0x99, 0xff, 0xf7, 0xb0, 0xf0, 0xaa, 0x70, 0xd6, 0x9e, 0x20, 0xd5, 0x5b, 0x62, 0xb1, 0x01, 0xb8, 0xaa, 0x20, 0x07, 0xa4, 0x52, 0x8c, 0x7d, 0x24, 0xa5, 0xc3, 0xa1, 0x45, 0x9b, 0x5f, 0x96, 0xcf, 0x66, 0xf5, 0xbb, 0x28, 0x6b, 0x0c, 0x13, 0xb7, 0x98, 0x9b, 0x18, 0x35, 0xfd, 0x1c, 0x73, 0x50, 0xa9, 0x71, 0x6b, 0x5b, 0x6f, 0x81, 0x6e, 0x62, 0x45, 0x57, 0x67, 0x7c, 0x8e, 0xfb, 0x73, 0x71, 0x72, 0x1c, 0x44, 0xa6, 0x23, 0x2c, 0x67, 0xf3, 0xd2, 0x7d, 0x81, 0xa4, 0x97, 0xa1, 0x04, 0x59, 0x53, 0x08, 0xe8, 0xe2, 0xa8, 0x36, 0xd8, 0x6f, 0x9e, 0x80, 0x9f, 0x54, 0x0e, 0x05, 0xa5, 0xbb, 0x42, 0xfb, 0xa4, 0x6f, 0x42, 0xd3, 0x11, 0x07, 0x74, 0x14, 0xa8, 0xb4, 0x6a, 0x46, 0xfc, 0xc6, 0x17, 0x6f, 0xee, 0xac, 0x73, 0x8d, 0xc4, 0x6e, 0xef, 0x83, 0x03, 0x4c, 0xe7, 0x59, 0xd3, 0x02, 0x8b, 0x5f, 0x0e, 0xd9, 0x18, 0x77, 0xb5, 0xc7, 0x10, 0xb7, 0x00, 0x35, 0xd0, 0xbc, 0x62, 0x88, 0xc0, 0x3e, 0x75, 0xdf, 0xeb, 0x00, 0xd8, 0x40, 0x11, 0x4f, 0xce, 0x28, 0xfc, 0x1b, 0x58, 0xdf, 0x1d, 0xf7, 0xc5, 0x90, 0x71, 0xbc, 0xb0, 0x76, 0x33, 0xa0, 0x04, 0xa2, 0x45, 0xd2, 0x5d, 0x24, 0x8a, 0x71, 0x68, 0x28, 0x4e, 0xa1, 0x99, 0x3b, 0xe0, 0x12, 0xb3, 0xd1, 0x94, 0x7a, 0x79, 0x50, 0xee, 0x21, 0x50, 0xd6, 0xb1, 0x34, 0xb2, 0xdf, 0x73, 0xf0, 0x4f, 0x59, 0x84, 0x80, 0xc2, 0xb7, 0xb1, 0xf2, 0xa0, 0x43, 0x53, 0xfd, 0x70, 0xd7, 0x23, 0xdb, 0x47, 0x29, 0xb5, 0xb1, 0xdd, 0xf1, 0x8c, 0xdf, 0x91, 0x85, 0x4c, 0xb5, 0x7c, 0x49, 0x83, 0xea, 0xf1, 0x31, 0x06, 0xcb, 0xb3, 0xd5, 0xf1, 0x2e, 0x63, 0xb6, 0xa5, 0x5c, 0x9b, 0x0e, 0x96, 0xe7, 0x49, 0x2c, 0x83, 0xb3, 0x6b, 0x03, 0x4a, 0xec, 0x6b, 0xa7, 0xea, 0x09, 0xf1, 0xf9, 0x9f, 0x82, 0x95, 0x8c, 0x3e, 0xcf, 0x68, 0x53, 0x4d, 0x95, 0x69, 0x10, 0x26, 0x33, 0x05, 0xdf, 0xd5, 0xec, 0xe5, 0xdf, 0x28, 0x57, 0x2d, 0x5d, 0x50, 0x30, 0x96, 0x85, 0x99, 0x9b, 0x23, 0x4b, 0xda, 0x2b, 0x67, 0x34, 0x70, 0xba, 0x91, 0x8a, 0xce, 0xbb, 0x0c, 0xb4, 0xcd, 0x28, 0x8a, 0xac, 0xce, 0xbb, 0xa5, 0x17, 0x24, 0x2c, 0x62, 0x4f, 0xed, 0x9b, 0x39, 0x6b, 0x52, 0xe1, 0xd6, 0x8d, 0x0d, 0x4b, 0xc5, 0x09, 0x39, 0x1d, 0x04, 0x87, 0x07, 0x63, 0x8a, 0x9d, 0x48, 0x53, 0x63, 0x48, 0x9c, 0x4d, 0x06, 0xab, 0x36, 0x7c, 0x05, 0x21, 0x31, 0xaa, 0xbb, 0x94, 0x02, 0x93, 0x4c, 0x29, 0x50, 0x45, 0xf0, 0xfd, 0xb4, 0x0a, 0x18, 0xd1, 0x9a, 0xbe, 0x83, 0x8e, 0xe5, 0x08, 0x50, 0x1d, 0x0b, 0x98, 0x73, 0x48, 0x02, 0x3b, 0xf9, 0x98, 0x89, 0xef, 0x6c, 0x00, 0x1a, 0xe1, 0x99, 0x90, 0xfc, 0x51, 0x17, 0x4f, 0x8d, 0x76, 0x58, 0xbb, 0x2b, 0x0b, 0x0b, 0x39, 0xe1, 0xcc, 0xca, 0xd3, 0x1a, 0x40, 0x64, 0xf8, 0x66, 0xbc, 0xf2, 0xae, 0x6b, 0x9b, 0xc3, 0xb7, 0x65, 0x43, 0xd8, 0xd4, 0x01, 0x67, 0xf1, 0xb5, 0x65, 0x8c, 0xb0, 0xd6, 0x63, 0x9b, 0xf7, 0xf1, 0xe2, 0xc6, 0x61, 0x99, 0xee, 0xc5, 0xdf, 0x9c, 0xdb, 0x0c, 0x5c, 0x88, 0x04, 0x98, 0x95, 0x9f, 0xa2, 0x5f, 0x76, 0xb0, 0x3e, 0x57, 0x23, 0xdb, 0x25, 0xb3, 0xba, 0x2e, 0x17, 0xbc, 0x74, 0x56, 0x96, 0x76, 0xd8, 0x06, 0x88, 0xc3, 0x0b, 0xf4, 0xd6, 0xea, 0x53, 0x2e, 0xf7, 0x6d, 0x5c, 0xde, 0x04, 0x61, 0xfd, 0x86, 0xa4, 0xad, 0xe2, 0x30, 0xdb, 0xe7, 0xd1, 0x7a, 0x85, 0x4b, 0xac, 0x6d, 0x08, 0x0b, 0x2e, 0xb3, 0x24, 0x87, 0x65, 0x2c, 0x6b, 0xe6, 0x72, 0x09, 0xe6, 0xe2, 0xe6, 0x54, 0x99, 0xc6, 0x99, 0x81, 0x9a, 0x25, 0x8b, 0x09, 0x18, 0x95, 0xdb, 0x4e, 0x66, 0x8c, 0x4b, 0x37, 0xe1, 0xe4, 0x62, 0xb1, 0x58, 0x1a, 0xde, 0x35, 0x01, 0xde, 0xb6, 0xad, 0x65, 0x9d, 0x04, 0xcf, 0x8a, 0x6c, 0x65, 0xe5, 0xf0, 0xbd, 0xb3, 0x0f, 0x27, 0x25, 0x32, 0x14, 0x5e, 0x54, 0x7b, 0x93, 0xb1, 0x25, 0xc5, 0x72, 0x21, 0x20, 0x4d, 0x64, 0xdf, 0x9d, 0x55, 0x33, 0xf9, 0x30, 0x99, 0xd3, 0x53, 0x3d, 0x9c, 0xd2, 0xf6, 0xbd, 0xf8, 0x49, 0x03, 0x65, 0x03, 0xf1, 0x19, 0xf2, 0xf3, 0xd4, 0x43, 0x3e, 0xd3, 0xe0, 0x93, 0x89, 0x61, 0x3b, 0x4e, 0xd9, 0x35, 0x70, 0xdb, 0xd6, 0x51, 0x1f, 0x3b, 0x3e, 0x3e, 0x18, 0x74, 0x87, 0xb8, 0x6f, 0x6b, 0x6a, 0x96, 0xf8, 0x8a, 0x38, 0x93, 0x54, 0x4c, 0x6c, 0x31, 0x9e, 0x5a, 0x72, 0x67, 0x3c, 0xc1, 0xa0, 0xa0, 0x11, 0x49, 0x51, 0x1c, 0xd6, 0x4b, 0x30, 0xee, 0x3c, 0x25, 0x2d, 0x7c, 0x64, 0x11, 0xf7, 0xd4, 0x1c, 0x74, 0xe7, 0x9e, 0x36, 0x6f, 0x68, 0xdc, 0x85, 0x32, 0xe3, 0xf7, 0x79, 0xf3, 0x1a, 0x55, 0xfb, 0x09, 0xf0, 0x95, 0xda, 0x99, 0xeb, 0x02, 0xbc, 0xb8, 0x14, 0x35, 0xe2, 0x45, 0x34, 0xf9, 0xf0, 0x8e, 0x44, 0x09, 0xd8, 0xe5, 0xf6, 0x2e, 0xd3, 0xc0, 0x18, 0x66, 0x60, 0x40, 0x26, 0x20, 0xff, 0xaf, 0x28, 0x96, 0x96, 0xf5, 0x02, 0x13, 0x88, 0xc9, 0xee, 0x36, 0x80, 0x63, 0x81, 0xbc, 0xdc, 0xf4, 0xa5, 0xac, 0x8b, 0xff, 0xfa, 0xa7, 0xd2, 0xee, 0xa7, 0x22, 0x42, 0x4b, 0x48, 0xa4, 0xc3, 0x28, 0xc5, 0x34, 0x83, 0x26, 0x1b, 0xeb, 0xce, 0xf2, 0xe5, 0xe5, 0x5a, 0x50, 0x41, 0xea, 0x95, 0x66, 0x12, 0x2d, 0xdd, 0xee, 0x49, 0xf7, 0xe8, 0x5f, 0x2b, 0xa1, 0x4e, 0xd9, 0xab, 0xbd, 0xe6, 0xbe, 0xa0, 0xd6, 0xfc, 0x11, 0xc1, 0xa1, 0x3a, 0x12, 0xdf, 0x77, 0xce, 0xbe, 0x91, 0xde, 0x21, 0x7d, 0x7f, 0x12, 0xe5, 0x5c, 0xfe, 0x33, 0xd1, 0x05, 0xa6, 0x02, 0x76, 0x34, 0x08, 0xe1, 0x40, 0x8c, 0x31, 0x25, 0xf9, 0x31, 0x83, 0xc2, 0xa7, 0xc0, 0x78, 0xa6, 0xa5, 0xb8, 0x36, 0x6c, 0x5b, 0x34, 0xa7, 0x57, 0xec, 0xae, 0x05, 0x40, 0xb8, 0x64, 0x2c, 0xd3, 0x5d, 0x9f, 0x40, 0x3e, 0xb1, 0x63, 0xd2, 0xd1, 0x4e, 0x59, 0x56, 0x84, 0x62, 0xc8, 0x9d, 0xf1, 0xe8, 0xdc, 0x49, 0x17, 0xaf, 0xfb, 0xd4, 0x82, 0x63, 0x23, 0x3f, 0x37, 0x26, 0xe2, 0x0f, 0xf9, 0xe3, 0x7e, 0x29, 0xe0, 0x80, 0x71, 0x85, 0x89, 0x9e, 0xd4, 0x0b, 0x6a, 0x6f, 0xae, 0x2f, 0xb6, 0xbd, 0xb7, 0xeb, 0xe5, 0x60, 0x15, 0xd0, 0x37, 0xc2, 0xdd, 0x63, 0x2b, 0x04, 0xf6, 0xa6, 0xfa, 0xa9, 0x34, 0x66, 0x79, 0xdf, 0xb2, 0x7c, 0x22, 0xce, 0x39, 0x05, 0x87, 0x43, 0x9f, 0xc0, 0x99, 0xa8, 0x7b, 0xac, 0x6e, 0xb8, 0x94, 0x68, 0xa3, 0xe0, 0x87, 0x47, 0x16, 0x73, 0xc7, 0x14, 0xe5, 0x10, 0x17, 0x44, 0x87, 0x37, 0x0d, 0xea, 0x1b, 0xd7, 0x2c, 0xd1, 0x39, 0x41, 0x81, 0x1b, 0xae, 0xfa, 0x3c, 0x14, 0x4f, 0xfd, 0x03, 0xe9, 0x6b, 0x31, 0xce, 0x87, 0xc9, 0x45, 0xf3, 0x78, 0xe6, 0xfb, 0x0a, 0x5d, 0xe6, 0x4f, 0x0a, 0x5f, 0x6c, 0x60, 0x0c, 0x1f, 0x0e, 0x99, 0xe1, 0x5f, 0xbc, 0x30, 0x34, 0xce, 0x6e, 0xe6, 0xbb, 0x3a, 0xb0, 0x82, 0xb1, 0x27, 0x63, 0xaf, 0xd4, 0xff, 0x9b, 0x4d, 0x13, 0x1f, 0xaf, 0xaf, 0xbf, 0xdb, 0xfd, 0x35, 0x03, 0x73, 0x8b, 0x7a, 0x6e, 0x6d, 0xdb, 0x3b, 0x21, 0x7d, 0xbb, 0xc6, 0x48, 0x84, 0xdb, 0x29, 0xa4, 0x93, 0x17, 0xff, 0x1b, 0xc4, 0xec, 0xad, 0xf2, 0x88, 0xae, 0xf2, 0x9d, 0x41, 0x5b, 0x91, 0xef, 0x4c, 0xe9, 0xda, 0xd8, 0x63, 0x4a, 0xdb, 0x1b, 0xc9, 0xd3, 0x75, 0x5f, 0xa5, 0x32, 0xd9, 0xb3, 0xac, 0x07, 0xe5, 0x3e, 0xe8, 0x0e, 0xf4, 0xa8, 0xd8, 0x6b, 0xb0, 0x2b, 0x44, 0xed, 0x04, 0xdc, 0xbb, 0x82, 0xff, 0xbb, 0x7d, 0x25, 0x74, 0x61, 0xc2, 0xca, 0xd0, 0x0c, 0xa1, 0xf7, 0x01, 0x27, 0x5d, 0x3a, 0x6c, 0x37, 0xd7, 0xf2, 0x1f, 0x83, 0x68, 0x34, 0x02, 0xaa, 0x32, 0xef, 0xdf, 0x7a, 0xa9, 0xab, 0x1d, 0xad, 0x6d, 0x66, 0xb5, 0xb3, 0xf4, 0x6e, 0xe7, 0x40, 0x82, 0x3b, 0x58, 0x95, 0x48, 0xd7, 0xd1, 0x3e, 0xb0, 0x20, 0xac, 0x72, 0xf1, 0x01, 0x96, 0xc4, 0x81, 0x86, 0x69, 0x0e, 0xfe, 0x27, 0x68, 0x5c, 0xa1, 0x2c, 0xb7, 0x46, 0x37, 0x3f, 0xfe, 0x6f, 0x72, 0x89, 0x6d, 0x64, 0xb7, 0x37, 0x15, 0x32, 0x59, 0x74, 0xbb, 0x7a, 0x5e, 0x95, 0x46, 0x45, 0xde, 0x01, 0x21, 0x71, 0x66, 0xc6, 0x83, 0x76, 0x7c, 0xc9, 0x3e, 0x0a, 0xb3, 0x68, 0x5d, 0xa5, 0xf5, 0xd2, 0x6b, 0xd0, 0xea, 0xeb, 0xeb, 0x93, 0x73, 0x9b, 0x0f, 0x4b, 0x62, 0xd3, 0x49, 0x44, 0x52, 0xa5, 0x9a, 0x96, 0x17, 0x46, 0x3e, 0x1d, 0xec, 0x8c, 0x25, 0x4b, 0x2b, 0x83, 0x5a, 0x39, 0xb1, 0x0c, 0x8f, 0xc7, 0x7f, 0xf7, 0xbe, 0x1e, 0x67, 0x0d, 0x21, 0xb1, 0x4a, 0x3b, 0x11, 0x12, 0x1e, 0x16, 0x2a, 0x20, 0xd8, 0xe7, 0xbc, 0xc5, 0xb5, 0x5b, 0x92, 0xd9, 0xe1, 0xf4, 0xed, 0x14, 0x7c, 0x58, 0xdf, 0xbc, 0x10, 0x18, 0x48, 0x74, 0xfa, 0x36, 0xe4, 0x50, 0xf4, 0x25, 0xe7, 0x0f, 0x4b, 0xb8, 0x81, 0xd1, 0x2d, 0x5a, 0xfb, 0xc1, 0xa4, 0x0a, 0xfe, 0x84, 0x04, 0xfd, 0x47, 0x87, 0xae, 0x2c, 0x1e, 0x8a, 0x22, 0x13, 0x8b, 0x7d, 0xcd, 0x9f, 0x8e, 0xa6, 0x3e, 0x14, 0x7e, 0xef, 0x58, 0x63, 0xf8, 0x9f, 0xab, 0x79, 0x53, 0x01, 0x0a, 0xd6, 0x49, 0x57, 0x1a, 0x8d, 0x30, 0x7b, 0x8b, 0x92, 0xb5, 0x91, 0xff, 0x79, 0x51, 0x0e, 0xd0, 0x04, 0x5e, 0xff, 0x9a, 0xe7, 0x0e, 0xd1, 0xf6, 0xb4, 0x3d, 0xc2, 0x96, 0xc8, 0xb5, 0xf8, 0xdf, 0xf1, 0x13, 0xb7, 0x75, 0x86, 0x30, 0x4b, 0x33, 0x83, 0xa4, 0x21, 0x3c, 0xf2, 0xce, 0x0e, 0x72, 0x54, 0x90, 0xe7, 0xe3, 0x3b, 0x88, 0xe9, 0x89, 0x2d, 0x5d, 0x84, 0x41, 0xde, 0xdd, 0x4c, 0x6a, 0xa4, 0x28, 0x70, 0x74, 0x87, 0xe2, 0xf2, 0x76, 0x53, 0x74, 0xcc, 0x8f, 0x17, 0x2a, 0x63, 0x1b, 0x59, 0x1f, 0x4c, 0x2a, 0x62, 0x85, 0x5a, 0x21, 0xf5, 0x50, 0x40, 0xb1, 0x61, 0x07, 0x54, 0x0c, 0xa2, 0xef, 0x60, 0xc2, 0x86, 0x92, 0xc4, 0x99, 0x58, 0xbd, 0x96, 0xe5, 0x4e, 0x0d, 0x17, 0x93, 0x2a, 0x40, 0xbd, 0xd4, 0x4a, 0x5f, 0x38, 0x98, 0xff, 0x74, 0xfe, 0x1d, 0xa1, 0x44, 0x3d, 0xf8, 0x5f, 0xa9, 0x4b, 0xac, 0xb4, 0x57, 0x69, 0x6c, 0x2d, 0xe0, 0xc5, 0xcd, 0x87, 0xdb, 0x77, 0x2d, 0x87, 0x1b, 0x5a, 0x7d, 0x0f, 0x7d, 0xb8, 0xae, 0xad, 0x5a, 0x77, 0xfe, 0x6f, 0x75, 0x33, 0xf3, 0x52, 0xc6, 0xe0, 0xc6, 0x6b, 0xec, 0x18, 0x34, 0x6f, 0x76, 0x60, 0x31, 0x00, 0x1a, 0x8e, 0x54, 0xb6, 0xcd, 0xc9, 0x7e, 0xc1, 0xf7, 0xcc, 0xf0, 0x9c, 0xed, 0x85, 0xef, 0x9d, 0xb3, 0x52, 0x9a, 0x7b, 0xe9, 0x7c, 0xe9, 0x6f, 0x35, 0x40, 0xba, 0xd8, 0x98, 0xdc, 0xe9, 0x3e, 0x88, 0xa0, 0xd7, 0xb9, 0x36, 0x72, 0x7e, 0xa6, 0x00, 0xa9, 0x10, 0x62, 0x54, 0x82, 0xfa, 0x9e, 0xb6, 0x83, 0x41, 0xf0, 0x49, 0x12, 0xbb, 0xe9, 0x1a, 0x00, 0x03, 0x9f, 0x18, 0x1a, 0x1d, 0x42, 0x7f, 0x69, 0xcf, 0x2e, 0x47, 0xd5, 0x8c, 0xb6, 0xce, 0xb7, 0x6f, 0x2f, 0x99, 0x6b, 0x3f, 0x6a, 0x71, 0x08, 0x3c, 0x02, 0xa5, 0x6c, 0x7b, 0x6e, 0xf9, 0x01, 0x44, 0x12, 0x06, 0x1a, 0x08, 0x82, 0x78, 0x61, 0xe8, 0x2a, 0x28, 0x39, 0xd3, 0x99, 0xc4, 0x4b, 0xe2, 0x2d, 0x5a, 0xc2, 0xbb, 0x88, 0xe4, 0xc4, 0x53, 0xc8, 0x4a, 0x3a, 0xab, 0xac, 0xf3, 0x46, 0x14, 0x28, 0xa3, 0xd8, 0x60, 0xa3, 0x82, 0x0a, 0x98, 0xe3, 0xf4, 0x42, 0x4a, 0xf0, 0x3f, 0xb3, 0x52, 0xd3, 0xa4, 0x87, 0x2f, 0x3d, 0xe1, 0x84, 0x1d, 0x0d, 0x04, 0xd1, 0x8d, 0xf9, 0x00, 0xf1, 0x26, 0x6e, 0xbc, 0xb8, 0x52, 0x06, 0xb6, 0xb3, 0xa2, 0xdf, 0x26, 0x6f, 0xbd, 0x65, 0x90, 0x62, 0xaa, 0x4b, 0x05, 0xac, 0x1a, 0x9b, 0x03, 0x40, 0x52, 0x44, 0xc6, 0xbb, 0x68, 0x2f, 0x77, 0xb2, 0x72, 0x68, 0x79, 0x41, 0x43, 0x5d, 0x6b, 0x7d, 0x9d, 0x20, 0x84, 0x52, 0xc4, 0xc1, 0xc0, 0xd4, 0x64, 0x7b, 0x04, 0xc5, 0x8a, 0xd6, 0x33, 0xf1, 0x5d, 0x0e, 0x74, 0xbf, 0x8a, 0xdc, 0xed, 0x26, 0x8b, 0xeb, 0xec, 0xda, 0xcf, 0x16, 0x5d, 0xd2, 0x0b, 0x55, 0x9c, 0xc4, 0xbc, 0x6e, 0x7c, 0xb9, 0xe8, 0x60, 0x8d, 0x5e, 0x6f, 0x28, 0x06, 0x8a, 0x47, 0xaf, 0x13, 0x4d, 0xe3, 0x59, 0x18, 0x22, 0xb5, 0x1a, 0x40, 0xc5, 0xc5, 0x07, 0xce, 0x9b, 0x00, 0xbc, 0xba, 0x45, 0x78, 0x99, 0x9b, 0x46, 0x96, 0x0a, 0x9a, 0x5f, 0x05, 0x0e, 0xe3, 0x21, 0x73, 0x49, 0xa3, 0x82, 0x72, 0x53, 0xbf, 0x6b, 0x1b, 0x70, 0x15, 0xde, 0xdb, 0x1b, 0xf8, 0xf1, 0x20, 0x22, 0xd4, 0x74, 0xfc, 0xc6, 0x92, 0x96, 0x0d, 0xfc, 0x82, 0xb7, 0xd6, 0x38, 0x73, 0x51, 0xf1, 0xd8, 0xb2, 0xfa, 0x6f, 0xed, 0xdc, 0xf8, 0xbb, 0x89, 0x16, 0x35, 0xab, 0x38, 0xe2, 0xb6, 0xd7, 0xe1, 0xf8, 0x9c, 0x03, 0x4a, 0xfc, 0x4d, 0x37, 0x82, 0x1d, 0x87, 0x20, 0x94, 0x8d, 0x18, 0x85, 0x45, 0x1d, 0x63, 0xed, 0x68, 0x5c, 0x29, 0x90, 0x86, 0xba, 0x6c, 0xd8, 0xe9, 0x70, 0xef, 0x08, 0x26, 0x1d, 0x41, 0xb8, 0x2b, 0x60, 0x49, 0x69, 0x00, 0xf5, 0xc3, 0x31, 0xc5, 0x7a, 0x1b, 0x5c, 0xb5, 0xb1, 0x0a, 0xbb, 0x04, 0xf1, 0x82, 0xf0, 0xd8, 0xc6, 0x31, 0x99, 0x40, 0xfa, 0x71, 0x5b, 0xa0, 0xe2, 0xfa, 0x09, 0x90, 0xd0, 0x87, 0x5e, 0x27, 0x06, 0x08, 0x1d, 0xf8, 0x43, 0x57, 0x4a, 0xe9, 0xec, 0x53, 0x08, 0x4f, 0x3c, 0xbc, 0xf6, 0x98, 0x0e, 0x13, 0x6f, 0x93, 0xf5, 0x38, 0x51, 0xfe, 0xa8, 0xf8, 0xd1, 0xcd, 0x10, 0x31, 0x1b, 0x57, 0xbe, 0x1e, 0x38, 0xb8, 0x0a, 0x21, 0xdd, 0x11, 0x54, 0xe2, 0xad, 0xe9, 0x69, 0xbc, 0xd7, 0xff, 0x76, 0x32, 0x42, 0xb1, 0x38, 0xc9, 0xc2, 0xf3, 0xcb, 0xc8, 0x6c, 0xc0, 0xc8, 0x49, 0xd9, 0x94, 0xfe, 0xa3, 0xcc, 0xf1, 0xac, 0x3a, 0xa2, 0x49, 0x70, 0x2a, 0x6e, 0x19, 0x23, 0x22, 0xbe, 0x51, 0x87, 0xb8, 0x46, 0x83, 0xac, 0x30, 0x98, 0xa2, 0x0d, 0x8a, 0x9c, 0x69, 0x43, 0xd9, 0xb7, 0xe5, 0xdc, 0xfd, 0xd6, 0xeb, 0xd3, 0x2a, 0x44, 0xaa, 0xf8, 0xe1, 0x54, 0x53, 0x2d, 0x68, 0x07, 0x8d, 0x70, 0x26, 0x05, 0xd1, 0x90, 0x7c, 0xaf, 0xfd, 0xc5, 0x04, 0x2c, 0x32, 0x62, 0x1f, 0xec, 0x0d, 0x4b, 0x8b, 0x7f, 0x7c, 0x49, 0x1b, 0x85, 0x61, 0x8b, 0x4e, 0x2c, 0x90, 0xcf, 0x88, 0x26, 0xe5, 0x16, 0x97, 0x9f, 0x68, 0x4a, 0x92, 0xe3, 0x3f, 0x55, 0xb7, 0xd2, 0xb2, 0x5e, 0x3c, 0x83, 0xb8, 0x05, 0x78, 0x94, 0x4a, 0x8c, 0x6a, 0x3a, 0x3d, 0x20, 0xbb, 0xa4, 0xaa, 0xa7, 0xec, 0x81, 0xbf, 0x5e, 0x4e, 0xbf, 0x0e, 0x98, 0x7f, 0xdb, 0x51, 0xc7, 0xea, 0x12, 0x74, 0x30, 0x8c, 0xba, 0x0f, 0xaf, 0x0a, 0x8d, 0x70, 0xfe, 0xfc, 0x1d, 0x02, 0xe6, 0x0f, 0x0a, 0x77, 0x2d, 0x5f, 0xc0, 0x85, 0x65, 0xb1, 0x0a, 0x5c, 0xa7, 0xfb, 0x8b, 0x6a, 0x8a, 0x46, 0xee, 0x69, 0xef, 0xf0, 0x8f, 0xf4, 0xf2, 0xa5, 0xdb, 0x4e, 0xb9, 0x5a, 0x4b, 0x64, 0x56, 0xbd, 0x4a, 0xea, 0x13, 0x8f, 0xa6, 0x58, 0xce, 0x3e, 0xc3, 0xdf, 0xae, 0xd4, 0x3a, 0x01, 0xed, 0xfc, 0x01, 0x67, 0x4f, 0x09, 0x41, 0x0a, 0xf2, 0x00, 0xa4, 0xdb, 0x78, 0xe6, 0x04, 0xff, 0xcf, 0xe8, 0x23, 0x6b, 0x58, 0xc9, 0x98, 0x4b, 0x64, 0x99, 0x38, 0x93, 0xcd, 0xd6, 0x81, 0xbc, 0x1a, 0x11, 0xff, 0x89, 0x6a, 0xe7, 0x8e, 0xae, 0x8a, 0x74, 0x2d, 0xd7, 0x42, 0xc4, 0xec, 0x50, 0x29, 0x04, 0x8f, 0x70, 0xe4, 0xe6, 0xe6, 0x00, 0xb4, 0x24, 0xfd, 0xea, 0x6b, 0xa0, 0xc2, 0x94, 0xaf, 0xcb, 0x7d, 0xe3, 0x71, 0x3a, 0xda, 0xdd, 0xf5, 0x61, 0xf8, 0x3b, 0x60, 0xdf, 0x88, 0x97, 0x9d, 0x89, 0xd5, 0x43, 0x9e, 0x79, 0x8b, 0xfc, 0x1d, 0x27, 0x5e, 0x30, 0x51, 0x1b, 0x35, 0x07, 0xcd, 0x38, 0x7e, 0x54, 0x3d, 0x2b, 0xa7, 0x73, 0x51, 0x72, 0x22, 0xde, 0xf9, 0x7a, 0x3d, 0x70, 0xb7, 0x1d, 0xf1, 0x3c, 0x0c, 0x5d, 0xdc, 0x09, 0x46, 0x76, 0x36, 0xfd, 0xe8, 0xd1, 0xf3, 0xc1, 0x94, 0x84, 0xf2, 0x23, 0x94, 0xf8, 0xf7, 0xcb, 0x26, 0x42, 0xff, 0x72, 0x49, 0xb2, 0x9d, 0xb2, 0x0b, 0x6b, 0xcf, 0x68, 0xbe, 0x0c, 0x12, 0x11, 0x58, 0x8a, 0xb0, 0xe0, 0x9b, 0xad, 0xdf, 0x10, 0xba, 0xb1, 0x5e, 0x7b, 0xa0, 0xcf, 0x0f, 0x30, 0xc5, 0x3a, 0xeb, 0xa3, 0xdb, 0x7f, 0x67, 0xbf, 0xa4, 0x8f, 0x65, 0x2e, 0xf5, 0x34, 0x1c, 0x2f, 0xb3, 0xa7, 0x27, 0xc7, 0xfa, 0x91, 0xc8, 0x23, 0x46, 0x0b, 0xe6, 0x05, 0x10, 0x83, 0x62, 0x4c, 0x22, 0xb2, 0x32, 0x70, 0x0f, 0xaa, 0xa6, 0x4f, 0xe0, 0x82, 0xf4, 0xd4, 0x99, 0xe2, 0xa9, 0x4b, 0x7e, 0x5f, 0x9a, 0xa4, 0xdb, 0xac, 0x8c, 0xc7, 0x98, 0x52, 0x6e, 0x40, 0xe5, 0xeb, 0x42, 0x90, 0x64, 0x4e, 0xb6, 0xbd, 0x76, 0x28, 0xcf, 0x62, 0x90, 0x4e, 0x8c, 0x41, 0xd3, 0x1a, 0x43, 0x43, 0x70, 0x9a, 0xa8, 0x9b, 0x00, 0xd5, 0x0e, 0x8d, 0xbd, 0xb4, 0xed, 0xaa, 0x0a, 0xf5, 0x08, 0x85, 0x14, 0x1d, 0x0b, 0x78, 0x2b, 0x96, 0x54, 0x4e, 0x8b, 0x28, 0x21, 0xad, 0xee, 0x17, 0x7b, 0x15, 0xda, 0x12, 0x98, 0x11, 0xa0, 0xe4, 0xe7, 0x8f, 0x32, 0x07, 0x3a, 0xed, 0x99, 0x64, 0x0c, 0x7d, 0x17, 0x86, 0x27, 0xff, 0xfc, 0xa3, 0xb7, 0x77, 0xe7, 0xd9, 0xc8, 0x75, 0xc8, 0xa5, 0x80, 0xe9, 0x0e, 0x89, 0x72, 0x55, 0x5f, 0xc8, 0x0a, 0x39, 0xbe, 0x1b, 0xb0, 0x08, 0x70, 0x65, 0xa2, 0xa9, 0xd4, 0xaf, 0x8d, 0xcd, 0x81, 0xf4, 0x41, 0x7e, 0xc8, 0x6a, 0x6c, 0x40, 0x5a, 0x9d, 0xfe, 0x4a, 0xd0, 0x7e, 0x25, 0x93, 0x1e, 0x0a, 0xb0, 0x9e, 0x53, 0xb9, 0xf3, 0xcb, 0xa5, 0xf7, 0x41, 0xc4, 0x6a, 0x4b, 0x43, 0x72, 0x9d, 0x8d, 0x43, 0x2e, 0x54, 0x75, 0x8f, 0x8b, 0xbc, 0x41, 0xb9, 0xb1, 0xf9, 0x9b, 0x35, 0x6c, 0x86, 0xf8, 0xec, 0x7d, 0xb2, 0x33, 0x7a, 0x26, 0x5a, 0xf1, 0xa0, 0xe2, 0x78, 0xaa, 0x22, 0x90, 0x43, 0x92, 0xda, 0x6b, 0x49, 0x34, 0x41, 0xd7, 0x48, 0xf5, 0xbf, 0x10, 0x2d, 0xd2, 0xca, 0xd2, 0xf7, 0xdc, 0xb0, 0x39, 0x4f, 0x86, 0xe4, 0x47, 0xfe, 0x27, 0x28, 0xc8, 0xbd, 0x1f, 0xa2, 0xb7, 0x70, 0xa5, 0xc0, 0xb0, 0x16, 0x81, 0xbd, 0xea, 0x96, 0x23, 0x65, 0x6b, 0x3f, 0x53, 0x14, 0x89, 0x36, 0xd4, 0xf7, 0x6e, 0x82, 0x4f, 0x16, 0x7f, 0x3a, 0x60, 0x07, 0xa5, 0xd1, 0xad, 0x75, 0x8f, 0x51, 0xe9, 0xc4, 0xa9, 0x7c, 0xde, 0xa5, 0xd9, 0x6a, 0x60, 0xae, 0x93, 0xe5, 0x06, 0xa0, 0xdb, 0x7b, 0x70, 0xa5, 0x49, 0xc6, 0x2c, 0x86, 0x69, 0xf8, 0x18, 0xcb, 0x4e, 0xe6, 0x68, 0x8b, 0x3d, 0xe6, 0x14, 0x80, 0x0c, 0x1a, 0x6c, 0x2c, 0x49, 0xe2, 0x86, 0x27, 0xda, 0x01, 0xa7, 0x7b, 0x6d, 0x91, 0xb4, 0x11, 0x2f, 0x1d, 0xd0, 0x0f, 0x69, 0xab, 0xb8, 0x91, 0xf9, 0xe9, 0x94, 0x5e, 0x6e, 0xda, 0xea, 0xec, 0xda, 0xd2, 0x83, 0x98, 0xec, 0xe9, 0xd9, 0xa1, 0xfd, 0x34, 0x6c, 0x94, 0x4d, 0x62, 0x81, 0x7a, 0x64, 0x00, 0x64, 0x06, 0xf3, 0x3a, 0x81, 0x08, 0xd2, 0x7f, 0xc1, 0x2a, 0xf4, 0xfd, 0x18, 0xa8, 0xd7, 0x21, 0x5b, 0x6b, 0xdf, 0xaf, 0xc6, 0x5e, 0x64, 0x93, 0x6a, 0xf4, 0xc9, 0x9f, 0xf0, 0x32, 0x20, 0xa0, 0x29, 0xfb, 0xf8, 0xac, 0xa8, 0x03, 0xfe, 0x5a, 0x1e, 0x46, 0xa3, 0xca, 0x49, 0x2c, 0x01, 0x25, 0x1a, 0x29, 0x06, 0x10, 0x84, 0x27, 0x37, 0xc2, 0x16, 0x9d, 0x20, 0x5d, 0x91, 0xc5, 0xc9, 0xcc, 0xf7, 0x33, 0x17, 0x33, 0xdb, 0xd8, 0x2d, 0x57, 0x13, 0x2d, 0xd7, 0x74, 0x1e, 0xc3, 0xb8, 0xe9, 0xfa, 0xca, 0x90, 0xff, 0x8f, 0xfc, 0xc6, 0xa0, 0xf4, 0x00, 0x2f, 0x5a, 0xad, 0x4d, 0x0b, 0x38, 0x1a, 0x58, 0xd2, 0x37, 0x65, 0x6b, 0x74, 0x21, 0x54, 0xd7, 0x9c, 0x69, 0x2b, 0x71, 0x8c, 0xc7, 0x61, 0x8e, 0xd2, 0xb9, 0x3b, 0x32, 0x7b, 0xb7, 0x47, 0x42, 0x60, 0xb6, 0x59, 0xc2, 0x76, 0xc7, 0xd6, 0xfc, 0x54, 0x73, 0x4e, 0xb3, 0xf6, 0x5e, 0x28, 0x4c, 0xe7, 0x15, 0x13, 0x08, 0xc0, 0xc5, 0xf8, 0xd6, 0x6f, 0x01, 0x5d, 0x19, 0x4d, 0xf6, 0xd6, 0x3e, 0x2e, 0xe9, 0x19, 0x2a, 0x07, 0x01, 0xb6, 0xc3, 0x19, 0xde, 0xe6, 0xba, 0xed, 0xdd, 0x7f, 0x92, 0xf8, 0xc0, 0x34, 0xe1, 0xff, 0x33, 0x33, 0xd9, 0x2d, 0xa6, 0xf7, 0x56, 0x52, 0x18, 0x02, 0xae, 0x40, 0x7d, 0x27, 0x35, 0x9e, 0xb0, 0x13, 0x4d, 0x7e, 0x2b, 0x5a, 0xbe, 0xc1, 0x34, 0x33, 0x0c, 0xb8, 0x63, 0x20, 0x59, 0x9c, 0x41, 0x66, 0xe1, 0x91, 0xf6, 0xf7, 0x1c, 0xa6, 0xb3, 0xad, 0x8f, 0xe4, 0x11, 0x54, 0xe7, 0xac, 0x41, 0xde, 0x1d, 0x32, 0x14, 0xf4, 0x7b, 0x9b, 0x86, 0xdc, 0x98, 0x95, 0xea, 0xfd, 0x70, 0x11, 0x07, 0xa3, 0xde, 0xe2, 0xed, 0x10, 0x0b, 0xd2, 0xed, 0x74, 0xee, 0xc3, 0x3d, 0x1c, 0xd2, 0xc1, 0x43, 0x52, 0xeb, 0x7c, 0x95, 0x33, 0xa3, 0xb8, 0x0a, 0x63, 0xf3, 0xdb, 0x43, 0x92, 0xb1, 0xc7, 0xd3, 0x16, 0xed, 0x13, 0x9a, 0xcb, 0x9d, 0xf7, 0xf5, 0xcc, 0xc9, 0xd3, 0x2d, 0x27, 0x36, 0x08, 0x76, 0xc7, 0xb4, 0x87, 0xf6, 0xe5, 0xc6, 0x6f, 0x6a, 0x9d, 0xff, 0x6c, 0xc7, 0xe0, 0xc0, 0xdf, 0x13, 0x5c, 0x38, 0xed, 0xa8, 0xc3, 0x41, 0x23, 0x78, 0xbd, 0xea, 0xd3, 0x1a, 0xcc, 0x8c, 0x4b, 0x95, 0x9c, 0xf0, 0x74, 0x78, 0x79, 0x27, 0xb6, 0x8f, 0x48, 0xc6, 0x4a, 0x5d, 0x60, 0x18, 0xf3, 0x3f, 0x96, 0xa7, 0xa7, 0x6f, 0x71, 0x2c, 0x8a, 0xf0, 0x72, 0xb4, 0xe3, 0xd5, 0x5d, 0x69, 0xb6, 0x3e, 0x81, 0xf0, 0x1c, 0xdc, 0x67, 0x1d, 0xc6, 0x24, 0xd0, 0xc0, 0x1b, 0x69, 0xdb, 0xc4, 0xa0, 0x98, 0xf1, 0x3d, 0xb0, 0x42, 0x75, 0x79, 0xe8, 0x53, 0x32, 0xba, 0x51, 0x59, 0x0d, 0xde, 0x8e, 0xf3, 0x08, 0x80, 0x3d, 0xb3, 0x32, 0x7b, 0xea, 0xda, 0xa2, 0xee, 0x67, 0x11, 0x9e, 0x55, 0x7d, 0xec, 0x4e, 0xe9, 0xe0, 0x4c, 0x01, 0xdf, 0x51, 0xfb, 0x48, 0xdd, 0x79, 0x47, 0xf4, 0x33, 0x7a, 0xba, 0x5b, 0xd9, 0xe0, 0xd3, 0xc0, 0xee, 0x83, 0x6a, 0xe6, 0x24, 0xb1, 0xfc, 0xab, 0xfe, 0x91, 0x18, 0xe6, 0x6d, 0x85, 0x02, 0x03, 0xa2, 0x09, 0xe9, 0x2d, 0x9d, 0x97, 0x75, 0xcf, 0x9f, 0xd0, 0xad, 0x98, 0xad, 0x35, 0x10, 0xa1, 0xd7, 0x52, 0xcf, 0xc8, 0xe8, 0x1f, 0x8a, 0x85, 0xe2, 0xf6, 0x8b, 0xdc, 0x7f, 0xcf, 0x92, 0x57, 0xc5, 0x76, 0xa1, 0x46, 0x86, 0x14, 0x67, 0x77, 0xd5, 0x13, 0xa9, 0x64, 0x0c, 0x2b, 0xb4, 0x99, 0x06, 0x39, 0x01, 0xeb, 0x92, 0xc9, 0x04, 0x49, 0x5b, 0x1c, 0xf7, 0x88, 0xe6, 0x81, 0x63, 0x21, 0x7f, 0x03, 0x67, 0xd8, 0x5f, 0x7d, 0x58, 0xce, 0x9c, 0xc5, 0xc8, 0x7a, 0x0b, 0xed, 0x59, 0x3c, 0xea, 0x11, 0x60, 0x76, 0x79, 0x9b, 0x96, 0x15, 0xce, 0x83, 0x86, 0x7f, 0xb5, 0x05, 0xea, 0x68, 0xb2, 0xe2, 0x27, 0x3e, 0x15, 0x2c, 0x92, 0xba, 0x4f, 0xda, 0x96, 0xd4, 0x91, 0xc2, 0xf1, 0xef, 0xe1, 0xc9, 0x8c, 0x34, 0xba, 0xf1, 0xa2, 0x90, 0x3b, 0x3f, 0x15, 0x1b, 0xe7, 0x3c, 0x1f, 0x43, 0xf2, 0xad, 0x43, 0xf1, 0xaf, 0xec, 0x5b, 0x8e, 0x69, 0xf7, 0xd6, 0xa7, 0x94, 0xa7, 0x65, 0x53, 0xbd, 0xdb, 0x4b, 0xa3, 0x70, 0xfc, 0xd3, 0xaf, 0x5e, 0xd8, 0xfa, 0xba, 0x60, 0x2a, 0x2d, 0xea, 0x24, 0xaf, 0x51, 0x03, 0xf1, 0xcd, 0x03, 0xee, 0x8d, 0x5d, 0xa3, 0xee, 0xec, 0xde, 0x9e, 0xfd, 0xff, 0xf1, 0xf5, 0xec, 0x19, 0x16, 0xc3, 0xb8, 0x78, 0xda, 0xc2, 0xa6, 0x4e, 0xb6, 0x23, 0x26, 0x75, 0x37, 0xe3, 0x15, 0x6d, 0x9a, 0x94, 0x27, 0x34, 0x15, 0xae, 0xb7, 0xd2, 0x87, 0x12, 0xe6, 0x4b, 0xd9, 0xe9, 0x17, 0x1f, 0xe3, 0xc8, 0x47, 0x56, 0x2e, 0x5d, 0x1a, 0xfc, 0x0f, 0x5f, 0x93, 0x5a, 0x90, 0xde, 0x04, 0x84, 0x4e, 0xf8, 0x59, 0x79, 0xee, 0x2e, 0x59, 0x3d, 0xca, 0x21, 0xd9, 0xf6, 0x70, 0x60, 0x48, 0x38, 0xde, 0x24, 0x28, 0x77, 0xbf, 0x8e, 0xb6, 0x1a, 0x72, 0x7d, 0xa1, 0x10, 0xa1, 0x8a, 0x25, 0xf9, 0xac, 0xa6, 0x69, 0xf7, 0x1f, 0x90, 0xff, 0x79, 0x9e, 0x19, 0xef, 0x21, 0xb2, 0xed, 0x83, 0x66, 0x7e, 0x25, 0xa9, 0x6f, 0xb4, 0xde, 0xfd, 0x31, 0x7f, 0x6d, 0x10, 0x77, 0x60, 0x13, 0x19, 0xe3, 0x8f, 0x37, 0xd7, 0x93, 0x54, 0x27, 0x96, 0xc7, 0x5e, 0x8a, 0x15, 0xda, 0xde, 0x7f, 0x1c, 0x54, 0x9f, 0xab, 0x88, 0x03, 0x56, 0xdc, 0x49, 0x39, 0xf6, 0x00, 0xeb, 0xf0, 0x87, 0x69, 0x08, 0xc9, 0x70, 0x62, 0xa3, 0x14, 0xe3, 0xbe, 0x9e, 0xda, 0xb4, 0xd0, 0x3a, 0xb0, 0xe7, 0x86, 0xa3, 0xd2, 0x0d, 0xa7, 0x9c, 0xfc, 0x15, 0x4f, 0xe9, 0xdd, 0x44, 0x30, 0x42, 0x22, 0x5a, 0xeb, 0x5d, 0xc4, 0x33, 0x15, 0xcb, 0xfd, 0x59, 0xb4, 0x49, 0x52, 0xca, 0x7b, 0xf9, 0x38, 0x8e, 0x5d, 0xf9, 0x84, 0x7d, 0x75, 0x5a, 0xf8, 0x62, 0x01, 0x4a, 0x04, 0x13, 0x04, 0x01, 0xf7, 0x6c, 0x7c, 0x6a, 0xa5, 0xba, 0xfc, 0xb4, 0xae, 0xb5, 0xe0, 0x89, 0x8c, 0x2e, 0x6d, 0xaf, 0xbd, 0x24, 0x8c, 0xd8, 0x3e, 0xd8, 0x7d, 0x06, 0xcf, 0xd4, 0xb6, 0xf8, 0x25, 0xd7, 0x35, 0xd3, 0xe1, 0x66, 0x0e, 0xf2, 0x76, 0xdf, 0xaa, 0x34, 0x01, 0xbf, 0xce, 0xa7, 0x51, 0xd5, 0x02, 0xb2, 0xe3, 0xc0, 0x30, 0xf9, 0xe4, 0x36, 0x45, 0xf2, 0x1e, 0xd2, 0x4e, 0xea, 0xd4, 0xdd, 0xa7, 0x18, 0xe3, 0x6d, 0xf8, 0xd2, 0x4a, 0xa4, 0xc4, 0x25, 0x2d, 0x03, 0xbf, 0x30, 0x7e, 0x7c, 0x10, 0xfe, 0xec, 0xb7, 0x47, 0x16, 0x09, 0xf6, 0x39, 0x13, 0xc3, 0x11, 0x64, 0x3f, 0x02, 0xa6, 0x86, 0x2e, 0x43, 0x33, 0xcc, 0x1a, 0x77, 0xe4, 0xa5, 0xff, 0x43, 0x78, 0x7d, 0x7b, 0x8d, 0xae, 0xbe, 0x2f, 0xe4, 0xdb, 0xd7, 0xb0, 0x9d, 0xf9, 0x0d, 0xb6, 0x9d, 0x76, 0x6d, 0xfd, 0xcf, 0xfb, 0x20, 0xf5, 0x72, 0x2c, 0x84, 0xc2, 0x70, 0xa3, 0x0e, 0x80, 0xe3, 0xfa, 0x05, 0x3e, 0xe7, 0x4d, 0x89, 0xa4, 0x47, 0x16, 0xb5, 0xd0, 0x37, 0xff, 0xb7, 0xda, 0x76, 0x28, 0xa6, 0xc9, 0xca, 0x46, 0x47, 0x36, 0xbf, 0x7d, 0x24, 0x85, 0x76, 0xd0, 0xe8, 0xea, 0xf3, 0x69, 0xbf, 0x37, 0x75, 0xb6, 0x63, 0xe4, 0x7b, 0x89, 0xfc, 0x97, 0x12, 0x7f, 0xd1, 0xff, 0xbb, 0x7c, 0x3c, 0xaf, 0x8a, 0xce, 0x3a, 0x76, 0xad, 0x6b, 0xf3, 0xa8, 0xd7, 0x44, 0x11, 0x14, 0x72, 0x34, 0xfc, 0xb7, 0x07, 0x2d, 0xbd, 0x41, 0x37, 0xed, 0x11, 0x0a, 0xf4, 0xb6, 0x69, 0xe9, 0x12, 0x37, 0xf8, 0xc5, 0x4b, 0x40, 0xa1, 0x9d, 0x01, 0xc8, 0x3a, 0xf3, 0xa9, 0xe4, 0x29, 0x2d, 0x56, 0xb7, 0x23, 0xe4, 0x84, 0xca, 0x87, 0x8b, 0xfc, 0x5b, 0xcc, 0xba, 0x15, 0xda, 0xe8, 0xe4, 0x62, 0x76, 0xd5, 0x9d, 0x4e, 0x9e, 0x65, 0x70, 0xda, 0x7f, 0x64, 0x28, 0x0c, 0x17, 0x45, 0x05, 0xf3, 0x25, 0x90, 0x24, 0xdb, 0xd6, 0x64, 0x41, 0xc7, 0xd7, 0x2d, 0x56, 0x8d, 0xb3, 0x52, 0xb1, 0x4b, 0xf5, 0xd4, 0x0c, 0xce, 0xf0, 0xda, 0x87, 0x9b, 0xef, 0x2c, 0x4f, 0xf6, 0xff, 0x13, 0xda, 0x29, 0x13, 0xa9, 0x15, 0x37, 0xac, 0x04, 0x92, 0x92, 0xc8, 0xa9, 0x28, 0x27, 0x4e, 0xab, 0x46, 0x39, 0xec, 0x37, 0x0c, 0x89, 0x41, 0xe6, 0xaf, 0xc4, 0xdc, 0xfe, 0x3e, 0x09, 0x1e, 0x29, 0xa2, 0x11, 0xe7, 0x93, 0x6b, 0x0f, 0x89, 0x3d, 0x47, 0x60, 0x42, 0x5f, 0x05, 0x21, 0xcd, 0xfe, 0x79, 0x44, 0x12, 0x05, 0x29, 0x68, 0x53, 0x19, 0xa8, 0xc9, 0x13, 0x0a, 0x4c, 0xfc, 0x79, 0x79, 0x74, 0x59, 0xac, 0xb2, 0x2f, 0x42, 0xf7, 0xf6, 0x30, 0x9d, 0xd2, 0x2b, 0xd0, 0x10, 0x6e, 0x38, 0x27, 0x50, 0x11, 0x6c, 0x6c, 0x31, 0xe8, 0x8b, 0xf6, 0x7b, 0xe3, 0xd5, 0x00, 0xc8, 0x82, 0xda, 0x82, 0x3f, 0x41, 0x56, 0x18, 0x46, 0xbf, 0x76, 0x6e, 0xd1, 0xd0, 0xd5, 0xa8, 0x20, 0xe4, 0x51, 0x60, 0xa9, 0xfd, 0xd5, 0xa0, 0x37, 0x43, 0xef, 0x6b, 0x9d, 0x6d, 0x59, 0x0d, 0x4f, 0x56, 0xf5, 0x7f, 0xc1, 0x9f, 0xd8, 0xca, 0x65, 0x93, 0x9e, 0x80, 0xf9, 0x19, 0xfb, 0xfe, 0x0e, 0x68, 0x7c, 0x61, 0x18, 0x8a, 0x4b, 0xc4, 0xaa, 0x1a, 0x5d, 0x38, 0xe1, 0x55, 0x40, 0xfa, 0xb8, 0xb6, 0xce, 0x58, 0xca, 0xcd, 0x1e, 0xba, 0x68, 0x6f, 0xf6, 0x1f, 0xbd, 0x45, 0x49, 0xe9, 0xfc, 0xc5, 0xbf, 0xc3, 0x98, 0x00, 0xa0, 0x8a, 0xaa, 0x58, 0xb8, 0xc9, 0x69, 0xc8, 0xde, 0x24, 0x33, 0xdd, 0x35, 0xa8, 0xb2, 0xa8, 0x27, 0xec, 0x08, 0x99, 0x39, 0x26, 0xcb, 0xae, 0xe3, 0xcd, 0x0b, 0x09, 0x39, 0x9c, 0x11, 0x38, 0xf9, 0x9a, 0x0f, 0x55, 0x58, 0xbb, 0x7a, 0xb3, 0x0a, 0x4f, 0x94, 0x46, 0xb1, 0x54, 0x19, 0xb9, 0x45, 0xfb, 0x10, 0x8a, 0x14, 0x0b, 0xb8, 0xb1, 0x3f, 0xda, 0x4a, 0x3b, 0x42, 0x7e, 0xd0, 0xad, 0x78, 0x98, 0x96, 0x73, 0x5d, 0x02, 0x5a, 0xec, 0x62, 0x00, 0x85, 0x7e, 0x28, 0xd7, 0x4e, 0xdb, 0xda, 0x2d, 0xbb, 0xab, 0x53, 0xb8, 0xff, 0x7c, 0x33, 0xbc, 0xa2, 0xca, 0x95, 0xc7, 0xfe, 0x64, 0x07, 0xf1, 0xdc, 0x1d, 0xaf, 0x89, 0xfe, 0x4e, 0x82, 0x21, 0x2f, 0xbe, 0xd2, 0x88, 0x56, 0x39, 0xe6, 0xf8, 0x81, 0x0e, 0xcc, 0x62, 0xa0, 0x90, 0xf3, 0x52, 0xaf, 0xae, 0xee, 0x5d, 0x38, 0x66, 0x4f, 0x4c, 0xf0, 0x77, 0x3c, 0x5c, 0xf9, 0xec, 0xf2, 0x98, 0x9f, 0x22, 0xa0, 0xe6, 0x0b, 0x77, 0xf5, 0x04, 0x4f, 0x7c, 0x76, 0x27, 0x5f, 0x5b, 0x67, 0xfe, 0xa7, 0x89, 0x0e, 0xc3, 0xe2, 0x48, 0x1f, 0x64, 0xb7, 0x4b, 0xda, 0x96, 0xa6, 0x65, 0x0b, 0x2f, 0x33, 0x85, 0x42, 0xf0, 0x3a, 0x45, 0x69, 0xef, 0x38, 0xc5, 0xf0, 0x68, 0x26, 0x74, 0xdf, 0xd5, 0x0e, 0x6f, 0x67, 0xf5, 0xbf, 0x17, 0x4d, 0x5c, 0x70, 0x53, 0x75, 0x69, 0x32, 0x77, 0x26, 0x6c, 0xe0, 0x7e, 0x21, 0x2b, 0x23, 0x33, 0x98, 0x23, 0x62, 0x55, 0x54, 0x43, 0x8b, 0x26, 0xf8, 0xb3, 0xf6, 0x13, 0x00, 0xde, 0xa7, 0x54, 0x16, 0x6e, 0xf2, 0x21, 0x8d, 0x06, 0x78, 0x9e, 0x49, 0x2c, 0x1e, 0xcf, 0x6d, 0x75, 0xce, 0xb9, 0x89, 0x71, 0xdb, 0xed, 0xf0, 0x1c, 0xaa, 0x68, 0x08, 0xb0, 0x7f, 0xbb, 0x2b, 0xf6, 0xb6, 0x4f, 0xcd, 0xdc, 0x83, 0x38, 0x24, 0xfd, 0x87, 0x5e, 0xb5, 0x6a, 0x70, 0x88, 0xd7, 0x70, 0x04, 0xe3, 0x55, 0xf6, 0xa5, 0x41, 0xac, 0xc5, 0x59, 0x90, 0x34, 0xb5, 0x16, 0x2b, 0x0c, 0xe1, 0x0b, 0x34, 0xac, 0x48, 0x31, 0x11, 0x02, 0x6c, 0xd1, 0xc7, 0x34, 0x91, 0x97, 0x01, 0x82, 0x85, 0x52, 0xdc, 0x14, 0x20, 0x5b, 0xbb, 0xfa, 0xa8, 0x19, 0xbb, 0x82, 0x43, 0xaa, 0x14, 0xaf, 0x77, 0x76, 0x21, 0xa9, 0xb4, 0xc8, 0xbc, 0xd6, 0xe5, 0xdc, 0x99, 0x6f, 0x5a, 0x6e, 0x14, 0x0f, 0xc1, 0x7c, 0x98, 0x7d, 0xee, 0x71, 0xa0, 0x8e, 0x34, 0x25, 0x05, 0xbe, 0x42, 0x16, 0x20, 0x57, 0x60, 0x7d, 0xfe, 0xa5, 0xc9, 0x1b, 0x5a, 0x7f, 0x77, 0x97, 0x19, 0x2d, 0x2d, 0x9e, 0x4e, 0x64, 0xb5, 0xb7, 0x36, 0x1b, 0x9f, 0x65, 0x05, 0x96, 0xb1, 0x97, 0xf3, 0x33, 0x41, 0x60, 0xd6, 0x8c, 0x32, 0xe4, 0x26, 0x9a, 0x1d, 0x2e, 0x00, 0x04, 0x16, 0x48, 0xce, 0xbe, 0xd7, 0xf4, 0xcc, 0x69, 0xf6, 0x65, 0xe0, 0x8e, 0xf9, 0x16, 0x40, 0x4d, 0xdf, 0x1e, 0xa0, 0xd7, 0x9a, 0xf3, 0x4b, 0x5a, 0x2f, 0xe2, 0x4c, 0x61, 0xf6, 0x03, 0x63, 0x69, 0xd5, 0xe8, 0xf2, 0xc6, 0xde, 0x67, 0x44, 0x19, 0x52, 0xc7, 0xc5, 0x84, 0xac, 0x99, 0xd2, 0x22, 0xb0, 0x17, 0x7f, 0x16, 0x1e, 0xb8, 0x5c, 0x2e, 0xfb, 0x27, 0x79, 0xe2, 0x68, 0xbc, 0x70, 0x15, 0xcf, 0xc0, 0x7b, 0x65, 0x25, 0x78, 0xe2, 0x04, 0xb2, 0xe0, 0xde, 0xb0, 0xac, 0x5f, 0xa5, 0x24, 0x37, 0xed, 0x57, 0xc3, 0x19, 0x14, 0x40, 0xb2, 0xd8, 0x80, 0xe4, 0xd3, 0x65, 0x40, 0xd6, 0xb0, 0xd8, 0xe0, 0x1a, 0x89, 0x04, 0xe0, 0x5b, 0x86, 0xed, 0xf9, 0xd9, 0xab, 0x6b, 0x88, 0x34, 0xa7, 0x14, 0x5a, 0x25, 0xe9, 0x8a, 0x4c, 0x8d, 0xc0, 0x0d, 0xa6, 0x63, 0xea, 0x60, 0x8c, 0xb1, 0x65, 0x24, 0x28, 0xd0, 0xf3, 0x06, 0xa1, 0x6a, 0x16, 0x0f, 0xe0, 0x39, 0x6e, 0xed, 0x76, 0xba, 0xf9, 0xfe, 0x2e, 0x01, 0x49, 0x95, 0xd2, 0xf2, 0xb8, 0x73, 0xfa, 0xbb, 0x79, 0xc6, 0x97, 0xd2, 0x6e, 0xac, 0x12, 0xd8, 0xd2, 0x46, 0xd4, 0xe2, 0xa6, 0xc0, 0xbc, 0x94, 0xb7, 0x26, 0xc9, 0xcd, 0x55, 0xc0, 0x09, 0x2c, 0x83, 0x2e, 0x9f, 0xcb, 0x44, 0x57, 0x6b, 0x3f, 0xf7, 0x75, 0x15, 0xb6, 0xf3, 0x69, 0xb9, 0x8a, 0x35, 0x2c, 0x06, 0xd1, 0xd6, 0xa1, 0x8b, 0x0c, 0xfb, 0x65, 0x5f, 0x73, 0xd0, 0x7c, 0x0d, 0x3a, 0x5b, 0x48, 0xd2, 0xc9, 0xb6, 0x80, 0xc7, 0xae, 0x6a, 0x43, 0x7d, 0xa7, 0x12, 0x09, 0x49, 0x38, 0x06, 0xc0, 0xd8, 0x86, 0x8b, 0x7c, 0xe7, 0xbb, 0x98, 0xa0, 0xa7, 0xa5, 0xfd, 0x09, 0xa9, 0x72, 0x1b, 0x75, 0x46, 0xa6, 0xbf, 0x47, 0x1a, 0xcb, 0xb6, 0x2c, 0xd7, 0x89, 0xef, 0xa6, 0x3a, 0x49, 0x6c, 0x4d, 0x91, 0x0e, 0xc5, 0x23, 0x9a, 0x23, 0x4d, 0x99, 0x00, 0x8e, 0x7b, 0xd7, 0x78, 0xf3, 0x90, 0xf0, 0xd4, 0x8a, 0xd5, 0x3e, 0xa9, 0x2c, 0x3e, 0xff, 0x73, 0x13, 0xde, 0x2b, 0x38, 0xc7, 0x6e, 0x7c, 0x7b, 0x0b, 0x3d, 0x70, 0x42, 0x4f, 0xe8, 0x9e, 0x57, 0x8a, 0xf6, 0x21, 0xa8, 0x96, 0x17, 0x87, 0xb3, 0x42, 0xba, 0xbf, 0x8b, 0x64, 0xed, 0x91, 0x9f, 0xbd, 0x56, 0x1b, 0x88, 0x9c, 0x07, 0xde, 0x06, 0x0f, 0x11, 0x0c, 0x21, 0xc1, 0xea, 0x2a, 0xb1, 0x18, 0x36, 0x5d, 0xa3, 0x1c, 0x3a, 0x5a, 0xf3, 0xf7, 0x41, 0xad, 0xed, 0xf8, 0x77, 0x18, 0xda, 0xa8, 0x8c, 0x84, 0x62, 0x4a, 0x9d, 0xc9, 0x02, 0x5b, 0x5d, 0xa7, 0x62, 0x2c, 0x29, 0x77, 0x26, 0xec, 0x0c, 0xd3, 0x01, 0x57, 0x53, 0xda, 0x84, 0x43, 0xa6, 0x51, 0xcb, 0x10, 0xdf, 0x1e, 0xa3, 0x76, 0x63, 0xd3, 0xc2, 0xb2, 0xb3, 0x44, 0xab, 0x50, 0x1c, 0x28, 0x18, 0xdb, 0x2b, 0x7e, 0x5e, 0xb8, 0xe7, 0x7d, 0xef, 0xbe, 0xf5, 0xaf, 0xc7, 0x0a, 0x9e, 0x0a, 0xe0, 0xf6, 0x70, 0xb4, 0xd0, 0x0b, 0x65, 0xbe, 0x52, 0x20, 0x52, 0xa6, 0x23, 0x10, 0x14, 0x84, 0x4b, 0x32, 0xb9, 0x22, 0x00, 0x61, 0xb3, 0xb1, 0x21, 0xa5, 0x7d, 0x44, 0x10, 0x08, 0x31, 0xa9, 0x7f, 0x52, 0x4d, 0x9c, 0x37, 0x51, 0xf2, 0xe0, 0x84, 0x77, 0xd4, 0x0d, 0x42, 0xe7, 0x19, 0x3e, 0x2c, 0x76, 0xd4, 0x0d, 0x34, 0x0b, 0x98, 0xae, 0xe2, 0x58, 0xbd, 0xc2, 0x51, 0x3e, 0xa6, 0x01, 0xa0, 0xb9, 0x24, 0x43, 0x59, 0xf8, 0xc8, 0xcd, 0x43, 0x7f, 0xfd, 0xa4, 0x80, 0x0c, 0xf2, 0xfd, 0x05, 0x9d, 0x57, 0x3b, 0x40, 0x24, 0xe1, 0xde, 0x32, 0xb5, 0x84, 0x62, 0x64, 0x36, 0x2b, 0x10, 0xab, 0x8f, 0x00, 0x4f, 0xa2, 0xb1, 0x02, 0x06, 0xa7, 0xd3, 0x23, 0x79, 0xe4, 0x71, 0xf2, 0x1c, 0xae, 0x7f, 0xa3, 0xf4, 0x2d, 0xe0, 0x18, 0xda, 0x18, 0x1c, 0xb7, 0xa6, 0x1e, 0xa8, 0x1f, 0x78, 0xfb, 0x92, 0xa8, 0x0e, 0x5c, 0x11, 0xf2, 0x52, 0x14, 0x36, 0x8a, 0xc2, 0x89, 0xd2, 0x91, 0xb9, 0x6a, 0x14, 0x4e, 0x5f, 0x26, 0xf0, 0xf7, 0x97, 0x2c, 0x38, 0x88, 0x34, 0xf4, 0xef, 0xa7, 0x29, 0x61, 0x55, 0x83, 0xd6, 0xe3, 0xeb, 0x3d, 0x2a, 0xdb, 0xaa, 0x72, 0xd1, 0x2f, 0xeb, 0xce, 0x3d, 0x7c, 0xcd, 0x5e, 0x63, 0x6d, 0xff, 0x49, 0x01, 0x1e, 0xcf, 0x9b, 0x01, 0xd1, 0xfb, 0xa5, 0x8e, 0x0f, 0x7b, 0x51, 0xaa, 0x25, 0x1f, 0x00, 0x18, 0x51, 0xf5, 0xdb, 0x3b, 0xf9, 0x4d, 0x30, 0x1b, 0x98, 0x6e, 0x73, 0xbe, 0xf8, 0xd5, 0xea, 0x88, 0xce, 0xb5, 0x64, 0x2c, 0x2a, 0x64, 0x67, 0xb7, 0xe0, 0x3a, 0x83, 0xc2, 0x70, 0x23, 0x9a, 0x19, 0x7e, 0x36, 0x6d, 0x45, 0xa7, 0x64, 0x8c, 0xd5, 0xe4, 0x0c, 0x58, 0xea, 0x79, 0xb9, 0x03, 0xa4, 0xdd, 0x1f, 0xa4, 0xcc, 0xd7, 0xdb, 0xee, 0xd3, 0x0e, 0x8b, 0x19, 0x59, 0x41, 0x54, 0x7b, 0xfd, 0x19, 0x50, 0x01, 0x80, 0x47, 0x91, 0xfa, 0x0d, 0x6f, 0xe5, 0xde, 0xc0, 0x1f, 0x45, 0xed, 0x90, 0xbb, 0x30, 0x8a, 0xd4, 0xb6, 0xfc, 0x41, 0xa1, 0xd3, 0x08, 0xa6, 0x64, 0x05, 0xc4, 0x2d, 0x6b, 0xfd, 0x5c, 0xaa, 0xb5, 0xde, 0x79, 0x22, 0x9d, 0x6f, 0x60, 0xe2, 0x63, 0x0b, 0xbc, 0x97, 0x72, 0xca, 0xd4, 0xd8, 0x9a, 0x52, 0x18, 0xa6, 0xff, 0x7b, 0xc0, 0x4b, 0xd7, 0x8c, 0x3f, 0xf1, 0xa4, 0x33, 0xc1, 0x2c, 0x18, 0x04, 0xd7, 0x90, 0xef, 0x00, 0x9e, 0xbc, 0xc9, 0xc5, 0x52, 0xaa, 0x43, 0x65, 0x3f, 0xa3, 0xb7, 0x96, 0xbd, 0xc6, 0x84, 0xab, 0x45, 0xec, 0x66, 0x5b, 0x31, 0xd9, 0x3c, 0xff, 0x5c, 0x7a, 0xb0, 0x07, 0xdf, 0x36, 0x04, 0x8b, 0x83, 0xbb, 0x08, 0xf4, 0x8e, 0xc8, 0x52, 0xe3, 0x3c, 0x36, 0xe5, 0xca, 0x9a, 0x09, 0x6b, 0x79, 0x02, 0x81, 0xf3, 0xe9, 0xed, 0xdd, 0x73, 0xa7, 0x10, 0xc1, 0x00, 0x23, 0xec, 0x16, 0x23, 0xcc, 0x75, 0xe1, 0x5d, 0x9e, 0x5d, 0x35, 0x6d, 0x93, 0xe2, 0x2a, 0xa7, 0xda, 0x60, 0x8e, 0x4b, 0x43, 0x41, 0xf9, 0x55, 0xf3, 0x39, 0x3e, 0x84, 0x85, 0x8b, 0x38, 0x02, 0x80, 0x5b, 0xc5, 0x0c, 0x55, 0x8c, 0x0f, 0x66, 0x64, 0x03, 0x6e, 0x5a, 0xb0, 0xee, 0xfc, 0x5f, 0x18, 0x7d, 0xa5, 0x0e, 0x48, 0xa7, 0x3b, 0xd6, 0x10, 0xf8, 0xf8, 0x48, 0x4b, 0xec, 0x81, 0x37, 0x94, 0x68, 0xdd, 0x52, 0x99, 0x12, 0xfa, 0x1e, 0x21, 0x0a, 0x23, 0xb3, 0x45, 0xbd, 0x4f, 0x5c, 0x21, 0x07, 0xb4, 0xf1, 0x17, 0xd8, 0x08, 0xc0, 0xb8, 0x77, 0x56, 0xe9, 0xdc, 0xe0, 0xd2, 0x4e, 0x88, 0x9e, 0x44, 0x72, 0x5e, 0x76, 0x77, 0x28, 0xa8, 0xfd, 0xb2, 0x71, 0xc0, 0x7c, 0x6d, 0xc1, 0x70, 0x78, 0xc3, 0x8c, 0x0b, 0x3f, 0x4a, 0x80, 0x36, 0x39, 0xc8, 0x07, 0xd7, 0x9c, 0x93, 0x63, 0x8e, 0xcb, 0x25, 0xcc, 0x0c, 0xb8, 0xcb, 0x8e, 0x2a, 0x49, 0x8c, 0xdb, 0x28, 0x3f, 0x30, 0x70, 0xe8, 0xd6, 0x37, 0x90, 0xe3, 0x2a, 0x70, 0xbc, 0x2e, 0x0a, 0xb8, 0x61, 0x35, 0x2d, 0x2b, 0xa5, 0xcb, 0xe3, 0xe8, 0xb7, 0xad, 0x7b, 0xef, 0x6b, 0xf6, 0x0a, 0x15, 0x24, 0xc3, 0xda, 0xc1, 0x40, 0x1d, 0x9c, 0x71, 0x82, 0xa1, 0x25, 0x98, 0x85, 0xa7, 0x36, 0x9b, 0xd4, 0x03, 0x41, 0x97, 0xf4, 0x37, 0x02, 0x79, 0xd5, 0x8d, 0xee, 0x5b, 0x9a, 0x7d, 0x7b, 0x74, 0x9d, 0x3f, 0x84, 0x87, 0x29, 0x38, 0x85, 0x56, 0xb2, 0xc1, 0xba, 0x75, 0xc9, 0xec, 0x58, 0xfb, 0x72, 0x31, 0x4f, 0x18, 0x4e, 0xfe, 0x5b, 0x37, 0x69, 0x54, 0x40, 0x21, 0x40, 0xd7, 0x78, 0x24, 0x94, 0x94, 0x75, 0x6b, 0x9b, 0xb0, 0x06, 0x69, 0x67, 0x77, 0x60, 0x92, 0xd6, 0x22, 0x14, 0x4e, 0x72, 0xcc, 0x74, 0x0f, 0x79, 0x0a, 0x2d, 0x27, 0xc7, 0xcd, 0x83, 0x90, 0x7a, 0xc7, 0x36, 0xbd, 0xae, 0x8f, 0x4b, 0xe5, 0x5f, 0x6a, 0xfb, 0x40, 0x13, 0x39, 0x94, 0x0a, 0xf1, 0xb2, 0x13, 0xdd, 0x13, 0x34, 0xe2, 0x44, 0x67, 0xc0, 0x6a, 0x28, 0x57, 0x7b, 0xf6, 0xc1, 0x07, 0xa1, 0xb0, 0xff, 0x11, 0xb4, 0x27, 0xdf, 0x84, 0xbc, 0x87, 0x3d, 0x3e, 0xa9, 0xcf, 0x78, 0x66, 0x84, 0xdf, 0x9c, 0xc1, 0x0b, 0x5f, 0x7f, 0x1e, 0x76, 0xba, 0x09, 0x63, 0x88, 0xa4, 0x10, 0x6c, 0x37, 0xa5, 0x4e, 0x7e, 0xc5, 0x6c, 0x6e, 0xfd, 0x79, 0xb8, 0x66, 0x10, 0x19, 0xa0, 0xd1, 0x0e, 0x28, 0x08, 0xb5, 0x4e, 0xaf, 0xd9, 0x4e, 0x8f, 0x6a, 0x8a, 0x4c, 0x88, 0x38, 0x3a, 0x34, 0x92, 0xf9, 0x13, 0x65, 0x12, 0x1c, 0xbd, 0x7f, 0x1d, 0xac, 0x1a, 0x4f, 0x8b, 0xbb, 0x98, 0x02, 0xe1, 0xcb, 0xfd, 0xc9, 0x89, 0x92, 0x80, 0x7c, 0xaf, 0xba, 0x01, 0xcb, 0x9c, 0x6d, 0xba, 0x20, 0x26, 0x94, 0xfd, 0x11, 0x25, 0x7e, 0xa0, 0x60, 0x58, 0x78, 0xb1, 0x3c, 0xd1, 0x45, 0x39, 0xf7, 0x9b, 0x95, 0xa6, 0x1a, 0xf3, 0xc9, 0x16, 0xfa, 0x44, 0xe3, 0xb7, 0x05, 0x66, 0x61, 0xfd, 0x27, 0x79, 0x38, 0xeb, 0xfb, 0x46, 0xd0, 0x14, 0xd5, 0xd7, 0xba, 0x97, 0x2a, 0xf1, 0x99, 0xab, 0xae, 0x4c, 0xda, 0xc1, 0xb0, 0x03, 0x8a, 0x45, 0xae, 0x8f, 0x68, 0xa7, 0x08, 0xd4, 0x24, 0x9f, 0xb0, 0xa4, 0x1c, 0x1c, 0x11, 0x66, 0xf8, 0x2d, 0xe4, 0xe3, 0x83, 0x06, 0x50, 0x16, 0xf1, 0x22, 0x38, 0x68, 0xeb, 0x00, 0x3e, 0x0f, 0x67, 0xb9, 0xe6, 0xa9, 0x55, 0x97, 0x82, 0x8a, 0xac, 0x86, 0x59, 0x22, 0x86, 0xb6, 0xbe, 0xf5, 0xa7, 0xc7, 0x69, 0x38, 0xc0, 0xb7, 0x93, 0x59, 0xf9, 0x11, 0x66, 0xc6, 0xbd, 0x07, 0xa5, 0x0c, 0xfb, 0x4f, 0x74, 0x21, 0xa9, 0xdb, 0x19, 0x98, 0x29, 0x74, 0xa8, 0xa8, 0xcb, 0x48, 0x4d, 0x79, 0xa8, 0xaa, 0x2d, 0x24, 0xab, 0x52, 0x6f, 0x30, 0x11, 0x2b, 0x0b, 0xd1, 0xb2, 0x34, 0xee, 0xd1, 0xd6, 0x6e, 0xcb, 0xfc, 0xbf, 0x57, 0x34, 0x0b, 0xf7, 0xdd, 0xd3, 0x4b, 0xa4, 0xb1, 0xc5, 0x10, 0x86, 0x46, 0x62, 0x01, 0xfc, 0x0b, 0xb3, 0x5c, 0x07, 0xd1, 0x86, 0x33, 0x07, 0x3d, 0x49, 0xba, 0xb2, 0xc2, 0x6d, 0x02, 0x70, 0xa3, 0xd4, 0xd0, 0x01, 0x1c, 0x85, 0x13, 0xe0, 0x32, 0xb2, 0x80, 0x4f, 0xd7, 0xfb, 0x7c, 0x1d, 0xfd, 0xa2, 0xf2, 0xfd, 0x56, 0x6e, 0xe8, 0x9c, 0x50, 0xe8, 0x51, 0x21, 0x6d, 0xe3, 0xad, 0xdc, 0xc2, 0x18, 0x47, 0x21, 0xf8, 0xc5, 0x3c, 0xd5, 0xc4, 0x67, 0x98, 0x99, 0x04, 0xd7, 0x93, 0x1f, 0x45, 0x57, 0xe4, 0xcb, 0x9f, 0xc4, 0x84, 0xe7, 0x61, 0xe6, 0x77, 0x6a, 0x0a, 0x29, 0x6d, 0x2c, 0x7a, 0xe4, 0xf6, 0x21, 0x93, 0x54, 0xc8, 0x15, 0x05, 0x0e, 0xa3, 0x31, 0xa7, 0x4c, 0x8f, 0xa3, 0xad, 0x7d, 0xe3, 0xe6, 0xe8, 0x68, 0xe1, 0xf6, 0x46, 0xaa, 0x67, 0x6c, 0x0e, 0xa7, 0x78, 0xd0, 0x11, 0x84, 0x3b, 0xfe, 0xd6, 0xa1, 0x36, 0x7e, 0x31, 0x2e, 0x38, 0x0e, 0x9a, 0xa8, 0x31, 0xae, 0x14, 0xb1, 0xdc, 0xb2, 0x96, 0x94, 0xec, 0x9b, 0xf6, 0x36, 0x4b, 0x02, 0x6a, 0x2c, 0x2b, 0x2b, 0x17, 0xdc, 0x67, 0x14, 0x49, 0x60, 0xa2, 0xd8, 0x31, 0xc4, 0x19, 0xa7, 0x06, 0x7f, 0xf2, 0xd1, 0x52, 0x28, 0x3c, 0x61, 0x98, 0x75, 0xfb, 0xfc, 0x8c, 0x6c, 0x4a, 0xb7, 0x8d, 0x3b, 0xa1, 0xd7, 0x58, 0xc3, 0x8d, 0x37, 0x7d, 0x9c, 0x63, 0xef, 0xeb, 0xda, 0xaa, 0xf2, 0x72, 0x00, 0x7f, 0xe3, 0xe0, 0xfd, 0xc9, 0xf7, 0x04, 0x03, 0x88, 0xba, 0x28, 0x50, 0x75, 0x30, 0x39, 0xdb, 0x91, 0x07, 0x9b, 0x7b, 0x54, 0xf3, 0x7d, 0x91, 0x53, 0x0b, 0x0a, 0x8d, 0x57, 0x44, 0xe4, 0xd5, 0x4a, 0x94, 0xf7, 0x8a, 0xd4, 0x7e, 0x59, 0x45, 0x51, 0x09, 0x20, 0x58, 0xc8, 0xef, 0x91, 0x1c, 0xe7, 0x89, 0xaa, 0xd3, 0x22, 0xe3, 0xf1, 0xf1, 0xd0, 0x7c, 0x5c, 0x03, 0x79, 0x1a, 0xa8, 0xdd, 0xa8, 0x19, 0x51, 0x25, 0x23, 0x1b, 0x7f, 0x37, 0xaa, 0x8c, 0xf1, 0x18, 0x59, 0x45, 0x27, 0xbe, 0xf4, 0x0b, 0xa8, 0xb6, 0x2e, 0xcc, 0x13, 0xce, 0xaa, 0x84, 0xcb, 0xf3, 0x37, 0xd0, 0xb7, 0x07, 0x4e, 0x75, 0xbc, 0xcd, 0xe9, 0x9e, 0xac, 0xff, 0x37, 0x64, 0xe7, 0x5c, 0x25, 0xe3, 0xd5, 0x70, 0x05, 0x54, 0x3e, 0xe7, 0x30, 0x3c, 0x7c, 0xe9, 0x18, 0xc0, 0x2a, 0x52, 0xda, 0xf0, 0x6b, 0x6d, 0x8e, 0x17, 0x71, 0xdf, 0xc7, 0x14, 0x61, 0x53, 0xd1, 0xa1, 0xcc, 0x20, 0x06, 0xcc, 0x40, 0xcd, 0x20, 0x1d, 0x05, 0x4c, 0x26, 0xed, 0xe1, 0x46, 0xb5, 0x49, 0xc1, 0x12, 0x74, 0x5f, 0xeb, 0x52, 0x1a, 0x2f, 0x1f, 0x12, 0x0a, 0x45, 0x03, 0x3d, 0xa6, 0x97, 0x19, 0xe3, 0xcf, 0x3e, 0x61, 0x10, 0xd3, 0x74, 0x58, 0xea, 0xa3, 0xff, 0xe9, 0x24, 0xbb, 0x0b, 0x11, 0xe9, 0x5f, 0x9a, 0x7b, 0x09, 0xf6, 0xbb, 0x11, 0x78, 0x22, 0x39, 0xdf, 0xdb, 0x56, 0xa4, 0xa1, 0x2e, 0xf6, 0x7b, 0x94, 0x0c, 0x32, 0x8e, 0x77, 0xcb, 0x99, 0x9e, 0x09, 0xf7, 0x5d, 0x11, 0x0e, 0xcc, 0x73, 0x88, 0xed, 0x54, 0xa1, 0xae, 0xb6, 0x3d, 0x17, 0x0f, 0x49, 0x00, 0xee, 0xfb, 0x43, 0xa4, 0xaf, 0xc4, 0xb2, 0xf3, 0x34, 0x9e, 0xee, 0xcc, 0x5a, 0xbb, 0xa1, 0x17, 0xfe, 0xed, 0x76, 0x76, 0x17, 0x7b, 0x18, 0xb5, 0xb4, 0xe1, 0x07, 0xea, 0x0d, 0x4f, 0xf5, 0x4e, 0x27, 0x68, 0x96, 0x7f, 0xd2, 0x45, 0xb3, 0x21, 0x6b, 0x55, 0xd8, 0xff, 0x06, 0x42, 0xaf, 0x7f, 0x6f, 0xa7, 0x30, 0xb2, 0xba, 0x44, 0xd1, 0x52, 0xf9, 0xb7, 0x20, 0x33, 0x3e, 0xb0, 0x05, 0x46, 0xbd, 0xff, 0x7e, 0xd1, 0xae, 0xd3, 0x58, 0x2e, 0x9d, 0x71, 0x96, 0xee, 0x55, 0x85, 0xd4, 0xe5, 0x2d, 0x52, 0x1c, 0xd2, 0x8b, 0x16, 0xdb, 0x33, 0x53, 0x09, 0x84, 0xd4, 0x18, 0x44, 0xaf, 0x90, 0x30, 0xf2, 0x9b, 0x2b, 0x9d, 0x7d, 0xa7, 0x47, 0x7f, 0x01, 0xf0, 0xb7, 0x0c, 0x13, 0x27, 0x05, 0x56, 0x2e, 0xc3, 0x52, 0xc5, 0x73, 0x78, 0x9f, 0x74, 0xbd, 0x4e, 0xbf, 0x03, 0xdd, 0x89, 0xa4, 0xdd, 0xbc, 0x27, 0xcb, 0xb7, 0x90, 0xaa, 0xc4, 0x81, 0xa4, 0x88, 0x12, 0xdb, 0x90, 0xf8, 0xcf, 0x83, 0x58, 0x1c, 0x8c, 0xee, 0xfb, 0xe0, 0xc1, 0xc4, 0xe7, 0x23, 0x8a, 0xb6, 0x9d, 0xf7, 0x41, 0xaf, 0xc0, 0x4f, 0x7a, 0x35, 0x8b, 0xc3, 0x8d, 0xd2, 0xbb, 0xa2, 0x9a, 0x88, 0xc3, 0x08, 0x9a, 0xbd, 0xb4, 0x08, 0x2e, 0x6a, 0xa2, 0x8d, 0x25, 0x99, 0x5b, 0x41, 0xf2, 0xbb, 0x8f, 0x26, 0x6f, 0x0c, 0x47, 0xf0, 0x70, 0xa3, 0xbf, 0x06, 0x05, 0x42, 0xb1, 0xa1, 0xb3, 0x03, 0x3c, 0xd4, 0x35, 0x55, 0xde, 0x3d, 0x2c, 0x38, 0x5b, 0x62, 0x1e, 0x9c, 0xe4, 0x7a, 0xfb, 0x0f, 0x13, 0xbf, 0xd6, 0xff, 0xd8, 0xbe, 0xee, 0xbf, 0xdc, 0xec, 0xcb, 0x63, 0xcf, 0xd0, 0x65, 0x17, 0x8c, 0x69, 0x03, 0x9b, 0x75, 0xc8, 0xc5, 0x6d, 0x52, 0xe1, 0xce, 0xfb, 0x06, 0x8e, 0x09, 0x7a, 0xc5, 0x4b, 0xdf, 0xe7, 0x92, 0xbe, 0xd4, 0xc3, 0x36, 0x93, 0x34, 0x93, 0x9f, 0x5d, 0x63, 0x01, 0x85, 0xc4, 0xf5, 0x06, 0xd9, 0xcd, 0x4d, 0x9f, 0xd9, 0x32, 0x6f, 0x03, 0xb3, 0xcb, 0xc5, 0x24, 0x64, 0x23, 0x29, 0xa2, 0x30, 0xc4, 0xf6, 0x00, 0xbd, 0x64, 0x15, 0x55, 0x94, 0x48, 0x7e, 0xe5, 0x20, 0x45, 0x74, 0x42, 0x59, 0x59, 0xf7, 0x6a, 0xd7, 0x76, 0xb4, 0x74, 0xdb, 0x6f, 0x80, 0x8a, 0xfe, 0x38, 0xdc, 0x4c, 0x4d, 0xbe, 0x2f, 0xbd, 0xb3, 0x19, 0xe8, 0xd3, 0x1b, 0x7e, 0x0f, 0x08, 0xfe, 0x46, 0x81, 0x43, 0x55, 0xf3, 0xc9, 0x05, 0x6d, 0x72, 0xbc, 0x2f, 0x20, 0x7e, 0xec, 0xa3, 0x2a, 0x17, 0x3c, 0x6f, 0x73, 0x41, 0x02, 0xe6, 0xc7, 0x8c, 0xf5, 0xaa, 0x27, 0x50, 0xac, 0x49, 0x00, 0x5b, 0x49, 0xfb, 0xa3, 0xc9, 0x15, 0x4a, 0x3f, 0xde, 0x12, 0xf3, 0x95, 0xc2, 0x93, 0x5c, 0x69, 0x44, 0xf2, 0x98, 0x32, 0xb6, 0x92, 0x13, 0x23, 0xd1, 0x1e, 0x2f, 0x00, 0xc6, 0x22, 0x6b, 0xae, 0xea, 0x23, 0x0d, 0xb3, 0xb1, 0xd5, 0x6a, 0xc3, 0x01, 0x73, 0x61, 0xab, 0x3a, 0x63, 0x1b, 0x4c, 0xfa, 0x2b, 0xbd, 0x03, 0x54, 0x96, 0x00, 0xa2, 0x1c, 0xc3, 0xdb, 0xc3, 0xbb, 0xdd, 0xa4, 0xd9, 0xaa, 0x31, 0x8a, 0xdd, 0xb6, 0xdd, 0xf8, 0x6b, 0x59, 0x4c, 0xc4, 0xd0, 0x0c, 0xc0, 0xaf, 0x1a, 0xc5, 0x45, 0x02, 0xe9, 0x0d, 0xff, 0x82, 0xb0, 0x2d, 0x55, 0x62, 0x57, 0x28, 0xe0, 0x95, 0x9e, 0x5a, 0xd9, 0x74, 0xc5, 0xf5, 0xcb, 0x8f, 0xb1, 0x33, 0xd9, 0xb8, 0x6b, 0x41, 0x5e, 0x23, 0x8e, 0x53, 0x79, 0x53, 0x5d, 0x49, 0x3e, 0x1c, 0x32, 0xba, 0x43, 0xc2, 0x15, 0xa2, 0xef, 0x73, 0x53, 0x60, 0x9e, 0x04, 0xf3, 0xa7, 0x8d, 0xe5, 0xdf, 0x3b, 0x26, 0x6d, 0xa5, 0x4a, 0xc1, 0xf2, 0x6b, 0xae, 0xed, 0xbd, 0x58, 0x37, 0x29, 0xa4, 0xea, 0xd2, 0x32, 0x16, 0xd7, 0x7e, 0x7a, 0xde, 0x2c, 0x6b, 0xae, 0x4f, 0xa8, 0x18, 0x95, 0x95, 0xa3, 0x6f, 0xdf, 0x63, 0x58, 0xfe, 0xaf, 0x78, 0x61, 0x77, 0x91, 0x05, 0x46, 0x85, 0xc1, 0x1b, 0x0e, 0xfa, 0x17, 0x55, 0x9f, 0x16, 0xfe, 0x16, 0x15, 0x6e, 0x9a, 0x49, 0xa3, 0xd5, 0xcb, 0x44, 0xbb, 0x30, 0x19, 0xda, 0x78, 0xb8, 0x07, 0xda, 0xb3, 0xfe, 0x99, 0xdf, 0x03, 0xcc, 0x90, 0x6f, 0xf9, 0x49, 0x76, 0xa4, 0x1d, 0x6f, 0x96, 0x9c, 0x86, 0x1e, 0xfa, 0x2d, 0x66, 0x2b, 0x3b, 0xe6, 0xc4, 0x62, 0x61, 0x90, 0xd6, 0xfa, 0x52, 0x30, 0xe2, 0xc4, 0xfd, 0x12, 0xfa, 0x43, 0xb8, 0x3f, 0x0b, 0x4d, 0x3c, 0x4f, 0xfe, 0x45, 0x24, 0x0e, 0x51, 0xe0, 0x26, 0x51, 0x29, 0x55, 0x29, 0x7f, 0xfd, 0x0b, 0x0c, 0x8a, 0x94, 0xa4, 0x46, 0x62, 0x02, 0xc0, 0xfd, 0x82, 0x71, 0xd3, 0xde, 0x19, 0xfb, 0x27, 0x65, 0xc8, 0xc6, 0x62, 0x20, 0xf0, 0xe8, 0x1c, 0x78, 0x56, 0x33, 0x91, 0x65, 0x46, 0xe0, 0xa8, 0x81, 0xd5, 0xc2, 0xd4, 0x93, 0xd1, 0x0d, 0xfc, 0xc6, 0xbf, 0x5d, 0x3b, 0x22, 0xca, 0xf5, 0x81, 0xeb, 0xde, 0xcb, 0x9c, 0x84, 0xbc, 0xe4, 0x27, 0x14, 0x14, 0xfb, 0x2c, 0x09, 0x60, 0xc3, 0x00, 0xd3, 0xcf, 0x3a, 0xb8, 0xae, 0x50, 0xd5, 0xce, 0x21, 0x33, 0x31, 0x8a, 0x6c, 0x09, 0xd8, 0xc5, 0xaa, 0x52, 0x9b, 0x11, 0xb9, 0xfe, 0x09, 0xb4, 0xef, 0x3f, 0xe2, 0xae, 0xb4, 0xf3, 0xe7, 0xdf, 0xeb, 0xc1, 0xc1, 0x1a, 0x6e, 0xee, 0x19, 0x50, 0x4d, 0x91, 0xad, 0x16, 0x2f, 0xd9, 0x81, 0xaa, 0xc7, 0x2d, 0x4e, 0xc4, 0x0e, 0xc0, 0x19, 0x26, 0x81, 0x61, 0xf8, 0x3f, 0x61, 0x39, 0xa2, 0xd9, 0x7d, 0x9e, 0x86, 0xd9, 0x7d, 0xa9, 0x00, 0x91, 0x5a, 0xf5, 0x4a, 0xf6, 0xae, 0x86, 0xfe, 0x20, 0xd0, 0xbb, 0xcb, 0x2a, 0x2d, 0xb0, 0x76, 0x4d, 0x2f, 0x8b, 0x95, 0xb1, 0xd4, 0xc3, 0x0d, 0xf0, 0x29, 0x0b, 0xc2, 0x16, 0xb8, 0x43, 0xa5, 0xfa, 0x26, 0x10, 0x20, 0x1e, 0xa3, 0x8a, 0x90, 0x25, 0x1f, 0xa9, 0xca, 0xf0, 0xed, 0x28, 0x14, 0xe8, 0x8a, 0x81, 0x39, 0x5c, 0x29, 0x71, 0x21, 0xe9, 0x9a, 0x90, 0x91, 0x90, 0xf9, 0x1e, 0x4b, 0x69, 0x31, 0xa5, 0xa2, 0x9c, 0x55, 0x04, 0xb4, 0x87, 0xe4, 0xac, 0x9d, 0xed, 0xd2, 0x48, 0xec, 0xbb, 0xa7, 0x03, 0x88, 0x00, 0xa8, 0x29, 0x9a, 0x58, 0x6e, 0x7c, 0xa0, 0x20, 0x34, 0x34, 0x84, 0xd5, 0x67, 0x2e, 0xac, 0xb5, 0x07, 0x86, 0x3b, 0x99, 0x1d, 0x54, 0x7e, 0xc1, 0x79, 0x9a, 0x3e, 0x61, 0x41, 0xe0, 0xf5, 0x22, 0x2d, 0xbc, 0x4a, 0xb1, 0x0d, 0xbb, 0xb1, 0x8d, 0x7f, 0x8c, 0xdc, 0x9e, 0xd3, 0xb2, 0xfa, 0xa9, 0xa3, 0xd5, 0xf7, 0x1a, 0xbe, 0xd3, 0x79, 0xf7, 0xac, 0x8f, 0x90, 0x69, 0x97, 0xd1, 0x64, 0x21, 0xc3, 0x6a, 0x42, 0xc0, 0x2b, 0xa3, 0x50, 0xfe, 0x70, 0xa1, 0xae, 0x28, 0x09, 0xaa, 0x66, 0x4f, 0xb1, 0xe9, 0xef, 0x9e, 0x5c, 0xe4, 0xef, 0x37, 0x9f, 0xa2, 0x24, 0x44, 0x23, 0x76, 0x38, 0x46, 0x19, 0x7b, 0x77, 0xfb, 0x33, 0x1f, 0x1c, 0xe4, 0x3c, 0x14, 0x29, 0x9c, 0x8f, 0x3e, 0x3f, 0x03, 0x35, 0xdb, 0x33, 0x04, 0xc8, 0x66, 0x55, 0x6a, 0xbc, 0x8a, 0x17, 0xed, 0x53, 0x8a, 0x21, 0x8c, 0x95, 0x8f, 0xe0, 0xb5, 0x97, 0x65, 0x0b, 0x90, 0xed, 0xb1, 0xd0, 0x0c, 0x1b, 0x7e, 0xcf, 0xc0, 0xed, 0xda, 0x6b, 0x5a, 0x19, 0x4f, 0x17, 0xb7, 0x9d, 0x47, 0x7e, 0xbd, 0xee, 0xeb, 0x92, 0x0e, 0xc5, 0x3b, 0x74, 0xf1, 0x6c, 0xcc, 0x61, 0x1e, 0x72, 0x5c, 0xbc, 0xac, 0xe5, 0x24, 0xea, 0x9f, 0xc0, 0x6c, 0x87, 0xba, 0xd3, 0x3a, 0x02, 0xaa, 0x87, 0x34, 0x25, 0x20, 0x93, 0xd8, 0x9d, 0x7f, 0x79, 0xf2, 0x0b, 0x6e, 0x3f, 0x90, 0x45, 0x18, 0xa7, 0x1a, 0xa4, 0x8d, 0x0c, 0x00, 0xd1, 0x23, 0x1a, 0xf5, 0x78, 0x96, 0x6d, 0x06, 0x7b, 0x96, 0xe3, 0x0f, 0x24, 0x77, 0x1f, 0x5e, 0x47, 0xdd, 0xa2, 0xf4, 0x0a, 0x67, 0x24, 0x21, 0x46, 0x75, 0x4e, 0x5f, 0x8d, 0x0a, 0xff, 0x63, 0xa6, 0x43, 0x43, 0x2d, 0xff, 0xbf, 0x54, 0xd4, 0xfc, 0xa3, 0x81, 0x87, 0x49, 0xb4, 0xe6, 0xfa, 0x65, 0x1e, 0xc9, 0x0f, 0x5f, 0x65, 0x40, 0x7a, 0x15, 0xa5, 0x85, 0x98, 0xd5, 0x82, 0xd5, 0xdf, 0xbd, 0xbe, 0x47, 0xee, 0x02, 0x3c, 0xf8, 0x61, 0x0a, 0xe1, 0xc0, 0xba, 0x42, 0x23, 0xdf, 0x0f, 0xed, 0xd9, 0x8e, 0xae, 0x49, 0x21, 0xdc, 0x27, 0xd9, 0x74, 0x6e, 0x69, 0xc0, 0xe1, 0x67, 0xe4, 0x96, 0xc9, 0x2d, 0xab, 0x69, 0xde, 0xc6, 0x01, 0xeb, 0x93, 0xd2, 0xcf, 0x63, 0xa7, 0x58, 0xa2, 0x5d, 0x4b, 0x70, 0x58, 0x79, 0x2c, 0x80, 0xf3, 0x98, 0x5d, 0x8e, 0x18, 0xe8, 0xf2, 0xe9, 0x18, 0x34, 0x67, 0x6a, 0x7c, 0x2f, 0x18, 0xc8, 0x30, 0x1f, 0xd0, 0x1f, 0x35, 0x6e, 0xed, 0x88, 0x10, 0xe6, 0x2f, 0x39, 0x77, 0x8f, 0x19, 0xa1, 0x15, 0xb3, 0x47, 0x9b, 0x25, 0xeb, 0x13, 0xe2, 0x9f, 0x97, 0xb2, 0x9f, 0xd7, 0xda, 0x35, 0x19, 0x6f, 0xd1, 0x00, 0xf4, 0x7c, 0xc9, 0x76, 0x87, 0x61, 0xbd, 0x3c, 0x3a, 0x12, 0x96, 0x00, 0x7e, 0x93, 0xcf, 0x59, 0xbc, 0x64, 0x30, 0xa2, 0xaf, 0x58, 0x0b, 0x70, 0x81, 0x87, 0x10, 0x58, 0xc4, 0x98, 0x7e, 0x3b, 0x47, 0x1c, 0x23, 0x74, 0x0b, 0x11, 0xba, 0x73, 0x53, 0x77, 0x9f, 0x83, 0x68, 0x75, 0x7c, 0x4b, 0xd5, 0x6a, 0x41, 0x99, 0xe0, 0x0d, 0xf3, 0x3b, 0xe3, 0x45, 0xb3, 0x72, 0xce, 0xa9, 0xf5, 0x18, 0x73, 0x64, 0xdc, 0x20, 0xac, 0xc0, 0x01, 0x4b, 0x19, 0xb9, 0x68, 0x8a, 0x44, 0x3a, 0x43, 0xdc, 0x72, 0xa0, 0x25, 0xa9, 0x5c, 0x5e, 0xcc, 0x64, 0x10, 0x1b, 0x4b, 0x59, 0x4d, 0x86, 0xec, 0xf0, 0x82, 0xbf, 0xe6, 0x2e, 0xf4, 0x7d, 0x00, 0xfb, 0x4f, 0xa5, 0x2a, 0x2b, 0xfe, 0xcc, 0x85, 0x86, 0xdc, 0x5f, 0x20, 0xda, 0x87, 0x3a, 0x20, 0x5f, 0x76, 0x7f, 0x61, 0x5a, 0x9f, 0x14, 0x22, 0x71, 0xd8, 0xef, 0x08, 0x1f, 0x4a, 0x8b, 0x25, 0xd8, 0xcd, 0x0a, 0x29, 0x37, 0x24, 0x91, 0x56, 0xe0, 0x14, 0xd6, 0xfe, 0x72, 0x4f, 0x54, 0x53, 0xb9, 0x05, 0xab, 0x0a, 0xac, 0xc2, 0xed, 0x25, 0x8c, 0x56, 0xdd, 0x09, 0x48, 0x8d, 0x7e, 0x2e, 0xaf, 0x0e, 0x05, 0xd0, 0xf1, 0x9d, 0x66, 0x9e, 0xec, 0x28, 0x92, 0x3b, 0xf8, 0x76, 0xae, 0x04, 0x20, 0xb4, 0x0e, 0xc0, 0xb3, 0x1b, 0xa9, 0xc0, 0x06, 0x08, 0xad, 0x98, 0x08, 0x49, 0x1b, 0xfa, 0x1d, 0xfe, 0xa9, 0xb5, 0x86, 0x40, 0xa2, 0x05, 0x6a, 0xf3, 0xda, 0x05, 0x14, 0xd0, 0x92, 0x1f, 0x9a, 0xb4, 0x95, 0xec, 0x11, 0x5e, 0x74, 0x49, 0x6e, 0x73, 0x18, 0x43, 0x0b, 0x13, 0x51, 0x24, 0xbe, 0x3e, 0x0e, 0x0b, 0xe9, 0x85, 0x7a, 0xfd, 0xfa, 0xab, 0xde, 0xf1, 0xaf, 0x79, 0x0d, 0x2e, 0xe4, 0x59, 0xea, 0x04, 0xcd, 0x28, 0xb1, 0x50, 0x91, 0x02, 0xf6, 0x70, 0xb1, 0xfb, 0x13, 0xb8, 0x22, 0x3a, 0x67, 0xed, 0xb8, 0xd9, 0xd7, 0xd5, 0xfe, 0xa4, 0x46, 0x70, 0xd6, 0x9f, 0xd5, 0x2f, 0x34, 0x26, 0x3d, 0x75, 0xca, 0xb6, 0x89, 0xce, 0x8d, 0xc2, 0x89, 0xeb, 0x07, 0xbe, 0x45, 0x0c, 0x25, 0xfd, 0x56, 0x66, 0x0b, 0x5c, 0xe2, 0x84, 0xb0, 0xd3, 0x86, 0xf9, 0xf1, 0x3d, 0xbe, 0x4f, 0xb0, 0x79, 0xc0, 0x4d, 0x6a, 0x48, 0x24, 0x30, 0x7e, 0x3f, 0xf9, 0x5c, 0x03, 0xbd, 0x06, 0x82, 0x9c, 0x63, 0xd1, 0x27, 0x3a, 0x22, 0x1a, 0x36, 0x82, 0xbd, 0xde, 0xd9, 0xe6, 0x6c, 0xc7, 0xee, 0xf5, 0xeb, 0x06, 0xbf, 0x17, 0x58, 0x5b, 0x1c, 0x5c, 0x17, 0x6f, 0x8b, 0x18, 0xbf, 0xc7, 0x44, 0xaf, 0xf1, 0x02, 0xc8, 0xb6, 0x7e, 0x48, 0x95, 0x0e, 0xc4, 0xc8, 0xef, 0x3e, 0x61, 0xe8, 0x48, 0x35, 0x82, 0x0f, 0xce, 0x58, 0xbd, 0x33, 0xda, 0xd1, 0x29, 0xa8, 0x17, 0x98, 0x97, 0x36, 0x04, 0x9f, 0x9e, 0x1d, 0x30, 0xf5, 0x17, 0x28, 0x00, 0x82, 0xfa, 0x04, 0x7d, 0x48, 0x01, 0x3f, 0x7e, 0xf8, 0x54, 0x93, 0xb4, 0xa9, 0x96, 0x10, 0xd0, 0x08, 0xb8, 0x89, 0x51, 0x52, 0x11, 0x12, 0x30, 0xd5, 0x76, 0xbb, 0xcd, 0x8e, 0x3f, 0x80, 0x45, 0x63, 0x14, 0xbc, 0x57, 0xa3, 0xf9, 0xa7, 0x54, 0x71, 0xbf, 0x08, 0xc0, 0xb3, 0xe7, 0xad, 0x7b, 0xe3, 0x31, 0x4c, 0xec, 0x21, 0x5f, 0x49, 0x89, 0x03, 0x5b, 0xdb, 0x8d, 0xbd, 0xa0, 0x04, 0xa6, 0xc9, 0x02, 0xa4, 0x8c, 0xcb, 0x86, 0x05, 0xaf, 0xc2, 0xea, 0x23, 0xff, 0x89, 0xd3, 0x47, 0x14, 0x7d, 0x07, 0x77, 0x98, 0xfa, 0x9f, 0x87, 0xc8, 0x03, 0x1d, 0xf4, 0x4d, 0xd2, 0x49, 0x52, 0x1e, 0x5b, 0x28, 0xe6, 0x15, 0x50, 0x5c, 0x80, 0xbd, 0xa6, 0x55, 0x03, 0xa9, 0xdc, 0x11, 0x4e, 0x0b, 0x43, 0xb7, 0x1c, 0x4c, 0xef, 0x41, 0x6f, 0x28, 0x91, 0xe3, 0xd5, 0x3a, 0xe3, 0xd0, 0x4f, 0x25, 0x40, 0x93, 0x87, 0x97, 0xc3, 0xb8, 0x7c, 0x2f, 0x9f, 0xc9, 0x25, 0x48, 0x9f, 0x7e, 0x51, 0xb1, 0x3e, 0xdb, 0x11, 0xde, 0xb2, 0x91, 0xa3, 0xbb, 0xf9, 0x59, 0x7e, 0x1d, 0x9e, 0xfe, 0x13, 0xc5, 0x50, 0xf7, 0x20, 0xdf, 0xc5, 0x86, 0xff, 0xe6, 0xb9, 0x7f, 0x85, 0xba, 0xc4, 0x66, 0xef, 0x9d, 0x02, 0xb2, 0x12, 0xdc, 0x89, 0x3d, 0x84, 0x4e, 0x94, 0xfe, 0x52, 0xd4, 0x32, 0xc6, 0x31, 0x6d, 0xc6, 0x14, 0x2c, 0x00, 0x5d, 0xce, 0x5c, 0x4d, 0x4e, 0xf1, 0xbd, 0xed, 0xe6, 0x74, 0x1f, 0x4d, 0x69, 0x6f, 0x5b, 0x79, 0xb1, 0xa0, 0x33, 0x4d, 0xab, 0x30, 0x9d, 0x62, 0xb7, 0x12, 0x96, 0x60, 0x0d, 0x14, 0xae, 0xae, 0xe6, 0xda, 0xfe, 0x4e, 0x04, 0xb3, 0xff, 0x8e, 0x5c, 0xa9, 0x95, 0x57, 0x85, 0x47, 0xd8, 0x46, 0xa1, 0x13, 0xcf, 0xd0, 0xba, 0x7f, 0x13, 0x49, 0x65, 0xe3, 0xab, 0xdc, 0x0b, 0x71, 0x79, 0xed, 0x61, 0x0c, 0xe3, 0xb8, 0x5f, 0x02, 0xda, 0x14, 0xfd, 0xd9, 0x1a, 0xbe, 0x99, 0xe3, 0xd2, 0x65, 0xe5, 0x5b, 0x2a, 0xea, 0x82, 0x3d, 0x61, 0xb6, 0x08, 0xb4, 0xcc, 0x19, 0x86, 0xf3, 0x15, 0x97, 0xca, 0xc7, 0x30, 0xb4, 0xf7, 0x2a, 0x03, 0x32, 0xd4, 0x98, 0x43, 0x15, 0x9e, 0xe1, 0x4a, 0x29, 0x9e, 0xe5, 0xab, 0x33, 0x89, 0x63, 0xc7, 0x03, 0xc1, 0xd0, 0x15, 0x07, 0x28, 0x83, 0xa0, 0x65, 0xd0, 0x35, 0x95, 0x4f, 0x95, 0x29, 0x5a, 0xa6, 0xe0, 0x96, 0x96, 0x6f, 0x7c, 0xa2, 0x47, 0xd1, 0x17, 0x40, 0xe1, 0x18, 0x07, 0x5f, 0x28, 0x86, 0xaf, 0xf9, 0xe9, 0x1e, 0x7f, 0x55, 0x9f, 0xb7, 0xab, 0x55, 0xcc, 0x1f, 0xaa, 0x7b, 0x1e, 0xc8, 0x1d, 0x58, 0x8e, 0x9c, 0xe6, 0x7b, 0x44, 0x4b, 0xc8, 0x23, 0x25, 0x65, 0x20, 0x8e, 0x67, 0x96, 0x13, 0x80, 0x4d, 0x69, 0xea, 0x9a, 0x19, 0xe8, 0x44, 0x6e, 0x76, 0xea, 0x2f, 0x3b, 0xb1, 0x25, 0x6d, 0x61, 0xd3, 0x89, 0x52, 0xfd, 0xf4, 0xfb, 0x7e, 0x84, 0x0b, 0x88, 0x47, 0xb5, 0x8f, 0xc6, 0xed, 0x7c, 0x71, 0x21, 0x2d, 0x54, 0xbc, 0x9c, 0xef, 0x13, 0x0d, 0x10, 0x4d, 0x39, 0xc5, 0xc8, 0x3b, 0x62, 0x28, 0x86, 0x7c, 0xe1, 0x93, 0xa3, 0x2f, 0xc5, 0x61, 0x7b, 0x8d, 0x7f, 0xfd, 0x2f, 0x45, 0x75, 0x94, 0xd3, 0x89, 0x8d, 0x26, 0xae, 0xe5, 0x87, 0x80, 0xef, 0x04, 0xe5, 0x9b, 0x3e, 0x8a, 0xe9, 0xcc, 0x7f, 0x2e, 0x5a, 0xff, 0xff, 0x50, 0xa5, 0xed, 0x7f, 0xa1, 0x04, 0x89, 0x29, 0x0b, 0xd8, 0x49, 0xc9, 0xa6, 0x44, 0xc5, 0x90, 0x73, 0x78, 0xe7, 0xf9, 0x43, 0xfe, 0xb6, 0x6a, 0x78, 0x9c, 0x06, 0x22, 0x4b, 0x9e, 0x74, 0x8a, 0x40, 0xf2, 0x6d, 0x99, 0x20, 0x5b, 0x82, 0xd7, 0x42, 0xeb, 0x8f, 0x71, 0xdd, 0xf4, 0x8e, 0x2e, 0x9f, 0xb0, 0xa6, 0x32, 0x14, 0xa6, 0xdb, 0x49, 0xdc, 0x60, 0xc1, 0x83, 0x36, 0xd3, 0xb0, 0x24, 0x8e, 0xe0, 0x06, 0xff, 0x95, 0x77, 0x69, 0x40, 0xf0, 0x54, 0x09, 0xf7, 0xda, 0x22, 0xdb, 0xa8, 0xfc, 0xd8, 0xe2, 0xc0, 0x8b, 0x76, 0x68, 0xb4, 0xe0, 0xa6, 0x73, 0xe7, 0x24, 0x2e, 0xa4, 0x6c, 0xe0, 0xc5, 0x2a, 0xb2, 0xfb, 0x7d, 0xb6, 0x84, 0x9e, 0x4a, 0x77, 0xbd, 0x89, 0xba, 0x67, 0x0b, 0xb3, 0x7d, 0x9d, 0x83, 0xee, 0x4f, 0x0f, 0x79, 0x84, 0xcc, 0x71, 0x2b, 0x5d, 0x78, 0xbf, 0x9e, 0x51, 0xda, 0x2d, 0x38, 0xf5, 0xdf, 0xa6, 0x90, 0x52, 0x14, 0x54, 0xae, 0xe5, 0x83, 0xf2, 0xa3, 0x4d, 0xc7, 0x02, 0x1f, 0x6a, 0x1a, 0xaa, 0x6e, 0x31, 0x65, 0xff, 0x58, 0xda, 0xf7, 0xaa, 0x14, 0x23, 0x8d, 0x41, 0xd4, 0x6a, 0xa4, 0x0f, 0x22, 0xb3, 0x20, 0x6c, 0x36, 0x3f, 0x63, 0x7f, 0xee, 0x65, 0x24, 0xe1, 0x0f, 0x80, 0x9c, 0x5f, 0x65, 0x8f, 0x1e, 0xfd, 0x5f, 0xea, 0x34, 0xc8, 0x1e, 0x3f, 0xc3, 0x76, 0x52, 0xc4, 0xdd, 0x9e, 0xde, 0xbb, 0xf5, 0x05, 0x87, 0x36, 0x0e, 0x59, 0xcc, 0xa0, 0xc2, 0x6a, 0x83, 0xce, 0xfc, 0xae, 0x45, 0x60, 0xfd, 0x25, 0x20, 0xec, 0xdb, 0x22, 0x0c, 0x95, 0x1f, 0xd8, 0xd3, 0x41, 0x21, 0x44, 0x8d, 0x6a, 0xc8, 0xa0, 0xac, 0x23, 0x34, 0x26, 0x7c, 0xdb, 0x6d, 0x03, 0xa1, 0x1d, 0x01, 0x9e, 0x51, 0xc6, 0xb9, 0xca, 0x93, 0x63, 0x7a, 0xdd, 0x09, 0xec, 0x63, 0xab, 0x95, 0x51, 0x31, 0x03, 0xd5, 0x50, 0x61, 0x49, 0xa2, 0x80, 0xaa, 0x62, 0xae, 0x85, 0xdd, 0x2c, 0x17, 0xf0, 0x8f, 0x81, 0x85, 0x3b, 0x50, 0xec, 0x04, 0x58, 0xd5, 0x0f, 0x29, 0x63, 0xab, 0x69, 0xbc, 0x79, 0xa2, 0x12, 0xb9, 0x8e, 0xf8, 0xdb, 0x44, 0xc5, 0x4e, 0x40, 0x21, 0x6e, 0x4a, 0x60, 0x24, 0x27, 0x46, 0xad, 0xd8, 0x10, 0x98, 0xf8, 0xc2, 0x43, 0xb4, 0xcc, 0x6b, 0xfe, 0x6d, 0x8e, 0xc1, 0x7a, 0xc9, 0xbc, 0x3d, 0x6d, 0xf1, 0xaa, 0xd1, 0x23, 0x3a, 0xc8, 0x97, 0xbe, 0xe6, 0x74, 0x15, 0x94, 0xb7, 0xca, 0xbd, 0x99, 0x6a, 0x1d, 0x01, 0x12, 0x87, 0x97, 0x3b, 0x5e, 0x7f, 0x02, 0x45, 0x0a, 0xc8, 0xcf, 0x15, 0x28, 0x74, 0x98, 0x20, 0xac, 0x66, 0x17, 0x39, 0xa5, 0x93, 0x3a, 0xb0, 0x5a, 0x3c, 0x97, 0xcd, 0xea, 0x0d, 0xd6, 0xc1, 0x9f, 0x46, 0xb9, 0xec, 0xc7, 0xc4, 0xe1, 0x76, 0x62, 0x72, 0x00, 0x33, 0x40, 0x0a, 0x50, 0x21, 0x7b, 0xa2, 0xc7, 0x23, 0x72, 0x65, 0x79, 0x2b, 0x16, 0x72, 0xbc, 0x61, 0xf5, 0x0d, 0x72, 0x52, 0x7d, 0xbc, 0x93, 0x48, 0xe0, 0xa6, 0x38, 0xc3, 0x62, 0xf9, 0x49, 0xe8, 0x71, 0xbc, 0x85, 0xc6, 0x43, 0xd4, 0x45, 0x18, 0x96, 0x75, 0x97, 0x22, 0x67, 0x32, 0xfe, 0xd2, 0xc5, 0xed, 0x79, 0x36, 0x07, 0xe1, 0x0f, 0xc3, 0x0e, 0xd8, 0xe6, 0x22, 0x57, 0x25, 0x82, 0xac, 0x80, 0x22, 0xc3, 0x5f, 0x25, 0xa6, 0x83, 0x09, 0xc0, 0x84, 0x31, 0xb4, 0x8b, 0x2b, 0x08, 0xbe, 0xa2, 0x9d, 0x72, 0x51, 0xa4, 0x1c, 0xaa, 0xcf, 0x23, 0x27, 0xe8, 0x34, 0x5a, 0x95, 0x4b, 0x78, 0x55, 0x95, 0x0e, 0x3d, 0x81, 0xdd, 0xc0, 0x90, 0x5f, 0x83, 0xd2, 0x69, 0xe5, 0x33, 0x78, 0x1d, 0x8f, 0x9c, 0x32, 0xbc, 0x57, 0x06, 0xa8, 0x85, 0xb6, 0x11, 0xca, 0x9a, 0x2d, 0x37, 0x8f, 0xcd, 0x97, 0x5e, 0x9d, 0x2f, 0xfc, 0x00, 0xf4, 0xbb, 0x43, 0xff, 0x74, 0xd1, 0x41, 0x68, 0x70, 0xc5, 0x25, 0xf3, 0xc3, 0x90, 0x15, 0x74, 0xcb, 0x7a, 0x4d, 0xc6, 0x4d, 0xc5, 0x0f, 0xce, 0x64, 0xa4, 0x08, 0xc6, 0xce, 0xa0, 0x1e, 0x3d, 0x96, 0xad, 0xb1, 0xbc, 0x45, 0xb1, 0xd2, 0x11, 0x29, 0xb7, 0xde, 0x53, 0xa9, 0xa8, 0xa0, 0xa4, 0x27, 0xfe, 0x22, 0xa9, 0xcb, 0xf7, 0x18, 0x0b, 0x99, 0x75, 0x43, 0x19, 0x94, 0x1e, 0x19, 0x9d, 0x24, 0x20, 0xba, 0xdb, 0xa8, 0x2c, 0xa2, 0xd6, 0xa0, 0xb1, 0x79, 0xd3, 0xc3, 0x76, 0xb4, 0x25, 0x31, 0x88, 0x2c, 0xfc, 0x48, 0xb5, 0xf3, 0x4d, 0x85, 0x59, 0x9b, 0x5d, 0x0e, 0xcb, 0x8c, 0x3e, 0x3a, 0x48, 0x54, 0x1b, 0xbc, 0x55, 0xd5, 0x50, 0xac, 0x60, 0x12, 0xcf, 0x18, 0xa9, 0xd9, 0x1e, 0x06, 0x98, 0x94, 0xf6, 0x77, 0x06, 0xd1, 0x26, 0xd8, 0x74, 0xd5, 0x92, 0xe0, 0x52, 0x8c, 0x79, 0x19, 0x44, 0x41, 0x26, 0x6f, 0x63, 0x48, 0x50, 0x51, 0x23, 0x4c, 0xf3, 0x69, 0x93, 0x0b, 0xdd, 0x27, 0xf7, 0x7a, 0xa6, 0x95, 0x6f, 0x98, 0x09, 0x68, 0x3c, 0x0d, 0x49, 0x82, 0x79, 0xdd, 0xc8, 0x2e, 0xb8, 0x54, 0x01, 0x79, 0x46, 0x53, 0x55, 0x6c, 0x8b, 0x8d, 0x43, 0x02, 0xdc, 0x59, 0x4d, 0x35, 0xad, 0x3a, 0x57, 0x43, 0x4d, 0xf2, 0xea, 0xa4, 0x7d, 0xdf, 0x76, 0x43, 0xc2, 0x04, 0xb1, 0x27, 0x48, 0x22, 0x8a, 0x0f, 0xef, 0x98, 0x25, 0xbe, 0x3f, 0xf5, 0xfd, 0x31, 0x06, 0xd5, 0x74, 0xeb, 0x8c, 0xef, 0x75, 0xba, 0x34, 0x95, 0x1d, 0x49, 0x4a, 0xdc, 0x04, 0x1a, 0xb8, 0x8c, 0xc9, 0x70, 0x63, 0xf8, 0x24, 0x80, 0xb4, 0x9c, 0x11, 0xd7, 0x21, 0x91, 0xb7, 0x77, 0xb3, 0x97, 0x7f, 0xbd, 0x53, 0xc5, 0x5e, 0x55, 0x0c, 0x1c, 0xf1, 0xdc, 0x40, 0x87, 0xb5, 0x26, 0x52, 0x88, 0xaf, 0x54, 0x41, 0xd9, 0x44, 0x32, 0x76, 0xbe, 0x75, 0xfc, 0xd9, 0x85, 0x7d, 0x61, 0x80, 0x64, 0xc2, 0x15, 0x25, 0xca, 0x4d, 0x7c, 0x51, 0x14, 0x37, 0x40, 0xca, 0x7f, 0x23, 0x50, 0x2c, 0x31, 0x02, 0x49, 0xdc, 0x44, 0xa1, 0x6d, 0x70, 0x5e, 0x17, 0xe8, 0x1a, 0xf9, 0x59, 0xcd, 0x79, 0x8c, 0x0c, 0xce, 0x94, 0xf3, 0x26, 0x88, 0xe3, 0x0b, 0x3a, 0x4a, 0x74, 0x7e, 0x4b, 0xe0, 0x83, 0x87, 0x62, 0xff, 0x61, 0x1e, 0x88, 0x49, 0x91, 0xe5, 0x98, 0x87, 0xd5, 0x03, 0x43, 0x88, 0xc6, 0x31, 0x32, 0x0b, 0x1e, 0xae, 0xa1, 0x73, 0xa2, 0xa0, 0x6f, 0x23, 0x3f, 0x19, 0x37, 0x0e, 0x50, 0x9f, 0x25, 0x30, 0x56, 0xab, 0x63, 0x2a, 0x39, 0x01, 0x96, 0x22, 0x47, 0x15, 0x15, 0x6a, 0xb4, 0x10, 0xe7, 0xbe, 0xdb, 0x94, 0x95, 0x56, 0x64, 0xb9, 0x72, 0xa5, 0x3c, 0x27, 0x3f, 0x68, 0xce, 0x9e, 0xd7, 0x8c, 0xc0, 0x19, 0x5e, 0xdd, 0x58, 0x27, 0x0c, 0xd7, 0xeb, 0x55, 0x63, 0x42, 0xba, 0xc7, 0xbe, 0x06, 0x58, 0x6a, 0xd9, 0x94, 0xa2, 0x7a, 0xd3, 0x22, 0x9c, 0x2c, 0x96, 0x20, 0x40, 0x63, 0xd3, 0xc9, 0x0d, 0x53, 0x0d, 0x96, 0xa2, 0x6f, 0x97, 0x0d, 0x5e, 0xd8, 0x1c, 0xf8, 0xf2, 0xb9, 0x77, 0xfc, 0xb5, 0x72, 0xee, 0x6e, 0x56, 0x84, 0xed, 0x03, 0x15, 0x8d, 0x92, 0x91, 0x30, 0x28, 0xd1, 0x8e, 0xe0, 0xa5, 0xb0, 0x4f, 0xeb, 0xa7, 0xa2, 0x47, 0x1a, 0xca, 0x22, 0x15, 0x28, 0x4c, 0xef, 0xe8, 0xc1, 0x12, 0xf2, 0xd5, 0x38, 0xf6, 0xff, 0xf0, 0x50, 0x52, 0xca, 0xa1, 0xa3, 0xbe, 0xe1, 0x01, 0x28, 0xa2, 0x75, 0xdd, 0x0d, 0xd2, 0xd2, 0x22, 0x72, 0x71, 0x05, 0x27, 0xd2, 0x5b, 0x87, 0xd3, 0x80, 0x39, 0x0f, 0xf6, 0xc9, 0x84, 0x60, 0x63, 0xa7, 0x50, 0x81, 0xdb, 0xb5, 0x9a, 0xcf, 0x35, 0x61, 0x80, 0x07, 0xed, 0x1e, 0x6e, 0x2e, 0x38, 0xdd, 0x9c, 0x96, 0xd9, 0xdb, 0x48, 0x29, 0xc8, 0x3d, 0x7f, 0xf7, 0xfe, 0xfd, 0xd0, 0xa2, 0xc2, 0x7c, 0x2f, 0xd7, 0x09, 0xcd, 0xc2, 0xaf, 0x8f, 0xaa, 0x0f, 0x19, 0xa6, 0xab, 0xa9, 0x10, 0x0f, 0xc3, 0xe0, 0xda, 0xad, 0x89, 0xcf, 0xf7, 0x4b, 0x87, 0xbd, 0xd9, 0x4f, 0x1d, 0xc9, 0x6f, 0xf4, 0xc9, 0xa0, 0x19, 0x4a, 0x39, 0x1d, 0x05, 0xc0, 0x32, 0x25, 0x10, 0x59, 0xda, 0xf6, 0x27, 0x27, 0x47, 0x23, 0x90, 0xb1, 0x78, 0xc7, 0x99, 0xd3, 0xa9, 0x3d, 0xf2, 0xd2, 0xe6, 0xfe, 0x4f, 0x78, 0x34, 0x94, 0x6b, 0x88, 0x1c, 0x96, 0x65, 0xfc, 0xd6, 0x2f, 0x08, 0x83, 0xdd, 0x91, 0xbf, 0x75, 0xb1, 0x46, 0x5e, 0x88, 0x95, 0x81, 0xc3, 0xbd, 0xb6, 0x6d, 0xa4, 0x4f, 0x6b, 0x62, 0xc1, 0x96, 0x43, 0x3e, 0xc9, 0xbf, 0xd8, 0x95, 0xf9, 0x0a, 0x40, 0x09, 0x6e, 0xe3, 0x77, 0x95, 0x13, 0xa4, 0x43, 0xec, 0xa0, 0xd6, 0x48, 0x36, 0xb8, 0x59, 0x7a, 0x6f, 0xe4, 0x5c, 0xe4, 0x79, 0xcd, 0xc9, 0xaa, 0x16, 0xcf, 0x02, 0x4a, 0x47, 0x26, 0xb7, 0xe5, 0xc8, 0x43, 0x25, 0xcb, 0x96, 0x82, 0x98, 0xa1, 0x38, 0x94, 0xb4, 0xaa, 0x69, 0xac, 0xb4, 0xaf, 0x69, 0x97, 0xfd, 0xb3, 0xa8, 0x9a, 0xe8, 0x0b, 0xc4, 0x24, 0xf8, 0xa8, 0x77, 0x01, 0x35, 0x5c, 0xd5, 0xeb, 0xbc, 0xd9, 0x16, 0x73, 0xc9, 0x73, 0x41, 0x39, 0xde, 0xe9, 0x2a, 0x24, 0xeb, 0x37, 0x28, 0x7c, 0x74, 0x11, 0x01, 0x71, 0x22, 0x01, 0xed, 0x4b, 0x01, 0x4b, 0x97, 0xd2, 0xf1, 0xf2, 0x33, 0xb7, 0x02, 0x9a, 0x38, 0x0f, 0x98, 0x6d, 0x8a, 0x15, 0x0d, 0x76, 0x95, 0x8f, 0x2f, 0xd3, 0xf9, 0x1f, 0xce, 0xc9, 0xf3, 0x92, 0x6b, 0x26, 0xed, 0x63, 0x10, 0xa0, 0x4c, 0x0b, 0xd2, 0x17, 0x01, 0x3a, 0xf4, 0xf3, 0x42, 0x51, 0x90, 0xf9, 0xad, 0xdd, 0xf5, 0x0b, 0xad, 0x41, 0x3c, 0x11, 0x9a, 0x2d, 0x14, 0x18, 0x16, 0x8e, 0x7d, 0xad, 0x17, 0x79, 0x04, 0x10, 0xc1, 0x1f, 0x27, 0x6c, 0x67, 0xb4, 0x8c, 0x3d, 0x73, 0x41, 0x35, 0xb3, 0xb5, 0x98, 0xf4, 0x68, 0xcc, 0xce, 0x36, 0xb3, 0xa9, 0x89, 0x32, 0x0f, 0x0d, 0x44, 0xda, 0x51, 0xc0, 0x9c, 0x62, 0x0c, 0xb8, 0x44, 0xd2, 0xcb, 0x61, 0xc0, 0xee, 0x04, 0x4d, 0x12, 0x8c, 0x6c, 0x59, 0x5c, 0xdd, 0x84, 0xa9, 0xe0, 0x32, 0x14, 0xc2, 0x62, 0x5b, 0x1a, 0xb3, 0xa7, 0x32, 0x3f, 0x5c, 0x93, 0xdc, 0x41, 0x56, 0xfb, 0x70, 0x62, 0x30, 0xfa, 0x37, 0x3e, 0xbd, 0x80, 0x57, 0xb9, 0x76, 0x36, 0x20, 0xa0, 0x37, 0xcd, 0x24, 0xc9, 0x1b, 0x56, 0xe6, 0x98, 0xcf, 0x9c, 0xf5, 0x6d, 0x90, 0xd7, 0x09, 0xeb, 0xe4, 0x5e, 0xe4, 0xf2, 0x0a, 0xcb, 0x69, 0x7d, 0xd1, 0x44, 0x92, 0x6a, 0x5b, 0xf6, 0x60, 0x35, 0xb8, 0x36, 0x94, 0x87, 0x3c, 0x0b, 0xf6, 0x66, 0x0d, 0x2b, 0x6b, 0xdf, 0x0f, 0xf4, 0x2d, 0xcd, 0x3e, 0xa9, 0x1b, 0x86, 0x5e, 0x68, 0x2f, 0x57, 0x48, 0x38, 0x04, 0xa6, 0xea, 0x74, 0x61, 0xf2, 0xf0, 0xea, 0xd8, 0x22, 0xfa, 0xe4, 0xd9, 0x83, 0xcb, 0xf1, 0xf6, 0x87, 0x19, 0x64, 0x63, 0x09, 0x53, 0x35, 0x99, 0x7c, 0x0c, 0xcc, 0x65, 0xc1, 0x60, 0x3c, 0x4f, 0x23, 0x4b, 0xa5, 0x16, 0x77, 0x9f, 0x2b, 0xb6, 0x66, 0x70, 0xb0, 0xab, 0xff, 0xf0, 0x72, 0x99, 0x5e, 0x07, 0x7d, 0x3b, 0x50, 0x8f, 0xde, 0x9b, 0xd3, 0xb4, 0x06, 0x8e, 0x7c, 0x52, 0x80, 0x6f, 0x0f, 0x3d, 0x2e, 0xab, 0x57, 0x99, 0xbc, 0x7b, 0x27, 0xd4, 0xc3, 0x0b, 0xfc, 0x9b, 0x76, 0x42, 0xa7, 0xcd, 0x88, 0x11, 0xf0, 0xbd, 0x96, 0xa1, 0x2a, 0xad, 0x5f, 0xf0, 0x39, 0x1f, 0x5d, 0x9a, 0xca, 0x90, 0xbd, 0x3d, 0x37, 0x64, 0x8a, 0xdc, 0xb6, 0xd4, 0xb6, 0x5e, 0x40, 0x6b, 0x2f, 0x47, 0xe2, 0x6c, 0x65, 0xf4, 0x08, 0x02, 0xe8, 0x38, 0x7b, 0xfa, 0x42, 0x0f, 0x4b, 0x7f, 0xda, 0xcc, 0x6f, 0xb0, 0xff, 0x4c, 0x26, 0x70, 0x3f, 0x87, 0x17, 0x0c, 0x60, 0x1c, 0x97, 0xe8, 0xa9, 0x61, 0x30, 0xc7, 0xbe, 0x6b, 0x11, 0x49, 0xa8, 0x66, 0x24, 0x3a, 0xd1, 0x50, 0x87, 0xcb, 0x9f, 0x27, 0x60, 0xa9, 0xd1, 0x2e, 0x23, 0x21, 0x04, 0x77, 0x85, 0xb3, 0xbc, 0x0c, 0x7c, 0x8b, 0xf0, 0xd9, 0x64, 0xee, 0x32, 0x76, 0x0d, 0xdb, 0xce, 0x4d, 0x09, 0xdd, 0x05, 0xae, 0xfc, 0x9b, 0x23, 0x86, 0x0c, 0x20, 0x22, 0x0f, 0xea, 0xc2, 0x10, 0xa0, 0xa2, 0xb7, 0x2c, 0x57, 0x94, 0xf1, 0x11, 0x4b, 0x7f, 0x44, 0x0c, 0x5b, 0x75, 0x31, 0xc9, 0x7f, 0xc9, 0xd7, 0x5c, 0xfe, 0xf4, 0x8a, 0xa2, 0xcf, 0xc3, 0x1d, 0xaa, 0xc5, 0x85, 0xbe, 0x28, 0x57, 0x23, 0xc8, 0xd1, 0xb4, 0x76, 0x5a, 0x4c, 0xd5, 0xc4, 0x9a, 0xe2, 0x3d, 0xda, 0xac, 0x1f, 0x28, 0x4e, 0x7e, 0x45, 0x6e, 0x79, 0x61, 0xae, 0xb8, 0x60, 0x7b, 0x63, 0xbf, 0x54, 0x9d, 0x24, 0x69, 0x9e, 0x7b, 0xb4, 0xfc, 0x69, 0x04, 0x24, 0xe2, 0x9b, 0xfb, 0x42, 0x2a, 0x81, 0x17, 0xfc, 0x0a, 0xbe, 0x5d, 0x4c, 0xbf, 0xce, 0x9d, 0xbc, 0xf4, 0xfd, 0xe9, 0xe4, 0x42, 0x79, 0xce, 0x5e, 0x95, 0x48, 0xff, 0xa3, 0x62, 0xd3, 0xc6, 0xcf, 0x45, 0x6d, 0xbb, 0x6c, 0xeb, 0xca, 0xc3, 0x7d, 0x26, 0x05, 0x23, 0x9f, 0x3f, 0x28, 0x0d, 0xcc, 0x00, 0xae, 0xf2, 0xc1, 0x92, 0x1a, 0x30, 0xbc, 0x09, 0xd2, 0x12, 0xa3, 0xd0, 0x8c, 0x52, 0xff, 0xff, 0x33, 0x8f, 0xd0, 0xa1, 0x8a, 0x84, 0x2a, 0x30, 0xac, 0x62, 0xd5, 0xa6, 0x9b, 0x9d, 0xfd, 0xc7, 0x66, 0x94, 0x90, 0x72, 0x92, 0xeb, 0x27, 0x5d, 0x85, 0x91, 0x97, 0x51, 0xcc, 0x04, 0xcc, 0x7d, 0x5b, 0xa9, 0x3d, 0xca, 0xb4, 0xb3, 0xda, 0xdf, 0xb3, 0x1c, 0x30, 0x46, 0x85, 0x31, 0x5e, 0x59, 0xf6, 0x14, 0xd6, 0x5e, 0x83, 0xe5, 0x42, 0x23, 0xb5, 0xbc, 0x0d, 0x52, 0x15, 0x75, 0xef, 0x9c, 0x8d, 0xe2, 0xb5, 0x14, 0xc6, 0xe2, 0xe3, 0x0a, 0xe9, 0xbf, 0x11, 0xf1, 0x23, 0xb0, 0xfa, 0xa4, 0x9e, 0xbd, 0xfd, 0x19, 0x1a, 0x52, 0x08, 0xfc, 0x59, 0x7e, 0x72, 0xe7, 0x17, 0xed, 0xa4, 0xf4, 0x98, 0x9f, 0xd2, 0x52, 0x85, 0x18, 0x08, 0x8c, 0xd3, 0xa4, 0x72, 0x23, 0xec, 0x3e, 0x7c, 0xfa, 0xe7, 0x6e, 0x34, 0x60, 0x84, 0xef, 0x6d, 0x42, 0x0c, 0x17, 0x99, 0xb6, 0x2b, 0x99, 0xd3, 0x9c, 0x12, 0xc4, 0xac, 0x93, 0xd1, 0xfa, 0x8d, 0x85, 0x38, 0x44, 0x88, 0x71, 0xeb, 0xc9, 0x67, 0x42, 0x23, 0xaf, 0x1d, 0x73, 0xa8, 0xc7, 0x7d, 0xe0, 0x4f, 0xe1, 0x0e, 0xba, 0xd2, 0x30, 0x55, 0xcc, 0x6b, 0x9b, 0xd1, 0x55, 0x68, 0x19, 0x73, 0x37, 0x61, 0x38, 0xea, 0xd1, 0x10, 0xeb, 0xde, 0x50, 0xa4, 0x8a, 0x73, 0xa2, 0xdd, 0x16, 0xee, 0xcc, 0xbc, 0xfe, 0x78, 0x7a, 0x90, 0xd6, 0x91, 0x92, 0x44, 0x39, 0xfa, 0x16, 0x48, 0x39, 0x69, 0x86, 0x90, 0x20, 0x9e, 0xd8, 0xc8, 0x26, 0x71, 0xed, 0x36, 0x19, 0x21, 0x53, 0xfb, 0x0d, 0x46, 0xca, 0xf9, 0x96, 0x4b, 0x2b, 0xce, 0x6f, 0x47, 0x07, 0x31, 0x19, 0x9a, 0x3a, 0x1f, 0x66, 0xf5, 0xc5, 0xc7, 0x50, 0x01, 0xc9, 0x53, 0xde, 0xfc, 0x56, 0x05, 0x03, 0x0b, 0x60, 0x8d, 0x7d, 0x3a, 0xaf, 0x4f, 0xfc, 0x4b, 0x5d, 0x20, 0x1b, 0xd7, 0x34, 0x1e, 0xdc, 0x34, 0x1b, 0x64, 0x03, 0x67, 0x71, 0x68, 0xc9, 0xa6, 0x54, 0x32, 0x83, 0xa4, 0x48, 0x2a, 0xff, 0x05, 0xce, 0xac, 0x8e, 0xaf, 0x43, 0xe2, 0xd6, 0xf8, 0x59, 0x7b, 0x82, 0x56, 0x49, 0xa4, 0x9e, 0x6d, 0x0b, 0x6d, 0xcc, 0x8f, 0x7e, 0xae, 0xfb, 0xa2, 0xc2, 0x4c, 0x52, 0x79, 0x28, 0x93, 0x0d, 0xbe, 0x42, 0xb5, 0xbc, 0x4f, 0x23, 0xfe, 0xf0, 0xc5, 0x33, 0xc3, 0xef, 0x91, 0xdb, 0x3d, 0x11, 0x9b, 0xd1, 0xa2, 0x32, 0x12, 0x19, 0xa9, 0x41, 0x8b, 0x23, 0x54, 0x1e, 0x07, 0xc3, 0x4a, 0xf6, 0x31, 0xf2, 0x9f, 0x9c, 0xb0, 0x42, 0x3d, 0x5b, 0x89, 0xdc, 0x70, 0xf8, 0x30, 0x98, 0x41, 0x66, 0x5e, 0xa5, 0xbc, 0x1c, 0xf9, 0xfb, 0x12, 0x01, 0x12, 0xa2, 0x96, 0x61, 0x02, 0x6b, 0x23, 0x60, 0x10, 0x9c, 0xf4, 0xb6, 0xe0, 0x5d, 0x98, 0xbc, 0xdd, 0x47, 0xb5, 0xaa, 0xa2, 0x02, 0xe6, 0xb3, 0x88, 0x29, 0x77, 0x77, 0x5a, 0x66, 0xcd, 0xdf, 0x8c, 0xd5, 0xa5, 0x84, 0xff, 0x98, 0x2f, 0xb4, 0x40, 0xdb, 0xac, 0xa2, 0xba, 0xf2, 0xc1, 0x35, 0x3b, 0xf8, 0x7e, 0x13, 0x2e, 0x0e, 0x1f, 0x4a, 0x43, 0xc7, 0x04, 0xf7, 0x0c, 0x57, 0xcb, 0xc9, 0xcf, 0x3d, 0xce, 0x1c, 0x02, 0xad, 0x7c, 0x46, 0x7e, 0x49, 0xcf, 0xd5, 0x34, 0xec, 0x34, 0xeb, 0xca, 0x14, 0xf8, 0xe5, 0xef, 0x5b, 0x4c, 0xec, 0xef, 0xbb, 0x22, 0x99, 0xaf, 0xfc, 0x13, 0x0b, 0x1d, 0x58, 0x07, 0x72, 0x16, 0x52, 0xba, 0x60, 0x26, 0xb9, 0x22, 0x6d, 0x43, 0x2f, 0xfd, 0x15, 0x4b, 0xd8, 0xe5, 0xf5, 0x59, 0x3e, 0x77, 0xf7, 0xf7, 0x32, 0x62, 0xcb, 0xed, 0x23, 0xaf, 0xa9, 0x6d, 0x8c, 0x78, 0xc8, 0x74, 0x02, 0x24, 0x81, 0xc3, 0x79, 0x2d, 0x9a, 0xbf, 0xd9, 0xdf, 0x68, 0x11, 0xbf, 0x41, 0x8c, 0x4e, 0x49, 0x11, 0x25, 0x8f, 0x33, 0xb0, 0x26, 0x55, 0x4b, 0x5a, 0x72, 0x93, 0x3a, 0xb5, 0x73, 0x46, 0x12, 0x4e, 0x44, 0x31, 0x95, 0x47, 0x64, 0x69, 0xc4, 0xa5, 0x5a, 0x8d, 0x6d, 0x6e, 0xbe, 0xfe, 0x33, 0xaf, 0x81, 0xc7, 0xce, 0xf1, 0x41, 0x6a, 0x2e, 0xbc, 0xee, 0x98, 0x9b, 0xcc, 0x9c, 0xc0, 0x5e, 0x79, 0xb2, 0xc6, 0x22, 0x0c, 0xda, 0xf8, 0xce, 0xea, 0x02, 0xd2, 0x2a, 0xaf, 0xa8, 0x0b, 0xa6, 0x87, 0xb0, 0x82, 0xa8, 0x24, 0x86, 0x2c, 0x34, 0x56, 0x4f, 0xb2, 0xee, 0x56, 0x01, 0xc2, 0x32, 0x9d, 0x3f, 0xe1, 0x34, 0x7a, 0xe9, 0x42, 0xa4, 0x50, 0x6f, 0x69, 0x6c, 0x7d, 0x5f, 0x0b, 0xe9, 0xb6, 0xe0, 0x8d, 0xba, 0xe4, 0x8b, 0xb1, 0x70, 0x77, 0xd7, 0x35, 0x39, 0x6b, 0x4d, 0x90, 0xa8, 0x67, 0x00, 0xbb, 0x1c, 0xdc, 0x22, 0xfd, 0xc8, 0x55, 0xb1, 0xe6, 0x3d, 0x91, 0x13, 0x07, 0x9b, 0xbf, 0x80, 0x27, 0x5d, 0xf3, 0x76, 0x96, 0x26, 0x16, 0x5f, 0xb1, 0x5a, 0xc3, 0x07, 0x70, 0xb4, 0xcb, 0xdc, 0x36, 0xeb, 0xd7, 0x35, 0xc3, 0x49, 0x21, 0xb6, 0x33, 0x48, 0x85, 0x0b, 0xe1, 0x8c, 0xa7, 0x3d, 0xca, 0xf3, 0xe5, 0x1a, 0xf8, 0x51, 0x53, 0x6e, 0x40, 0x42, 0xdc, 0xff, 0xa4, 0xd7, 0xfa, 0xd2, 0x8a, 0xea, 0x8f, 0x3f, 0xb5, 0xb4, 0x79, 0x93, 0xd1, 0xa0, 0x59, 0x6c, 0x12, 0x64, 0xf5, 0x8a, 0x86, 0xb7, 0xbc, 0x1f, 0xd1, 0xb2, 0xda, 0xf0, 0x15, 0x57, 0xd7, 0x60, 0xc5, 0x53, 0xdf, 0x7f, 0x26, 0xfd, 0x15, 0x99, 0xe0, 0x54, 0x6c, 0xd8, 0x34, 0x85, 0xc2, 0x69, 0x02, 0x82, 0x6c, 0x68, 0x64, 0x62, 0x03, 0xe0, 0x4e, 0xf9, 0xc9, 0xc0, 0xe4, 0xe7, 0xe2, 0x87, 0xf3, 0x36, 0xc3, 0x7a, 0xb9, 0x41, 0x37, 0xcb, 0xe2, 0xd3, 0x98, 0x1f, 0x8b, 0xcc, 0x28, 0xa1, 0x0c, 0x87, 0xaf, 0x51, 0x6e, 0xce, 0xfb, 0x0b, 0x59, 0x3c, 0xe9, 0x29, 0x4e, 0xf0, 0x89, 0x0e, 0x94, 0xea, 0x92, 0xe1, 0x9f, 0x66, 0xb4, 0x39, 0x3b, 0x71, 0x31, 0xa8, 0x0f, 0x8e, 0x4b, 0x59, 0xdc, 0xcc, 0x7e, 0x72, 0xcd, 0xa7, 0x11, 0x22, 0x75, 0x11, 0xb4, 0xd4, 0xbf, 0x9c, 0x57, 0x46, 0x2e, 0xf9, 0x71, 0x6a, 0x6f, 0x93, 0xbc, 0xd6, 0x89, 0x9e, 0x77, 0x2d, 0x18, 0xe0, 0x10, 0x7b, 0x03, 0x27, 0x59, 0xf8, 0xc7, 0x83, 0x83, 0xcc, 0xdb, 0x34, 0x7a, 0xab, 0x81, 0xc3, 0x2d, 0xb2, 0x59, 0xc2, 0x12, 0xe1, 0xb8, 0x30, 0xb4, 0xdc, 0xcd, 0xd2, 0x9e, 0x27, 0x68, 0x8b, 0xde, 0xe2, 0x84, 0x0c, 0xde, 0x50, 0xfe, 0xa7, 0x18, 0xcb, 0x28, 0xed, 0xd9, 0xca, 0xcb, 0x72, 0x07, 0x70, 0xda, 0xbe, 0x80, 0xed, 0x79, 0x81, 0xf7, 0x5b, 0xcb, 0x51, 0x89, 0x52, 0x45, 0xe4, 0x10, 0x7a, 0x61, 0xc8, 0xc6, 0x4d, 0x71, 0x01, 0x8b, 0xd9, 0xdf, 0x45, 0x05, 0x40, 0xf8, 0x2c, 0xd7, 0x77, 0x01, 0xed, 0x2e, 0x74, 0xf6, 0xad, 0x97, 0xb2, 0x1d, 0xa0, 0xa7, 0x14, 0xcf, 0x95, 0xec, 0x2d, 0x6f, 0x0a, 0xd7, 0x32, 0xcf, 0x69, 0x0a, 0xca, 0xc6, 0x89, 0xbf, 0xac, 0xf7, 0x38, 0x6d, 0x8c, 0xef, 0xf2, 0xa1, 0x90, 0x4b, 0x2d, 0x0f, 0xa7, 0x77, 0x28, 0xfe, 0xa9, 0xca, 0x18, 0xa6, 0xa0, 0xe2, 0x26, 0x57, 0x9a, 0x39, 0x76, 0xf8, 0x8d, 0xd8, 0x2e, 0x1b, 0xde, 0x73, 0x8b, 0x50, 0xab, 0xd6, 0x63, 0x08, 0x85, 0x68, 0xcf, 0x7d, 0x3d, 0x64, 0xbb, 0xcf, 0x08, 0xc0, 0x85, 0xad, 0x9d, 0x2e, 0x17, 0x84, 0x72, 0x6f, 0x9e, 0xca, 0x7a, 0x7e, 0x63, 0xbb, 0xe0, 0x3c, 0x63, 0x82, 0x0c, 0xe5, 0x96, 0xfc, 0x06, 0xaf, 0x5a, 0x66, 0xe6, 0xdd, 0x70, 0xb7, 0xc3, 0x79, 0x19, 0x42, 0xa7, 0xfe, 0xf1, 0x95, 0xd9, 0xa1, 0x95, 0xc0, 0xe3, 0xc7, 0xf4, 0xef, 0x13, 0x48, 0x26, 0x38, 0x06, 0x9b, 0x1c, 0x3f, 0x97, 0xd4, 0x98, 0xe3, 0xec, 0x36, 0x70, 0x48, 0x29, 0xb8, 0xca, 0x59, 0xe2, 0x7c, 0xed, 0x22, 0xb2, 0x4d, 0xea, 0x2c, 0x48, 0x1f, 0x74, 0x91, 0x6c, 0x37, 0x34, 0x82, 0xd3, 0x35, 0x7a, 0x63, 0x9f, 0x7c, 0x4f, 0xdb, 0x45, 0xef, 0xe9, 0x6d, 0x65, 0xeb, 0x49, 0xb0, 0x03, 0xda, 0x6e, 0x2a, 0xc1, 0xbc, 0x9e, 0x92, 0x7f, 0xc5, 0x25, 0x26, 0x55, 0x03, 0x0a, 0x0a, 0x86, 0xdf, 0xbd, 0x24, 0xaf, 0xa5, 0xba, 0x3a, 0xbd, 0x58, 0xaa, 0x78, 0xd6, 0xb5, 0x1d, 0x1d, 0x02, 0x99, 0x1b, 0xf9, 0xe4, 0x11, 0x3c, 0x18, 0x0f, 0x4d, 0xad, 0x07, 0x48, 0xaf, 0x6c, 0x58, 0xf7, 0xf8, 0x0c, 0xc2, 0x9b, 0x5e, 0x67, 0xe7, 0x2c, 0x37, 0x04, 0x2e, 0x0a, 0x7a, 0x83, 0xbc, 0xb0, 0x7f, 0xc4, 0x8a, 0xa5, 0x44, 0x5b, 0x90, 0x6c, 0xea, 0xf8, 0x77, 0xe7, 0x2e, 0x61, 0x3e, 0x0f, 0x0d, 0x56, 0x4c, 0xa5, 0x47, 0xe8, 0xa7, 0x16, 0x2b, 0x97, 0x3d, 0x97, 0x03, 0xed, 0xcb, 0x24, 0x3d, 0xcd, 0xcf, 0xac, 0x08, 0x01, 0x28, 0xd5, 0x0f, 0x25, 0x16, 0x2e, 0x07, 0x22, 0x4d, 0xc1, 0x77, 0x3a, 0xad, 0x02, 0xa7, 0x85, 0x73, 0x30, 0x1a, 0x24, 0x05, 0x3e, 0x47, 0x50, 0xd8, 0x85, 0xab, 0x18, 0x09, 0x7b, 0x80, 0xe1, 0xde, 0x95, 0x25, 0x8e, 0xae, 0x73, 0xc1, 0x20, 0x2e, 0xd6, 0xb5, 0x31, 0xc0, 0x79, 0x3d, 0xdf, 0x5d, 0xeb, 0xec, 0xd3, 0xaf, 0x9a, 0x8c, 0xff, 0x1a, 0x0f, 0x26, 0x0b, 0x1c, 0x04, 0xcc, 0xf5, 0x7b, 0x5d, 0x4c, 0x83, 0xc9, 0xc7, 0xb2, 0x59, 0xa9, 0x4b, 0xc3, 0x3b, 0xab, 0xe6, 0x51, 0x05, 0x6a, 0x98, 0x11, 0x27, 0x2d, 0xb2, 0xd6, 0xff, 0x33, 0x20, 0xd6, 0x4e, 0x76, 0x06, 0xf8, 0xe6, 0x69, 0xaa, 0x1b, 0xcb, 0x83, 0x21, 0x5d, 0x6a, 0xa3, 0x51, 0xcc, 0xb5, 0x27, 0xf5, 0x54, 0xaf, 0x07, 0x5d, 0xaf, 0x5b, 0x5e, 0x2b, 0xbc, 0x1c, 0xaf, 0xae, 0x17, 0x5a, 0x66, 0xb7, 0x8f, 0x6c, 0x92, 0xb7, 0x67, 0x7c, 0x40, 0xe4, 0xac, 0xfe, 0xa2, 0xfe, 0xbe, 0x77, 0x2a, 0x2a, 0x43, 0x5b, 0xdf, 0x61, 0xfc, 0xf1, 0x1c, 0x21, 0x38, 0x03, 0x5f, 0x66, 0x90, 0x05, 0x85, 0xa0, 0x4a, 0xd7, 0x4e, 0x5f, 0x53, 0xec, 0x82, 0xe0, 0xfa, 0xac, 0x71, 0x08, 0x94, 0x79, 0xe0, 0xa3, 0x7f, 0x46, 0x66, 0xc3, 0x27, 0xa3, 0x52, 0xa5, 0x58, 0xdd, 0xb6, 0x66, 0xfd, 0x7d, 0xbb, 0x6f, 0x4f, 0xed, 0x75, 0xb0, 0xd0, 0x7b, 0x42, 0x16, 0x24, 0xc9, 0x7b, 0x0d, 0x5c, 0xf1, 0xc7, 0x57, 0x97, 0xd7, 0x13, 0xec, 0x2c, 0xa8, 0x05, 0x89, 0x4f, 0x11, 0x97, 0x1d, 0xca, 0xb2, 0xbb, 0x17, 0xbd, 0xd5, 0x1f, 0xc8, 0xee, 0xc0, 0xd7, 0xe6, 0xb7, 0x07, 0x9f, 0x4b, 0x72, 0xe0, 0x22, 0x77, 0x7f, 0x97, 0x3c, 0xd9, 0x6b, 0x13, 0xa2, 0xb5, 0xd0, 0x3f, 0x79, 0x52, 0x12, 0xe5, 0x0b, 0x34, 0x0a, 0x1c, 0xc8, 0x91, 0xa4, 0x52, 0x87, 0x4a, 0x06, 0x1e, 0xd0, 0x0b, 0x78, 0x7d, 0x74, 0x81, 0xb6, 0x73, 0x8a, 0xb3, 0x76, 0x1a, 0x72, 0xbe, 0x20, 0xfd, 0x9e, 0xd9, 0xc8, 0xc0, 0x5a, 0x5d, 0xec, 0xcf, 0xc9, 0x1c, 0x4a, 0xb5, 0x3b, 0x3b, 0x47, 0x9a, 0xfa, 0x01, 0x03, 0x83, 0xfe, 0x9d, 0xac, 0x2a, 0x01, 0x7a, 0xd8, 0xe5, 0xb8, 0x22, 0xe9, 0xbf, 0xbe, 0x13, 0x53, 0x6f, 0xbf, 0xda, 0x1e, 0xc0, 0x51, 0xf1, 0x71, 0xf3, 0x7a, 0xaf, 0x42, 0x11, 0xe3, 0x6a, 0x1e, 0x7c, 0xf3, 0x2a, 0xc2, 0x08, 0xbc, 0xe5, 0xd7, 0xa9, 0xa0, 0xda, 0x17, 0xe5, 0x3c, 0xdc, 0xd1, 0x3f, 0xda, 0xba, 0x32, 0xbb, 0x74, 0xb5, 0xf0, 0x58, 0x53, 0xe4, 0x0b, 0x4b, 0xe0, 0x95, 0xf5, 0x85, 0x5a, 0xfd, 0x83, 0x50, 0x4e, 0x66, 0xdc, 0x2d, 0xbf, 0xf3, 0xed, 0xbd, 0x12, 0xf3, 0xc6, 0xed, 0xf4, 0xde, 0x74, 0xc2, 0x50, 0x61, 0xe3, 0x6e, 0x6a, 0x6e, 0x59, 0xbc, 0x59, 0xff, 0x99, 0x76, 0x1d, 0x85, 0x8e, 0x16, 0x44, 0x6f, 0x1c, 0x6b, 0xc9, 0x4e, 0xb3, 0x0f, 0x2a, 0xa5, 0x1a, 0x73, 0xd5, 0x25, 0x27, 0xf6, 0x2c, 0x4a, 0x3d, 0x24, 0xa2, 0xe5, 0x45, 0x0c, 0x0b, 0x57, 0xef, 0xd8, 0x57, 0x37, 0xa5, 0xfb, 0x83, 0x9e, 0x15, 0x44, 0x40, 0x40, 0x0c, 0x1d, 0xf1, 0x95, 0xc3, 0x57, 0x9c, 0xa8, 0x48, 0x84, 0x36, 0x40, 0xde, 0xca, 0x11, 0xf9, 0x45, 0xb3, 0xfb, 0x2b, 0x8c, 0x34, 0xca, 0x68, 0xe5, 0x04, 0xd2, 0x41, 0xb7, 0x17, 0x57, 0x89, 0xc0, 0xb9, 0xd5, 0x23, 0x6f, 0xc7, 0xf6, 0x8a, 0x82, 0xf0, 0xdf, 0x6d, 0x10, 0x91, 0x70, 0x09, 0x56, 0x42, 0x54, 0x57, 0xda, 0x9a, 0xd0, 0xe4, 0x88, 0xe0, 0xfe, 0xa1, 0x08, 0xb5, 0x95, 0x5c, 0x83, 0xd8, 0x26, 0x52, 0x48, 0x44, 0xef, 0x6c, 0x41, 0x2d, 0x14, 0x5e, 0x9f, 0xb8, 0xf1, 0xfc, 0x6d, 0x05, 0x03, 0xc4, 0x47, 0x74, 0x2c, 0x74, 0xf9, 0x46, 0x37, 0x0f, 0x19, 0x59, 0xd6, 0x5b, 0x94, 0x80, 0x05, 0x9e, 0xc9, 0x18, 0xc0, 0xf7, 0x42, 0x75, 0xb4, 0x14, 0x7a, 0x1b, 0x55, 0xc3, 0xa3, 0xe3, 0x33, 0xb9, 0xc9, 0xe0, 0x21, 0x14, 0x10, 0x1f, 0x84, 0x37, 0x93, 0xfd, 0x30, 0x8b, 0x0d, 0x1e, 0xf9, 0xef, 0xdf, 0x00, 0x1f, 0xe8, 0xf6, 0xf8, 0xd3, 0x9d, 0x0f, 0xc3, 0x59, 0xed, 0x81, 0xd5, 0x4a, 0xd6, 0xb9, 0x2f, 0xe2, 0x21, 0x9c, 0x51, 0x45, 0xbe, 0xef, 0x63, 0x5d, 0xb0, 0xd2, 0x06, 0xa9, 0xa7, 0x84, 0x34, 0x95, 0x6d, 0xa2, 0x48, 0x30, 0xc5, 0x1d, 0x26, 0xec, 0x72, 0xe0, 0xa3, 0x8d, 0x8c, 0xa9, 0x3b, 0x9e, 0x73, 0xaa, 0x56, 0xe2, 0x67, 0x5a, 0x47, 0x76, 0x0b, 0x72, 0x2b, 0xde, 0x51, 0x00, 0x6e, 0x38, 0x95, 0xc3, 0x83, 0x00, 0x52, 0x8e, 0x9c, 0x27, 0x2e, 0x4e, 0x27, 0x37, 0x13, 0x0c, 0x9c, 0x9e, 0x3a, 0x85, 0x2c, 0xaf, 0x84, 0x7d, 0x69, 0xfb, 0x1b, 0x83, 0x9e, 0x47, 0xe6, 0xe0, 0x05, 0x89, 0xd7, 0xd2, 0xeb, 0x3f, 0x7e, 0x9a, 0x77, 0x0b, 0x35, 0x0d, 0x35, 0x8e, 0xc5, 0x0c, 0xf8, 0xb0, 0x46, 0xbc, 0x0f, 0xd5, 0xe3, 0x98, 0x9f, 0x06, 0xf6, 0x67, 0xfd, 0xa5, 0xef, 0x24, 0xbc, 0x31, 0x98, 0x4f, 0x94, 0x07, 0xea, 0x92, 0xc4, 0x6a, 0x29, 0x74, 0xbb, 0x19, 0xce, 0xb9, 0x0d, 0xbf, 0xed, 0x8f, 0xe5, 0xb8, 0xef, 0x3d, 0x60, 0x7f, 0xe8, 0x29, 0x81, 0xdc, 0xbb, 0x13, 0x82, 0x9a, 0x64, 0x33, 0xdb, 0x5b, 0xf7, 0x0c, 0xd3, 0x08, 0x5d, 0x54, 0x0c, 0x39, 0xe2, 0x85, 0x67, 0xe9, 0x87, 0xb6, 0xd9, 0x88, 0x60, 0x01, 0x17, 0xdc, 0x68, 0x80, 0x4e, 0x29, 0x7b, 0x5f, 0x94, 0xe9, 0xbc, 0x8e, 0x47, 0x5c, 0x1f, 0xe9, 0x6b, 0xca, 0x91, 0x71, 0x2b, 0x05, 0xe3, 0xdf, 0x66, 0x2d, 0xa0, 0xfd, 0x66, 0x85, 0x97, 0xbd, 0xa1, 0x7d, 0xb1, 0x0e, 0xdb, 0x53, 0xd3, 0xe8, 0xde, 0xee, 0xa2, 0x3d, 0xb5, 0x91, 0xb1, 0x38, 0x0a, 0xad, 0xcb, 0x39, 0xb7, 0xc4, 0x97, 0x0d, 0x71, 0xbe, 0xf8, 0x6b, 0x98, 0x27, 0x7c, 0x7a, 0x1a, 0x76, 0x24, 0xb8, 0xc8, 0xb7, 0xf9, 0xbb, 0xb9, 0xc4, 0xbf, 0x4e, 0x08, 0x86, 0xc6, 0x65, 0x02, 0x9a, 0xc1, 0xa8, 0xf6, 0x81, 0xda, 0x1b, 0xd3, 0xda, 0xa6, 0x41, 0xe9, 0x4e, 0x86, 0xac, 0xda, 0x3b, 0x2b, 0xf9, 0x57, 0x3e, 0x81, 0x98, 0x32, 0x4e, 0x2a, 0xcf, 0x3e, 0x35, 0x5f, 0xba, 0xa9, 0x43, 0xe7, 0x69, 0xaa, 0x8e, 0x8a, 0xe6, 0x4c, 0x50, 0xe3, 0x52, 0xf4, 0x5a, 0xd1, 0x97, 0x3c, 0x9a, 0x81, 0xae, 0x9a, 0xc4, 0x1c, 0xb6, 0xcd, 0x8a, 0xec, 0xb9, 0x2d, 0xd0, 0xfb, 0x5c, 0x51, 0x5a, 0x9c, 0xc6, 0xc3, 0x24, 0x63, 0x1e, 0xb7, 0x74, 0x4d, 0x57, 0x97, 0x6f, 0x77, 0x24, 0xa4, 0x55, 0xaa, 0x5e, 0x5b, 0x91, 0x44, 0x0a, 0x89, 0xff, 0x6a, 0xc0, 0xfe, 0x49, 0x09, 0x10, 0xa6, 0x03, 0x22, 0x20, 0x5b, 0xc5, 0x87, 0xb2, 0x09, 0x5b, 0x33, 0xab, 0x63, 0x8f, 0x62, 0x14, 0x50, 0xe4, 0x16, 0x85, 0x5a, 0xcd, 0x1e, 0x6c, 0x53, 0x88, 0x43, 0xc5, 0xd6, 0x37, 0x7a, 0xfa, 0x8c, 0x20, 0xf3, 0x76, 0x7c, 0x8d, 0xaa, 0x99, 0xbe, 0x18, 0xc6, 0x96, 0x59, 0xa3, 0x9c, 0x37, 0xb0, 0xf9, 0x63, 0xec, 0x32, 0xa8, 0xfa, 0x68, 0xf7, 0xdc, 0xb0, 0xf9, 0xfa, 0x5f, 0x63, 0x63, 0x7f, 0xf5, 0xbc, 0x4d, 0xf5, 0xcd, 0x5d, 0x21, 0xfa, 0x30, 0x21, 0x8c, 0x09, 0x71, 0x7d, 0x68, 0xe5, 0xfe, 0xb2, 0x37, 0x15, 0x75, 0xb9, 0x25, 0xcf, 0x66, 0x96, 0xd4, 0x3f, 0x35, 0x96, 0xc5, 0xe5, 0xed, 0x4b, 0x63, 0x2a, 0xa0, 0xd6, 0x25, 0xe5, 0x20, 0x86, 0x98, 0x0d, 0xec, 0x85, 0x8d, 0x01, 0x84, 0x9d, 0x67, 0x6a, 0xc4, 0x85, 0x67, 0x03, 0x03, 0xed, 0x91, 0x45, 0x53, 0x84, 0x58, 0x8b, 0x7a, 0xae, 0x63, 0xd4, 0x4a, 0xf7, 0x8d, 0x2c, 0x4d, 0x56, 0x63, 0x16, 0x49, 0x01, 0xeb, 0x1d, 0xd5, 0x92, 0xe6, 0x33, 0x83, 0x31, 0xcd, 0xb3, 0x41, 0x26, 0x95, 0xf9, 0x08, 0x39, 0x5d, 0x7a, 0x84, 0xeb, 0x45, 0x6c, 0xad, 0x95, 0xb9, 0x5e, 0xb0, 0x52, 0xe9, 0x57, 0x22, 0x0f, 0x88, 0xfd, 0x74, 0x8b, 0x0a, 0x1c, 0x1a, 0x88, 0x7c, 0x7a, 0xd0, 0x3b, 0x23, 0xae, 0x4f, 0x19, 0x82, 0x25, 0x04, 0x75, 0x91, 0x46, 0x36, 0x45, 0x92, 0xaf, 0x6a, 0x55, 0xb9, 0xe5, 0x7d, 0xc6, 0x28, 0x6d, 0x7a, 0xe2, 0xf5, 0x32, 0x3d, 0x5c, 0x1e, 0x1a, 0x8d, 0xc9, 0x94, 0x9c, 0xb3, 0xa7, 0xfb, 0x8d, 0x20, 0x2e, 0x37, 0x14, 0xd7, 0x75, 0x06, 0x89, 0x58, 0xd3, 0x8d, 0xca, 0xf3, 0xd8, 0xaa, 0x1e, 0x92, 0x46, 0x83, 0xaa, 0x04, 0x10, 0x39, 0xfb, 0x58, 0x94, 0x80, 0xbc, 0x82, 0x61, 0x52, 0xd4, 0x84, 0x3d, 0x5c, 0x5e, 0xa1, 0xdc, 0xbe, 0xea, 0xa0, 0x23, 0x9b, 0xee, 0xc0, 0x1e, 0x48, 0xb3, 0x70, 0x43, 0xeb, 0x12, 0xc3, 0x88, 0x06, 0x29, 0xf8, 0x25, 0xa6, 0x33, 0x83, 0x68, 0xaf, 0x92, 0x2d, 0xf8, 0x9c, 0xac, 0x85, 0xcb, 0x21, 0xb8, 0x6f, 0x9b, 0x40, 0x62, 0xda, 0x9f, 0x54, 0xe4, 0x7f, 0x7c, 0x34, 0xff, 0x15, 0xff, 0x45, 0xa5, 0x04, 0xcd, 0xb4, 0x5c, 0xb2, 0xf7, 0x39, 0xb4, 0xc8, 0xb9, 0x9e, 0x42, 0x31, 0x20, 0x89, 0x91, 0x19, 0x07, 0x42, 0xe0, 0x1c, 0xdb, 0xf5, 0x18, 0xd2, 0x32, 0x47, 0x85, 0xaa, 0x36, 0x08, 0xf0, 0x74, 0x88, 0x7b, 0x97, 0xff, 0x45, 0x57, 0x2f, 0xa6, 0xbd, 0x9b, 0x0f, 0x45, 0x06, 0x8d, 0xe0, 0xde, 0x6f, 0x2a, 0x9e, 0xec, 0xc2, 0x1b, 0xd2, 0x40, 0xde, 0x84, 0xd5, 0x1d, 0xf4, 0x8f, 0x2d, 0x38, 0x70, 0xad, 0x60, 0x83, 0x32, 0xb8, 0x75, 0xd3, 0x3e, 0x48, 0xf1, 0x2e, 0xfb, 0xca, 0x8c, 0xf0, 0x2e, 0x1b, 0xd3, 0x18, 0xb7, 0x9d, 0x6e, 0x75, 0xa3, 0x53, 0x9b, 0x92, 0xed, 0x6a, 0x08, 0xb7, 0x49, 0xfb, 0xf5, 0xfa, 0xd1, 0x66, 0xcb, 0x6a, 0xd0, 0x42, 0x4d, 0x14, 0x70, 0x28, 0x7c, 0x92, 0x9c, 0x9e, 0xcd, 0x97, 0xc6, 0xf4, 0x34, 0x77, 0x6d, 0xf6, 0x3e, 0x6f, 0xa7, 0x8a, 0x4c, 0x2f, 0xb3, 0x0e, 0x98, 0x9f, 0xfc, 0x04, 0x54, 0xbd, 0x98, 0x6e, 0xca, 0x5f, 0x54, 0x32, 0xcc, 0x7b, 0x48, 0x95, 0xe5, 0xaf, 0x93, 0x08, 0x75, 0x5f, 0x85, 0x0f, 0xfd, 0xa3, 0xd2, 0xb1, 0x40, 0xe4, 0xda, 0x5f, 0x65, 0x2a, 0x4d, 0x79, 0x80, 0x8e, 0xe2, 0x98, 0xf9, 0xa9, 0x4e, 0xb4, 0x0e, 0x5b, 0xf9, 0x3d, 0x56, 0x58, 0x92, 0xe4, 0xff, 0x1d, 0x0d, 0xc0, 0x96, 0x71, 0x11, 0x5d, 0x60, 0x78, 0x59, 0x62, 0x7e, 0x84, 0xbc, 0x2a, 0x43, 0xc0, 0x6a, 0x03, 0x44, 0x35, 0xf9, 0x46, 0x52, 0xd8, 0xaf, 0x27, 0xb7, 0x53, 0x78, 0x7e, 0xec, 0x00, 0xd5, 0x63, 0x85, 0x2d, 0x08, 0xf0, 0xe3, 0x88, 0x37, 0xde, 0x31, 0x03, 0xb9, 0xf7, 0xc9, 0xbd, 0xef, 0x8f, 0x57, 0xfd, 0x8c, 0x20, 0xe5, 0x2d, 0x98, 0xa7, 0x77, 0x1d, 0xfb, 0x72, 0x15, 0xdf, 0x91, 0xfd, 0x2e, 0x43, 0xdd, 0xbc, 0x27, 0xb3, 0x79, 0x8f, 0x3a, 0x00, 0x95, 0x93, 0xd6, 0x45, 0x72, 0xc1, 0x21, 0xbd, 0x7b, 0xc7, 0x98, 0xd0, 0x59, 0xd4, 0x8a, 0x68, 0x87, 0xce, 0x6f, 0xd1, 0x4a, 0xfa, 0x22, 0x8b, 0xb4, 0x03, 0xa6, 0xd9, 0x67, 0xd0, 0xed, 0xc0, 0x86, 0xba, 0x3d, 0x64, 0xfa, 0xc5, 0xf3, 0x99, 0xf0, 0xfb, 0x74, 0xda, 0xdb, 0x87, 0xef, 0xbe, 0x30, 0xda, 0xc1, 0x24, 0x7e, 0x8a, 0x2f, 0x3f, 0x11, 0x39, 0xec, 0xfb, 0xe5, 0xa2, 0x24, 0x5c, 0x88, 0xc3, 0xb1, 0x54, 0xa0, 0x13, 0xc4, 0x63, 0x35, 0xe5, 0x8d, 0xaa, 0x5b, 0xe2, 0x61, 0xf1, 0xd9, 0xe6, 0x68, 0x1d, 0x0e, 0xfa, 0x8f, 0xb2, 0x33, 0x30, 0xb0, 0xe5, 0x60, 0x5c, 0x47, 0x81, 0xed, 0x6d, 0x3e, 0xa1, 0xdd, 0x0f, 0x0a, 0x4f, 0x96, 0x68, 0xb6, 0x79, 0x29, 0x7a, 0xb9, 0xf5, 0xba, 0xe1, 0xee, 0x57, 0xce, 0x18, 0x4b, 0xef, 0xc8, 0xbb, 0x1c, 0x25, 0xa9, 0x8e, 0x20, 0xac, 0x43, 0x14, 0x8e, 0xc3, 0x8b, 0x40, 0xf2, 0xbb, 0x0e, 0x54, 0xd4, 0x11, 0x70, 0x88, 0x6d, 0x71, 0x2e, 0x48, 0xe7, 0x88, 0x52, 0x6a, 0xde, 0xc2, 0xc3, 0xf0, 0x73, 0x52, 0x63, 0xaf, 0x20, 0x27, 0x73, 0x81, 0x0e, 0x2b, 0x36, 0x3e, 0x7d, 0xa0, 0xb7, 0xc4, 0x28, 0x78, 0xef, 0xf5, 0xb3, 0x4e, 0x65, 0x09, 0xe2, 0xf0, 0x44, 0x28, 0x43, 0xe0, 0x2f, 0xfd, 0xa3, 0x93, 0x41, 0xb7, 0x2f, 0xd7, 0xe5, 0x4f, 0x21, 0x18, 0x98, 0x01, 0x41, 0xfb, 0xd9, 0x50, 0xf9, 0x80, 0x6e, 0x12, 0x1f, 0x9e, 0xdd, 0x87, 0xfa, 0xba, 0xa6, 0x71, 0x16, 0xfa, 0x0d, 0xef, 0x6e, 0x84, 0xa5, 0x4d, 0x1d, 0xa3, 0xda, 0xc6, 0x51, 0x21, 0xa7, 0x68, 0x7a, 0xe3, 0x4c, 0x1c, 0x08, 0xdd, 0x85, 0xe0, 0x6f, 0x87, 0xcf, 0x0e, 0x27, 0xca, 0xf9, 0xb0, 0x42, 0xff, 0xb2, 0x2b, 0xb0, 0x16, 0x67, 0x84, 0x96, 0xfb, 0x90, 0x85, 0x34, 0xef, 0xbe, 0x40, 0xc6, 0x03, 0x90, 0xf7, 0xc8, 0x75, 0x40, 0xc3, 0xbd, 0x6d, 0x5d, 0x0f, 0x8f, 0x84, 0x44, 0x79, 0x9a, 0x38, 0x48, 0xcd, 0x64, 0xb7, 0x3d, 0x76, 0xbe, 0xce, 0xdc, 0xc8, 0x76, 0x9d, 0xa4, 0x34, 0x3f, 0x2e, 0x25, 0xf8, 0xa0, 0x44, 0x34, 0xce, 0x3c, 0xf0, 0xcb, 0xff, 0x92, 0x12, 0xe4, 0xd4, 0x5e, 0xab, 0x08, 0x70, 0x84, 0x4d, 0x55, 0x5e, 0xb9, 0x4c, 0xab, 0x27, 0x21, 0xe0, 0x1a, 0xd0, 0xea, 0x29, 0x93, 0x77, 0x4e, 0x87, 0xf5, 0x04, 0x0d, 0xc6, 0x99, 0x7f, 0x3c, 0x8c, 0xd9, 0x3c, 0xad, 0x29, 0x7e, 0x10, 0x9f, 0x22, 0xb6, 0xfb, 0x46, 0xb2, 0x01, 0x2f, 0x4f, 0x1c, 0x2b, 0x75, 0x37, 0x73, 0x59, 0x79, 0x27, 0x96, 0xf7, 0xf7, 0x1d, 0x30, 0x07, 0xed, 0x16, 0x5d, 0x29, 0x23, 0xf6, 0xae, 0x19, 0xee, 0x16, 0x93, 0x49, 0xc9, 0xe6, 0x75, 0xdd, 0x52, 0x53, 0x41, 0x52, 0x61, 0x90, 0xa1, 0xa9, 0xce, 0x00, 0x40, 0xf7, 0x6a, 0x88, 0x44, 0xab, 0x91, 0x71, 0x37, 0xaa, 0x98, 0x03, 0x35, 0xcb, 0x05, 0x6e, 0x69, 0x03, 0x21, 0xc4, 0xd2, 0x96, 0xc0, 0xcf, 0x1f, 0xc5, 0xee, 0xca, 0xe7, 0x42, 0xa8, 0x5d, 0x19, 0xbd, 0x1f, 0xce, 0xc4, 0x9e, 0xba, 0x30, 0x35, 0x66, 0xd8, 0x52, 0x1d, 0x05, 0x7b, 0xda, 0xbb, 0xb7, 0x39, 0xf2, 0xd9, 0xf8, 0x71, 0xfe, 0x06, 0x25, 0x2d, 0xf2, 0x4c, 0x6d, 0x04, 0x8f, 0x0f, 0xcc, 0x40, 0xcb, 0x97, 0xf5, 0xb1, 0x98, 0x8a, 0x06, 0xe4, 0xdb, 0x6d, 0x5b, 0x65, 0xe6, 0x19, 0x43, 0xd8, 0xae, 0x64, 0x5e, 0x3b, 0xd9, 0x73, 0x5c, 0xaa, 0xc6, 0xd2, 0x2e, 0xd9, 0x58, 0x87, 0xa4, 0xc1, 0xa0, 0xa1, 0x49, 0x1f, 0xb8, 0x42, 0x54, 0x81, 0xf6, 0x3e, 0xde, 0x0a, 0x72, 0x83, 0x4d, 0xaa, 0x67, 0x51, 0x1e, 0x0f, 0x73, 0x97, 0x0c, 0x17, 0x2f, 0xa0, 0xf7, 0x3a, 0x23, 0x31, 0xec, 0xb1, 0x13, 0x5e, 0x8b, 0x83, 0xa7, 0xf2, 0x28, 0x83, 0xa8, 0xe8, 0xfb, 0x55, 0xe6, 0xcf, 0x8a, 0xaa, 0xd4, 0x27, 0x6a, 0x3c, 0xa0, 0x15, 0x45, 0xc6, 0xd4, 0x38, 0x4e, 0x6c, 0xa0, 0x7c, 0x04, 0xe7, 0x2c, 0xbd, 0x77, 0x2d, 0x25, 0x32, 0x83, 0xba, 0x0f, 0x0e, 0xa9, 0xdd, 0xc5, 0xbc, 0xa5, 0xb9, 0xa2, 0xf7, 0x7e, 0x11, 0x30, 0x76, 0x51, 0x89, 0xa8, 0x8a, 0x19, 0x3c, 0x4d, 0x89, 0xce, 0x9e, 0x9a, 0x09, 0x22, 0x95, 0x53, 0xa9, 0x0c, 0x28, 0xe4, 0x7b, 0xdc, 0xdb, 0x70, 0x42, 0x7e, 0x53, 0x97, 0x51, 0x07, 0x23, 0x0e, 0xeb, 0x1d, 0xfe, 0xe9, 0x0a, 0x86, 0x17, 0x7b, 0xc2, 0x66, 0x92, 0x26, 0xbf, 0xfc, 0x9e, 0x05, 0xfb, 0xe9, 0x12, 0x86, 0x80, 0x0e, 0xbc, 0xdb, 0x73, 0xfc, 0xda, 0x17, 0x9d, 0x85, 0xec, 0xc8, 0x4c, 0xb9, 0x27, 0x96, 0x5b, 0x0b, 0xda, 0xff, 0xab, 0x1a, 0xe0, 0xeb, 0xec, 0x62, 0xe2, 0x9a, 0x5f, 0xc9, 0xf8, 0x8c, 0x8f, 0x7f, 0xc8, 0x11, 0xec, 0x38, 0x17, 0xb1, 0x69, 0x92, 0xec, 0xfb, 0xc4, 0x78, 0x77, 0x6d, 0x54, 0x48, 0x7b, 0xc5, 0x43, 0x2a, 0xec, 0x57, 0xc4, 0xfc, 0x13, 0x7e, 0xe3, 0x18, 0xae, 0x35, 0xbd, 0x5f, 0xcf, 0x35, 0x3f, 0x81, 0xae, 0xfb, 0xfc, 0xb2, 0xe4, 0x8e, 0x80, 0x05, 0xd9, 0x4b, 0x30, 0x65, 0x6b, 0x49, 0x3c, 0x81, 0x64, 0x8a, 0x03, 0x07, 0x1e, 0x7e, 0x29, 0xe8, 0x3b, 0xd4, 0x8d, 0xd3, 0xf9, 0x21, 0x19, 0x70, 0x0d, 0x0c, 0xc0, 0x6a, 0xd1, 0xfe, 0x31, 0x8e, 0xe6, 0x40, 0x51, 0x36, 0x2e, 0xba, 0xf1, 0xde, 0x9a, 0x56, 0xae, 0x27, 0x4e, 0x55, 0x0b, 0x09, 0xc2, 0xc5, 0x59, 0xa1, 0x7e, 0xb1, 0x8a, 0x9b, 0x8b, 0x80, 0x77, 0x63, 0x69, 0xc0, 0xd5, 0x93, 0xcb, 0x39, 0xe1, 0x6c, 0x2f, 0xad, 0x45, 0x16, 0xf6, 0xe8, 0x0b, 0xc2, 0xc2, 0xac, 0xf8, 0xf0, 0xb3, 0x44, 0xdd, 0x97, 0x42, 0x57, 0x7f, 0x30, 0xe6, 0xd9, 0xf0, 0x17, 0x22, 0x7e, 0x32, 0x75, 0x14, 0x44, 0x06, 0x15, 0x86, 0x1e, 0xf2, 0xd9, 0x4e, 0xc9, 0xd7, 0x36, 0xcd, 0x49, 0x22, 0xea, 0xe3, 0x81, 0xe6, 0x64, 0x5a, 0x82, 0x49, 0xcc, 0x71, 0x41, 0x84, 0x72, 0x22, 0xc6, 0xe8, 0x5b, 0xcb, 0xb3, 0x93, 0x96, 0x84, 0x69, 0xe1, 0x46, 0x64, 0x28, 0xc3, 0xb2, 0x15, 0x2a, 0xaa, 0x1a, 0x8c, 0x88, 0xbd, 0x1e, 0xb0, 0x2a, 0x8f, 0x38, 0x71, 0x6c, 0x37, 0xeb, 0x35, 0x30, 0x02, 0x90, 0x9d, 0x9d, 0x09, 0x05, 0x82, 0x40, 0x87, 0x01, 0xc6, 0x14, 0xdc, 0x89, 0x15, 0x3c, 0xe9, 0xbc, 0x27, 0x96, 0xd6, 0x24, 0xcd, 0x7a, 0x9f, 0x9c, 0xba, 0x51, 0x07, 0xdf, 0xb6, 0x62, 0x68, 0xe6, 0xbe, 0x12, 0x83, 0xd2, 0x07, 0x17, 0xdf, 0x4a, 0x86, 0x1b, 0x8a, 0xb2, 0x28, 0xa0, 0x02, 0x0f, 0xaa, 0xa4, 0x86, 0xd6, 0x9e, 0x37, 0x78, 0xd3, 0xff, 0x6a, 0x6f, 0xd9, 0xf5, 0x7f, 0x34, 0x1d, 0x29, 0x91, 0x9e, 0xbf, 0xe6, 0xa5, 0xb4, 0x8f, 0x65, 0x12, 0x35, 0x34, 0xd0, 0x22, 0x9e, 0x1f, 0xb9, 0x0b, 0xe2, 0xa0, 0xd9, 0x75, 0x9a, 0x99, 0x4f, 0xa5, 0x59, 0x98, 0x07, 0x54, 0x83, 0x0a, 0x36, 0x80, 0xd2, 0xf6, 0x4a, 0x92, 0xf4, 0x38, 0xfe, 0xf8, 0x09, 0x1b, 0x12, 0x54, 0x18, 0x4b, 0xfb, 0x5d, 0xd7, 0x30, 0xe8, 0xca, 0x23, 0x41, 0x5f, 0x9a, 0xba, 0x74, 0x12, 0xa7, 0x68, 0x57, 0xd8, 0x47, 0xb5, 0xb7, 0x1e, 0x2e, 0x58, 0xf1, 0xf2, 0x09, 0x2b, 0xfd, 0x63, 0xf7, 0x7a, 0xf7, 0xf1, 0xdd, 0x51, 0x2c, 0x7e, 0x57, 0x47, 0x2c, 0x8f, 0x46, 0x4b, 0x39, 0xa6, 0x8d, 0x1e, 0x44, 0x2e, 0x02, 0x66, 0x18, 0xca, 0xce, 0xee, 0x32, 0x45, 0x50, 0x16, 0xb7, 0xb8, 0x9f, 0xb7, 0xb5, 0x6d, 0xc2, 0xaf, 0x37, 0xf7, 0xcb, 0x8c, 0x83, 0x20, 0xde, 0x1b, 0x40, 0xdb, 0x6f, 0x29, 0xec, 0xbf, 0x85, 0xa2, 0x32, 0x90, 0x4b, 0x23, 0x2d, 0x9f, 0xb7, 0x1a, 0x2c, 0x6a, 0xef, 0x6b, 0xfe, 0xf5, 0x52, 0xe7, 0xee, 0x9c, 0xb3, 0x70, 0xfb, 0xd8, 0xce, 0x54, 0x59, 0x50, 0x90, 0xa0, 0x40, 0x50, 0x46, 0x33, 0x3e, 0x93, 0xaf, 0xba, 0x18, 0x48, 0xa7, 0xbc, 0xc5, 0x96, 0x56, 0xa5, 0x66, 0xad, 0x7b, 0x70, 0x24, 0x0d, 0x14, 0x77, 0x50, 0xb4, 0x2c, 0x79, 0x71, 0x87, 0xb0, 0x24, 0x7f, 0x9c, 0x8c, 0x86, 0x9a, 0x7c, 0xb2, 0x6f, 0x9a, 0x4c, 0xc8, 0xb4, 0x57, 0x33, 0x78, 0xd9, 0x11, 0xe9, 0x7e, 0x75, 0x9c, 0xb1, 0xa9, 0x38, 0x5b, 0x90, 0x20, 0x23, 0xef, 0x50, 0x21, 0xa1, 0x2f, 0x3b, 0xee, 0x7a, 0x14, 0x9a, 0x46, 0x9d, 0x94, 0x4d, 0xa6, 0x6a, 0xbf, 0x30, 0x50, 0x73, 0xbf, 0x22, 0x98, 0xaa, 0x98, 0x64, 0x7d, 0x41, 0x88, 0x1b, 0x30, 0x5b, 0x64, 0x30, 0xa6, 0xfe, 0xaf, 0xee, 0x70, 0x74, 0x67, 0x00, 0x37, 0x86, 0xe2, 0x4e, 0xcd, 0x44, 0xe9, 0xbd, 0xf7, 0x85, 0x8a, 0x66, 0x2f, 0x70, 0xe2, 0xf2, 0x25, 0x20, 0x6b, 0x72, 0x63, 0x62, 0xa2, 0x81, 0x09, 0x3e, 0xd6, 0x01, 0x9d, 0x83, 0x9e, 0xc6, 0x49, 0x3a, 0x7c, 0xd1, 0x72, 0x7a, 0xd5, 0x05, 0x3d, 0x37, 0x21, 0x16, 0x08, 0x0f, 0x67, 0xe1, 0x56, 0xf0, 0x0e, 0x0d, 0x53, 0xc5, 0xc6, 0x26, 0xca, 0x91, 0xb0, 0x15, 0xe2, 0x1a, 0x44, 0xaa, 0xd8, 0x5b, 0x0e, 0x5a, 0xfe, 0x77, 0x94, 0x07, 0x7e, 0xaf, 0x6d, 0x02, 0x81, 0x7e, 0xd5, 0x8d, 0x69, 0x8d, 0x65, 0xe5, 0xea, 0x18, 0x45, 0x19, 0xa8, 0xc7, 0x34, 0xdd, 0x3a, 0xae, 0xfa, 0x46, 0xc5, 0xbc, 0xda, 0x08, 0x8c, 0x09, 0x71, 0xa7, 0x3c, 0x6c, 0x43, 0x93, 0xfa, 0x89, 0xa4, 0xd9, 0xad, 0xce, 0xc9, 0x46, 0x62, 0x13, 0x01, 0x11, 0x3c, 0xa4, 0x61, 0x41, 0xc1, 0x40, 0x35, 0xd1, 0x2b, 0x17, 0x50, 0x27, 0x3e, 0x15, 0x4f, 0xf3, 0xf7, 0xd2, 0xc5, 0x9e, 0x3d, 0xa6, 0xc8, 0x02, 0xae, 0x2d, 0x3c, 0xf2, 0xa4, 0x6a, 0x54, 0x01, 0x39, 0x95, 0x6b, 0xd3, 0xb1, 0xa5, 0x8d, 0x03, 0x19, 0x16, 0xf4, 0xec, 0x0a, 0x78, 0x3d, 0xc6, 0xda, 0xfb, 0x44, 0x2d, 0x28, 0x26, 0x2c, 0xbc, 0x22, 0xd4, 0xdf, 0x9a, 0x3d, 0x21, 0xc7, 0xc2, 0xe1, 0x8b, 0xde, 0xb3, 0xd0, 0x68, 0x5e, 0x71, 0x06, 0x21, 0x16, 0xbd, 0xea, 0xa9, 0x51, 0x2a, 0xf9, 0x45, 0xa9, 0xb6, 0xa9, 0x22, 0xf1, 0xf1, 0xd7, 0xd6, 0x3b, 0xba, 0x46, 0x13, 0x4e, 0x31, 0x32, 0xa2, 0x03, 0x46, 0x4d, 0x9b, 0xa2, 0xf9, 0xe7, 0xeb, 0x58, 0xd9, 0x1f, 0xfa, 0x15, 0x54, 0xb9, 0xbc, 0x70, 0x2b, 0xbb, 0x4d, 0xb2, 0xac, 0xe9, 0x2e, 0xf2, 0x9d, 0x29, 0x25, 0x1b, 0x4c, 0x47, 0xaa, 0x04, 0x5e, 0xa2, 0x9a, 0x0d, 0x24, 0x52, 0x78, 0xfa, 0x5a, 0x5f, 0x42, 0xce, 0x1f, 0xfe, 0xce, 0x1f, 0x1b, 0x06, 0xc6, 0x70, 0x1f, 0xf0, 0x7d, 0x81, 0x48, 0x67, 0x05, 0xa1, 0x6b, 0xd2, 0x0a, 0x93, 0xde, 0xdb, 0x35, 0x58, 0x68, 0xb5, 0x23, 0x99, 0x86, 0xf5, 0x03, 0x1c, 0xe1, 0x43, 0x52, 0x22, 0x11, 0xc0, 0x91, 0x33, 0xc7, 0x65, 0x86, 0xa8, 0x8f, 0xdc, 0xf5, 0x6b, 0x91, 0xe9, 0x46, 0x19, 0xce, 0x59, 0x29, 0xf9, 0xcc, 0x7e, 0x2d, 0x2e, 0x55, 0x07, 0xb0, 0x9a, 0xb5, 0xc6, 0x62, 0xdf, 0x9c, 0x95, 0x0d, 0x24, 0xdc, 0x5a, 0x12, 0xdc, 0x1f, 0x0c, 0xf3, 0x38, 0xec, 0x07, 0x87, 0x2b, 0x14, 0xc7, 0x4e, 0xb3, 0xaa, 0x2b, 0xe1, 0x34, 0xf3, 0x93, 0x13, 0xf9, 0x48, 0x19, 0x85, 0x9b, 0xa2, 0x16, 0x88, 0x24, 0x13, 0x65, 0xb3, 0x3b, 0xf5, 0x64, 0x50, 0x1e, 0x03, 0xd0, 0x44, 0xaa, 0x9d, 0x5e, 0x2c, 0x69, 0x6b, 0xeb, 0x2e, 0x96, 0xe7, 0x5a, 0x2f, 0x6f, 0x2e, 0x00, 0xd6, 0x11, 0x9f, 0xad, 0x76, 0x9d, 0x90, 0xae, 0xa3, 0x73, 0x04, 0xfe, 0xcd, 0x71, 0xee, 0x88, 0xc9, 0x3f, 0xa4, 0xee, 0x27, 0x79, 0x4b, 0x65, 0x0d, 0x22, 0xb1, 0x92, 0x36, 0x81, 0x03, 0xad, 0x9a, 0x3f, 0x20, 0xee, 0x91, 0x59, 0xbc, 0xea, 0x4f, 0x1f, 0xae, 0xff, 0xc9, 0x49, 0x5f, 0x07, 0x26, 0x4a, 0x77, 0x60, 0xfd, 0x99, 0xe4, 0x53, 0x1c, 0x9d, 0x30, 0x39, 0x58, 0xfc, 0x16, 0x4a, 0x75, 0x21, 0xb7, 0x5c, 0xaa, 0x98, 0x16, 0x7a, 0x55, 0xa1, 0xb3, 0x02, 0x95, 0x9c, 0x3a, 0x95, 0xaa, 0xb6, 0x52, 0x24, 0xf7, 0xad, 0x9c, 0xa1, 0xf4, 0x4e, 0x63, 0xc0, 0x25, 0xa3, 0x26, 0xe9, 0x7d, 0x47, 0x3d, 0x0a, 0xe0, 0x89, 0x44, 0x4c, 0xca, 0x40, 0x96, 0x6b, 0xd2, 0x4d, 0x9c, 0xd3, 0x29, 0x4c, 0xe8, 0xc4, 0x53, 0xad, 0x2c, 0xdd, 0xd6, 0x48, 0xf5, 0x52, 0x13, 0x1c, 0xc8, 0x9d, 0x9f, 0x3b, 0x1b, 0x77, 0x13, 0xbf, 0x2f, 0xeb, 0x63, 0xe3, 0xd8, 0xfa, 0x7d, 0x54, 0xdc, 0x43, 0xe7, 0x0e, 0xea, 0x9f, 0x2c, 0x54, 0x77, 0x69, 0xfc, 0x0a, 0x62, 0xca, 0x65, 0x51, 0x87, 0x70, 0x5e, 0xf4, 0x81, 0x91, 0x7c, 0x3f, 0x79, 0x3b, 0xdb, 0xc5, 0x16, 0x35, 0xf1, 0xcc, 0x41, 0x00, 0xf9, 0x55, 0xc1, 0x48, 0x53, 0xbe, 0x74, 0xa0, 0x6c, 0xe9, 0x0d, 0xaf, 0x91, 0x93, 0xc3, 0x11, 0x1c, 0x25, 0x33, 0x63, 0x9d, 0x59, 0x79, 0xdb, 0x8f, 0x17, 0x5e, 0x4c, 0xee, 0x75, 0xb1, 0x4d, 0xed, 0xb5, 0xe7, 0x29, 0xf4, 0x99, 0x1f, 0x76, 0xb4, 0xe1, 0x47, 0x8f, 0x27, 0xab, 0x71, 0xa8, 0x3c, 0xb6, 0x53, 0xaa, 0x3b, 0xef, 0x90, 0x97, 0x9d, 0x3b, 0xd1, 0xeb, 0xb3, 0x3a, 0x12, 0x5b, 0x44, 0x8a, 0x73, 0xfd, 0xf0, 0x96, 0x65, 0x25, 0x96, 0x35, 0x94, 0x04, 0x07, 0xb1, 0x5c, 0xdd, 0x95, 0x36, 0xd0, 0x35, 0x08, 0xb3, 0x28, 0xa4, 0xe7, 0x1e, 0x53, 0x91, 0x8c, 0x7d, 0xea, 0x81, 0xb1, 0xac, 0xf9, 0x0d, 0x45, 0xe4, 0xa4, 0xf2, 0x1f, 0x73, 0x92, 0x2a, 0x75, 0x0d, 0x67, 0xe2, 0xa8, 0xf6, 0xd7, 0xa7, 0xab, 0xd1, 0x9f, 0xc1, 0xf8, 0x36, 0x68, 0x1e, 0x21, 0x98, 0xe1, 0x65, 0x57, 0x4c, 0x27, 0x82, 0xc9, 0xcc, 0x85, 0x5b, 0x8e, 0xfe, 0xed, 0x23, 0x4d, 0xa8, 0xa5, 0xbb, 0xb1, 0xd9, 0x9c, 0xff, 0x96, 0x68, 0xb0, 0xf8, 0xad, 0x5a, 0xff, 0xba, 0xf9, 0xc9, 0x2a, 0xcc, 0x8d, 0xc2, 0x41, 0x89, 0x29, 0x83, 0xa2, 0xc3, 0xd0, 0xc5, 0xd2, 0x32, 0x26, 0x74, 0xe9, 0xad, 0xf0, 0x1b, 0xac, 0x29, 0x39, 0x0b, 0x6d, 0x25, 0xe4, 0x01, 0xcc, 0xeb, 0xd2, 0xf2, 0x2f, 0xaf, 0x42, 0xb4, 0x06, 0x64, 0x72, 0x26, 0x56, 0x36, 0xb3, 0x32, 0x31, 0x4a, 0xc2, 0x7c, 0xb8, 0x12, 0x2f, 0x3e, 0xe9, 0x38, 0xf0, 0x13, 0x93, 0x7a, 0xc3, 0x2e, 0xab, 0x9f, 0x90, 0xa5, 0xda, 0xa3, 0x71, 0xaf, 0x34, 0x0b, 0x1a, 0x75, 0x88, 0x16, 0xa3, 0xb3, 0x8f, 0x6e, 0xdb, 0x60, 0x08, 0x4f, 0x30, 0x33, 0xe5, 0x4c, 0xf2, 0x58, 0xcb, 0xef, 0xe6, 0xf7, 0xa8, 0xf2, 0x0c, 0xc1, 0x1a, 0xcb, 0xcd, 0x0f, 0x8f, 0xc0, 0x6a, 0x40, 0x95, 0x18, 0x80, 0x0f, 0x25, 0xe5, 0xb1, 0xf9, 0x91, 0x9c, 0x04, 0x56, 0x04, 0x99, 0x6b, 0xf2, 0x57, 0x03, 0x51, 0x61, 0x0a, 0xff, 0x78, 0xae, 0x23, 0xe3, 0x5a, 0xb5, 0x52, 0xd8, 0xd1, 0xf0, 0x14, 0x80, 0xa2, 0x6b, 0x3e, 0x60, 0x82, 0x70, 0x2d, 0xa6, 0x76, 0xc5, 0x05, 0x0f, 0x75, 0x7c, 0xec, 0xa8, 0x6f, 0x30, 0x24, 0x2f, 0xd2, 0x5b, 0x01, 0x76, 0xfc, 0x38, 0xa7, 0x80, 0xf5, 0x43, 0xfa, 0x1e, 0x3a, 0x16, 0x4e, 0x6f, 0x05, 0xf9, 0x59, 0x03, 0x1a, 0x2b, 0x5b, 0x05, 0x65, 0xa3, 0x48, 0x62, 0x60, 0x60, 0xf9, 0xb5, 0x4b, 0x72, 0x13, 0x69, 0x45, 0x2b, 0xc9, 0xbb, 0x19, 0xad, 0x47, 0xf9, 0x02, 0x9e, 0x54, 0xc5, 0x43, 0xb8, 0x12, 0xe7, 0x13, 0x0e, 0x0e, 0x8e, 0xe4, 0xba, 0xc8, 0xcd, 0x30, 0x0f, 0xfb, 0x76, 0xb1, 0xfa, 0x01, 0x71, 0x70, 0x48, 0x48, 0xd5, 0x94, 0xdb, 0x37, 0xa9, 0xee, 0xed, 0x05, 0x22, 0xcb, 0x99, 0x05, 0x0a, 0x74, 0x7c, 0xf8, 0x22, 0x9a, 0x57, 0xcc, 0xbf, 0xa3, 0x0e, 0x33, 0x09, 0x57, 0x94, 0x60, 0xbe, 0x16, 0x01, 0x77, 0x40, 0x72, 0x40, 0xb2, 0x83, 0x0b, 0x34, 0xd2, 0x8d, 0x8a, 0x4f, 0x9d, 0xa4, 0x65, 0x85, 0x13, 0x9c, 0x9e, 0xd7, 0x19, 0x74, 0xe5, 0x34, 0xdc, 0xf9, 0xf5, 0xb0, 0xb3, 0xaf, 0x64, 0xad, 0x82, 0x9c, 0x3e, 0xd3, 0x0e, 0x23, 0x6a, 0xef, 0x6f, 0x1d, 0x01, 0xca, 0xa9, 0x3d, 0x8a, 0x8b, 0x8b, 0xa2, 0xf1, 0x6d, 0xed, 0x78, 0x57, 0xd3, 0xa0, 0x8a, 0xbb, 0x6a, 0x1d, 0xcb, 0xfa, 0x83, 0x51, 0x0b, 0xad, 0xc8, 0x70, 0xa5, 0x64, 0xb3, 0xa3, 0x09, 0xba, 0xfb, 0xbb, 0x6e, 0x72, 0x0c, 0xed, 0x32, 0x57, 0xab, 0xa6, 0x6c, 0x9c, 0x62, 0x22, 0xc7, 0xd1, 0x75, 0x93, 0xdd, 0x61, 0x1f, 0x3f, 0xed, 0x7f, 0xcb, 0x40, 0x9e, 0x92, 0x74, 0x67, 0x4d, 0x53, 0xbc, 0x9e, 0x13, 0x8a, 0xa1, 0xc8, 0xf6, 0x3b, 0x8b, 0x94, 0x44, 0x1b, 0xcd, 0x4b, 0x84, 0x74, 0xb1, 0x2a, 0xe8, 0x83, 0x4e, 0xfe, 0xb7, 0x95, 0xec, 0x80, 0xff, 0xef, 0x6a, 0xc8, 0xc6, 0x61, 0x5c, 0x36, 0xb0, 0xb3, 0xba, 0x9c, 0x3d, 0xe5, 0x5d, 0xf1, 0x87, 0x37, 0xa1, 0x5f, 0x5f, 0x8f, 0xc5, 0x16, 0xd1, 0xf7, 0x5d, 0xfe, 0xc0, 0xb8, 0xe5, 0x31, 0x0d, 0x71, 0x5d, 0xab, 0x10, 0x8b, 0xc3, 0x73, 0xb1, 0xf0, 0x76, 0x50, 0x5a, 0xf2, 0xfe, 0xf3, 0xa6, 0x4e, 0x8e, 0xe8, 0x6e, 0xeb, 0x87, 0x0b, 0x53, 0x2e, 0x4f, 0x9b, 0xa3, 0x26, 0x33, 0xe9, 0x2c, 0xb2, 0xb3, 0x32, 0xb6, 0x94, 0x72, 0x25, 0xfd, 0x15, 0xb6, 0x85, 0x7c, 0x80, 0xf1, 0xa6, 0xe3, 0x6f, 0xcb, 0x96, 0xf3, 0xb4, 0x0c, 0xdd, 0xc2, 0x23, 0xb5, 0x31, 0xa4, 0xcb, 0x49, 0xf3, 0xb3, 0x0d, 0x0c, 0x71, 0x9f, 0x10, 0x28, 0x55, 0x0c, 0x27, 0x42, 0x7c, 0x0e, 0x92, 0xe9, 0x66, 0x34, 0x25, 0xc9, 0x2e, 0x30, 0x62, 0xf3, 0x47, 0x40, 0xf5, 0x24, 0xdd, 0xe8, 0x30, 0xc0, 0x37, 0x37, 0xdd, 0xe1, 0xd6, 0x00, 0x62, 0xa7, 0x53, 0xda, 0x49, 0xf9, 0x90, 0x2f, 0x20, 0xdc, 0x7e, 0x6d, 0xb3, 0xb0, 0x58, 0x3d, 0x65, 0xfe, 0x9f, 0xb0, 0x27, 0xad, 0x0e, 0x9e, 0x43, 0x0f, 0x9a, 0x37, 0x8b, 0x31, 0x05, 0x6a, 0xb1, 0xf8, 0x3f, 0xb0, 0xd3, 0x2a, 0xfc, 0xe5, 0xf4, 0x25, 0x96, 0x0b, 0xc3, 0x96, 0xf0, 0x02, 0x17, 0xcc, 0xdd, 0xe7, 0x17, 0xea, 0x76, 0xcb, 0x21, 0xe2, 0x34, 0x4e, 0xb7, 0xf4, 0x4e, 0x38, 0x3a, 0x69, 0x9a, 0x38, 0x22, 0x82, 0xff, 0x76, 0x25, 0x13, 0xa2, 0x96, 0xe9, 0x0e, 0xb6, 0x7c, 0xe3, 0x70, 0xce, 0x48, 0xf4, 0xd2, 0x06, 0x31, 0xc6, 0x00, 0xd7, 0xe1, 0x72, 0x15, 0xbd, 0xe5, 0xeb, 0x2f, 0xc2, 0x5e, 0xf1, 0x09, 0x3f, 0x1c, 0xb6, 0xcd, 0x81, 0xdb, 0xec, 0xc6, 0x44, 0xbb, 0xe5, 0x07, 0x78, 0x86, 0x9d, 0x0a, 0xb2, 0xc6, 0xdf, 0x1d, 0x57, 0x64, 0x92, 0x14, 0x58, 0xe5, 0x87, 0x34, 0xff, 0xd4, 0xb8, 0xd7, 0xd4, 0xb0, 0x1f, 0xfd, 0x4d, 0x8c, 0xa4, 0xe9, 0x66, 0x50, 0xb1, 0xf0, 0x95, 0xb8, 0x0f, 0x16, 0x2a, 0xec, 0x7f, 0x49, 0x0d, 0xf8, 0x98, 0x2c, 0xc8, 0xdd, 0x0c, 0xd2, 0xa1, 0x2a, 0x91, 0x6f, 0x31, 0x7c, 0x01, 0x48, 0xa6, 0x68, 0x5e, 0x12, 0x36, 0x51, 0xfa, 0x3d, 0xf9, 0x86, 0x9c, 0x2e, 0x3d, 0x90, 0x5d, 0xb5, 0x11, 0x71, 0x0b, 0x68, 0x68, 0x6e, 0xa5, 0xc2, 0x31, 0xe3, 0xf9, 0xc7, 0xa0, 0xb8, 0x92, 0xe1, 0x54, 0x9e, 0xa7, 0x05, 0xf3, 0x0c, 0x57, 0xa6, 0x10, 0xaf, 0x66, 0xff, 0x2f, 0x1d, 0xba, 0x28, 0x09, 0xa0, 0x80, 0xea, 0x53, 0xbb, 0x9d, 0x2e, 0x73, 0xb6, 0x1b, 0x47, 0x11, 0x67, 0x32, 0xea, 0x83, 0xb3, 0xf1, 0x7b, 0x3b, 0xd3, 0xe1, 0x30, 0xe1, 0x65, 0x41, 0x06, 0x4f, 0x5e, 0xb8, 0xdc, 0xd4, 0x85, 0x48, 0x4d, 0xc8, 0x5a, 0xa6, 0x0f, 0x31, 0x1e, 0xab, 0xa7, 0xf7, 0x72, 0xb7, 0x7d, 0xe6, 0x20, 0xd7, 0x09, 0x84, 0x66, 0x58, 0x8d, 0xfb, 0xc2, 0x4b, 0xee, 0xdc, 0x65, 0x61, 0x47, 0x9f, 0x50, 0x23, 0x8b, 0x13, 0x6f, 0xf6, 0x7f, 0xb6, 0x24, 0x9e, 0xcd, 0xd7, 0xdb, 0xce, 0x28, 0x22, 0xc5, 0x3f, 0xa8, 0x1d, 0x73, 0x49, 0x58, 0x3d, 0xb0, 0x89, 0xae, 0x16, 0x8d, 0xea, 0xc8, 0x97, 0xb3, 0x55, 0x5a, 0x48, 0xda, 0x28, 0xe0, 0x2d, 0xa5, 0x27, 0x96, 0xab, 0xac, 0x3b, 0x0c, 0x97, 0x9e, 0x41, 0xe9, 0x1b, 0xf3, 0x05, 0xd4, 0x77, 0x43, 0xdc, 0x6d, 0x23, 0x11, 0x7b, 0xd0, 0x00, 0x81, 0x04, 0x24, 0xf8, 0xba, 0x0f, 0x34, 0x6f, 0xb1, 0x79, 0xa3, 0x2b, 0x3b, 0xef, 0x28, 0xce, 0x00, 0xe2, 0x4e, 0x2a, 0xb8, 0x07, 0xe3, 0x15, 0x4c, 0x72, 0xc5, 0x96, 0x43, 0x6a, 0xfc, 0xc3, 0xb3, 0x2c, 0x70, 0x6e, 0x87, 0x35, 0x50, 0x7c, 0x59, 0x81, 0x6d, 0x38, 0x3b, 0x83, 0x24, 0x9e, 0x04, 0x9c, 0x5f, 0x5b, 0x12, 0xfb, 0x9c, 0x73, 0x2e, 0x81, 0x3a, 0x38, 0xc1, 0xc3, 0xc4, 0x1d, 0xc6, 0x2e, 0x37, 0xe2, 0xa9, 0x59, 0xc0, 0x91, 0x42, 0x95, 0xad, 0x3e, 0x6b, 0x20, 0xf8, 0xc9, 0x1c, 0xcb, 0xcc, 0x68, 0xbb, 0xa1, 0x20, 0xac, 0x07, 0xf0, 0x40, 0x48, 0x05, 0x65, 0x71, 0x8d, 0x98, 0x6f, 0x11, 0xb5, 0xa7, 0xf3, 0xc2, 0x91, 0x61, 0xd5, 0x08, 0xa9, 0xfb, 0x9d, 0x59, 0x89, 0xb3, 0x0f, 0xc0, 0x40, 0x83, 0x0d, 0x4f, 0x2a, 0x10, 0xa7, 0x8d, 0x8a, 0xae, 0x70, 0x16, 0xcc, 0x96, 0x5b, 0x51, 0x41, 0x4c, 0x5a, 0x97, 0x7d, 0xd8, 0x6d, 0x15, 0xf1, 0xec, 0x54, 0xd2, 0x19, 0x59, 0xa5, 0xcd, 0x6b, 0x4d, 0xd3, 0x7b, 0x29, 0x96, 0x0d, 0x9f, 0xf1, 0x89, 0x12, 0x5c, 0x90, 0x7e, 0x01, 0xb5, 0xc9, 0xb4, 0xb5, 0xeb, 0x03, 0x97, 0xff, 0x36, 0x14, 0x8f, 0x05, 0x72, 0x61, 0x3f, 0x67, 0x90, 0x30, 0x0a, 0xfb, 0xc7, 0x31, 0x04, 0x22, 0xc1, 0x51, 0x4a, 0xe8, 0xe9, 0xce, 0xec, 0xde, 0x18, 0x03, 0x56, 0x7d, 0xbd, 0x5b, 0x37, 0x8b, 0x6e, 0x7d, 0x4f, 0x10, 0x92, 0x22, 0xa2, 0x9a, 0x27, 0xe6, 0xcc, 0x99, 0x1e, 0x63, 0xbb, 0x42, 0x4f, 0x4f, 0x63, 0x44, 0x1a, 0x58, 0xce, 0x35, 0x27, 0xdb, 0x66, 0x8c, 0xce, 0xba, 0x09, 0xc9, 0x47, 0xa5, 0xde, 0x8b, 0x40, 0x88, 0xd1, 0xa4, 0x38, 0xa3, 0x27, 0xc0, 0x89, 0xfb, 0x3c, 0x1e, 0x9e, 0xbb, 0x38, 0x12, 0xbe, 0x2b, 0x16, 0x23, 0xc3, 0xf3, 0xc7, 0xb8, 0xf8, 0xb4, 0x12, 0xd0, 0x01, 0x72, 0x0c, 0xee, 0x9a, 0x1a, 0x84, 0xb8, 0x08, 0xde, 0xe3, 0xac, 0x4a, 0xf2, 0x16, 0x96, 0xbd, 0xa2, 0x34, 0x91, 0xcd, 0xa5, 0xa8, 0xd3, 0xf6, 0xf6, 0xde, 0xb1, 0xfc, 0xf2, 0x3d, 0x86, 0xfe, 0x00, 0x24, 0xd8, 0x27, 0x66, 0xbe, 0xfb, 0xfd, 0xbc, 0x70, 0xa4, 0x21, 0x1e, 0x7d, 0x5f, 0x38, 0xa6, 0x6c, 0xde, 0xd8, 0x65, 0x78, 0xa5, 0x31, 0xc4, 0x99, 0x15, 0x0e, 0x56, 0x59, 0x27, 0xe0, 0x41, 0xeb, 0x65, 0x76, 0x95, 0x2e, 0x4a, 0xf6, 0xdc, 0xfb, 0x3a, 0x44, 0x9b, 0x50, 0xde, 0x31, 0x3e, 0x64, 0x7c, 0x2c, 0xf4, 0x53, 0x8e, 0xfd, 0x86, 0xd2, 0xc8, 0xa9, 0x79, 0x3d, 0x4e, 0x6c, 0xbb, 0x65, 0xe4, 0xff, 0x62, 0xeb, 0xb9, 0x27, 0x8f, 0x1f, 0xf0, 0xec, 0x1c, 0x1d, 0x0e, 0x11, 0x06, 0xec, 0x21, 0xc1, 0xae, 0xf5, 0x0d, 0xff, 0xfa, 0xb4, 0x3c, 0x00, 0xe0, 0xf0, 0x5e, 0x70, 0x1d, 0x02, 0x85, 0x80, 0x74, 0x9e, 0xf9, 0x3e, 0x37, 0x55, 0x1d, 0x03, 0x99, 0x18, 0x24, 0xe6, 0x66, 0x67, 0xb2, 0xe0, 0xf3, 0xf9, 0xbd, 0x3d, 0xe6, 0x4b, 0x13, 0xcf, 0xe5, 0x7f, 0x7c, 0xe1, 0x73, 0x07, 0x55, 0x66, 0x74, 0xd3, 0xef, 0x16, 0x21, 0x96, 0xf9, 0x78, 0x24, 0xa8, 0x50, 0xac, 0x05, 0x0e, 0xaf, 0x7a, 0x08, 0xae, 0xea, 0xe1, 0xe9, 0x1f, 0xb4, 0x39, 0x95, 0x31, 0x71, 0x45, 0x98, 0x83, 0xde, 0x38, 0xe6, 0x36, 0xda, 0x82, 0x3b, 0xf4, 0x7b, 0x0c, 0xa1, 0xb4, 0xf7, 0x8d, 0x08, 0x3c, 0x60, 0x5b, 0x48, 0xb0, 0x60, 0x6d, 0x42, 0x01, 0xc7, 0xeb, 0x33, 0x30, 0x1c, 0x96, 0xae, 0xc6, 0xf0, 0xe2, 0x92, 0x27, 0x3e, 0x5a, 0xd9, 0x25, 0x2e, 0x87, 0x49, 0x91, 0x9f, 0xf5, 0xda, 0x39, 0xc6, 0xfa, 0x21, 0x45, 0x7a, 0x5a, 0x61, 0xd7, 0x28, 0xb7, 0x3d, 0x54, 0x98, 0x5a, 0x79, 0xd8, 0x36, 0xda, 0xb9, 0x84, 0x8b, 0x32, 0x5b, 0x31, 0x0d, 0x77, 0x38, 0x1f, 0xc1, 0xd9, 0x20, 0x35, 0x34, 0xd4, 0xe0, 0xa3, 0xa9, 0x1e, 0xdf, 0x98, 0x40, 0xa2, 0x96, 0xf2, 0x40, 0x0f, 0x0c, 0xbd, 0x75, 0xc9, 0x2c, 0x33, 0x7a, 0x09, 0x08, 0x6d, 0x9e, 0x15, 0xb8, 0x93, 0xa7, 0xaf, 0x40, 0x1d, 0x85, 0x44, 0x74, 0x65, 0x7a, 0x78, 0xaf, 0x22, 0x4d, 0x44, 0x09, 0x58, 0x05, 0x39, 0x03, 0xe0, 0xc7, 0x0b, 0x10, 0x2c, 0x18, 0x5a, 0x86, 0xf1, 0xcb, 0x60, 0x60, 0xec, 0x32, 0x32, 0xe1, 0xbd, 0xec, 0x28, 0x31, 0x6b, 0x19, 0xfb, 0x10, 0x40, 0xc5, 0x1f, 0xc0, 0xd3, 0x1d, 0x30, 0x46, 0x07, 0x66, 0xa1, 0xfc, 0x13, 0xef, 0xcd, 0xb3, 0xcb, 0xc7, 0xa8, 0xa6, 0xcc, 0xe6, 0x9a, 0xb8, 0x56, 0x9b, 0x2a, 0x79, 0x0a, 0x0a, 0x67, 0x00, 0x18, 0x7e, 0xd9, 0xb4, 0xa3, 0xa1, 0xc2, 0xd7, 0xf3, 0xaa, 0x61, 0x19, 0xa4, 0x91, 0xe5, 0xe1, 0x1b, 0x89, 0xb9, 0x87, 0x45, 0xc6, 0xdc, 0x1a, 0x65, 0x3f, 0x90, 0x4f, 0x98, 0x23, 0x00, 0x16, 0x49, 0x2d, 0x6a, 0xa4, 0xc1, 0x86, 0x36, 0x95, 0xe2, 0x2a, 0x55, 0xdc, 0x50, 0x97, 0xf5, 0xf6, 0x63, 0x6b, 0x70, 0x36, 0xe0, 0x52, 0x40, 0x04, 0x57, 0x31, 0x5e, 0x1a, 0xf6, 0xcf, 0xfb, 0xc1, 0xb6, 0x4b, 0x61, 0xdc, 0x11, 0xe5, 0x68, 0x41, 0x3c, 0x58, 0xb0, 0x58, 0x5a, 0xa8, 0xbf, 0x24, 0x3e, 0x54, 0x85, 0x80, 0x1d, 0x90, 0x0d, 0x65, 0xe0, 0x5d, 0xdd, 0x58, 0x0e, 0x35, 0xd1, 0xaf, 0x37, 0x13, 0x5d, 0x5a, 0xb3, 0xfc, 0x3b, 0x88, 0xe0, 0xb5, 0x90, 0x95, 0x46, 0x97, 0x85, 0xfa, 0x07, 0xcf, 0x1f, 0x63, 0x23, 0x2d, 0x59, 0xba, 0x4a, 0xef, 0xbe, 0x62, 0x9f, 0x74, 0x89, 0xa1, 0x77, 0x6a, 0x0c, 0x64, 0xfb, 0xce, 0x8c, 0x96, 0x70, 0x69, 0x54, 0x99, 0x7d, 0xd8, 0x68, 0xcb, 0x1f, 0x16, 0xb4, 0x68, 0xad, 0x3d, 0x94, 0x99, 0x16, 0xd9, 0x97, 0x9e, 0x42, 0xec, 0x39, 0xaf, 0x2d, 0xce, 0xe4, 0xc3, 0x5d, 0x22, 0x21, 0x10, 0xf5, 0xd5, 0x60, 0xfb, 0x7e, 0x25, 0x32, 0x5a, 0x70, 0xe9, 0x22, 0xd3, 0xf0, 0x0c, 0xa9, 0xd9, 0xd8, 0xe1, 0x1c, 0x9b, 0xf1, 0x5a, 0xaf, 0xc2, 0x3e, 0x92, 0x35, 0x5e, 0x2c, 0xbd, 0x77, 0x02, 0x7c, 0x41, 0x9e, 0xbb, 0x7e, 0xf7, 0x66, 0xef, 0xbc, 0x54, 0x91, 0x0d, 0x7c, 0xb7, 0xa0, 0x35, 0x73, 0xe1, 0x5c, 0x88, 0x60, 0xe3, 0x2d, 0x7d, 0xae, 0xa7, 0x6c, 0x95, 0x61, 0xea, 0x2d, 0x08, 0xcf, 0x11, 0xc7, 0xbf, 0xc3, 0x00, 0x2e, 0x5e, 0x86, 0xbf, 0x35, 0x8f, 0xa3, 0xa6, 0xbc, 0x9b, 0x5c, 0x16, 0xcc, 0x5b, 0x04, 0xca, 0x6b, 0x8f, 0x50, 0xbb, 0x38, 0xef, 0x6a, 0xed, 0x60, 0xc8, 0xd8, 0xe1, 0x3d, 0xde, 0x91, 0x0a, 0xed, 0x9f, 0x53, 0xa7, 0xde, 0x07, 0x40, 0x60, 0xf6, 0xbe, 0xa4, 0x09, 0xa8, 0x71, 0xdb, 0xbe, 0x1f, 0x78, 0x43, 0x4a, 0x2d, 0x5f, 0x92, 0xfb, 0x4d, 0xb4, 0xbd, 0xe2, 0x4e, 0x2d, 0x0d, 0x35, 0x78, 0xd3, 0xc2, 0xaa, 0x73, 0x38, 0xac, 0x31, 0x03, 0x9c, 0x43, 0xb3, 0x61, 0xe5, 0x08, 0x8d, 0xbe, 0xfc, 0x8e, 0x67, 0xf4, 0xb4, 0x02, 0x0f, 0x3c, 0xcf, 0xed, 0x8c, 0x22, 0x47, 0xd7, 0xc4, 0x7e, 0xd8, 0xd7, 0xb1, 0x4e, 0x7d, 0xbd, 0xf3, 0x15, 0x38, 0xa6, 0x2b, 0x66, 0xb5, 0xbb, 0x3a, 0x5c, 0xd3, 0xde, 0x34, 0xe8, 0x5b, 0x6f, 0x2a, 0xec, 0xa0, 0xb6, 0x10, 0x41, 0x1c, 0xab, 0xd7, 0x37, 0x59, 0x62, 0x7d, 0x64, 0xad, 0x34, 0x86, 0x3d, 0x34, 0x40, 0x0d, 0x81, 0xd7, 0x6c, 0x5b, 0x0f, 0x6f, 0x13, 0x4f, 0xd3, 0x8f, 0xed, 0xa0, 0x09, 0xad, 0xea, 0x43, 0x4b, 0xdf, 0x0f, 0xde, 0xf5, 0xad, 0x0e, 0x1e, 0x43, 0xdd, 0x4d, 0x4a, 0x31, 0x1a, 0x31, 0x8f, 0x35, 0x74, 0x80, 0xe3, 0x37, 0x9a, 0x3b, 0x2d, 0xc0, 0x46, 0x4b, 0x51, 0x00, 0x9f, 0x47, 0x51, 0xc1, 0x2f, 0xb1, 0x2c, 0x90, 0x68, 0x22, 0xac, 0xef, 0x59, 0xe4, 0x9d, 0xf4, 0x50, 0xce, 0x06, 0xf9, 0xed, 0x42, 0x07, 0x20, 0x67, 0x3f, 0x5d, 0xb3, 0xc1, 0x0b, 0x68, 0x85, 0xf4, 0xe6, 0x72, 0xcf, 0xf3, 0xca, 0x58, 0x4f, 0x46, 0x15, 0x15, 0xf6, 0x31, 0xad, 0x46, 0xb2, 0x52, 0xbd, 0x76, 0x1c, 0x7f, 0x8c, 0x2a, 0x9c, 0xef, 0x77, 0xa5, 0x49, 0xbd, 0x2c, 0x42, 0x02, 0x24, 0x8f, 0xaf, 0x69, 0x4b, 0x0c, 0x57, 0xc2, 0x28, 0x77, 0xe4, 0x8f, 0x20, 0x96, 0xa4, 0xa3, 0x39, 0x3a, 0xac, 0xf4, 0xfc, 0x95, 0x58, 0x41, 0x6f, 0x8c, 0x2d, 0xcb, 0x44, 0xb4, 0x1f, 0x01, 0x17, 0x86, 0x4b, 0x95, 0xa6, 0x82, 0xee, 0x0e, 0x50, 0x38, 0x43, 0x9f, 0xaa, 0x85, 0x61, 0x92, 0x11, 0x26, 0x65, 0xe2, 0x69, 0xe1, 0x9c, 0x91, 0xd1, 0x90, 0x16, 0xf1, 0x78, 0xbf, 0x02, 0xef, 0x06, 0x13, 0x35, 0x36, 0xe0, 0x63, 0x1b, 0xc1, 0xab, 0x6f, 0x14, 0xa9, 0xc7, 0x60, 0xf0, 0x56, 0xaf, 0x02, 0x20, 0xde, 0x35, 0x9c, 0x96, 0x81, 0x0d, 0x3a, 0x70, 0x35, 0x2b, 0xc9, 0xb3, 0xf5, 0x37, 0xec, 0xe2, 0x06, 0xcd, 0x1a, 0x52, 0xbf, 0x96, 0x8f, 0xb8, 0xe1, 0x20, 0xd4, 0x25, 0x26, 0x63, 0x43, 0x05, 0x5c, 0x1c, 0xdd, 0x58, 0x48, 0x70, 0xf4, 0x1b, 0x37, 0xd4, 0xd3, 0xe4, 0xff, 0x8a, 0x41, 0x71, 0xda, 0x56, 0x56, 0x59, 0xb5, 0xc6, 0x9c, 0x44, 0x7e, 0x5b, 0x74, 0x7c, 0x89, 0x75, 0xb0, 0xc5, 0x39, 0xfe, 0xa5, 0x51, 0x25, 0x2e, 0xd2, 0x36, 0x52, 0x46, 0x63, 0xcf, 0x74, 0x6c, 0xa9, 0x23, 0x54, 0x46, 0x4e, 0x5e, 0x01, 0x31, 0x8e, 0xa4, 0x95, 0xcb, 0x85, 0x03, 0x54, 0xa3, 0x62, 0xea, 0x44, 0x87, 0xde, 0xb8, 0x98, 0xcf, 0xf3, 0xec, 0x50, 0x92, 0xdc, 0x79, 0x17, 0x12, 0xbd, 0xc5, 0x91, 0xb1, 0x34, 0x82, 0xa7, 0xe6, 0x3f, 0x76, 0x27, 0xc5, 0xb5, 0xfd, 0x7d, 0x90, 0x13, 0x8e, 0x96, 0xef, 0x8e, 0xac, 0xf2, 0x23, 0xf0, 0x24, 0xc9, 0xd0, 0x58, 0xbf, 0xea, 0xb5, 0x98, 0x84, 0x90, 0x02, 0xcf, 0xa8, 0x9b, 0x0d, 0xf2, 0xac, 0x04, 0x25, 0x9b, 0xd3, 0xce, 0xb6, 0xd5, 0x12, 0xe6, 0x08, 0xbf, 0xef, 0x63, 0x2f, 0x66, 0xb1, 0x99, 0xad, 0x0f, 0x82, 0x7a, 0x1b, 0x4e, 0x9d, 0xc2, 0x6e, 0xc9, 0x9c, 0x75, 0xa5, 0xd7, 0xe9, 0x12, 0xde, 0x28, 0xf0, 0xb3, 0x0a, 0x29, 0xa0, 0x38, 0xaf, 0xfe, 0x97, 0x22, 0x31, 0xec, 0xf3, 0x57, 0xb8, 0x0c, 0x3c, 0x54, 0x95, 0x5b, 0xda, 0x9e, 0x7f, 0xa8, 0xbf, 0x3c, 0xf6, 0x05, 0x4f, 0x03, 0x0b, 0x51, 0xdd, 0x08, 0x42, 0xbc, 0x3f, 0x04, 0x26, 0x07, 0x2e, 0x30, 0xe7, 0xaf, 0x28, 0xb4, 0xa8, 0x74, 0x4b, 0x75, 0xc2, 0x63, 0xf2, 0x2d, 0xba, 0x9d, 0x48, 0x2e, 0x35, 0x90, 0x8e, 0xa3, 0x94, 0x8a, 0x35, 0x1e, 0x7c, 0xcc, 0x9b, 0xfb, 0xc1, 0x1b, 0xaa, 0xb6, 0x47, 0xf1, 0x46, 0x1f, 0xf9, 0xe1, 0xde, 0xed, 0x1a, 0x29, 0xf6, 0xed, 0x79, 0x78, 0xce, 0x96, 0x7c, 0x0b, 0xe6, 0x00, 0x1a, 0x0f, 0xc1, 0xdd, 0x14, 0x68, 0x6a, 0x5a, 0x9e, 0x3b, 0xff, 0x21, 0x20, 0xe0, 0xb5, 0x9b, 0x8a, 0x7f, 0x07, 0x4a, 0xd3, 0x71, 0x4e, 0x89, 0x0e, 0xae, 0x2f, 0x97, 0x57, 0xde, 0xf9, 0x46, 0x6c, 0x6c, 0xd9, 0x7d, 0xfa, 0x0c, 0x3c, 0x1d, 0x46, 0x80, 0x48, 0x22, 0xeb, 0x04, 0x35, 0xdc, 0x16, 0xb9, 0x87, 0x19, 0x85, 0x79, 0xc3, 0x9a, 0x9f, 0x2f, 0x57, 0xb4, 0x1f, 0x5b, 0x01, 0x01, 0xc5, 0xd4, 0x25, 0x2b, 0x21, 0x4d, 0xe7, 0x83, 0x12, 0xa8, 0xbb, 0x28, 0xa1, 0x3b, 0xab, 0x56, 0x55, 0xd3, 0x9a, 0xed, 0x0a, 0x08, 0x18, 0xab, 0xa4, 0x5a, 0xfd, 0x09, 0x47, 0x93, 0x2a, 0x7d, 0xde, 0xe9, 0x4c, 0x52, 0x3c, 0xbb, 0xf7, 0x49, 0xb3, 0x45, 0x24, 0x8d, 0x8f, 0x20, 0x7d, 0x91, 0x35, 0x40, 0xcd, 0xb3, 0x1d, 0xd4, 0xa2, 0xde, 0x10, 0x95, 0xfb, 0x4f, 0x23, 0x6f, 0x93, 0x1d, 0x0c, 0x0d, 0x44, 0x22, 0x09, 0xfd, 0x82, 0xc0, 0x5b, 0xbe, 0xd6, 0xca, 0x3f, 0x05, 0x97, 0x95, 0x2a, 0x28, 0x57, 0xe2, 0xf5, 0x45, 0x74, 0x1c, 0x12, 0xad, 0x06, 0xd8, 0xd0, 0x1e, 0x5e, 0xd4, 0x49, 0x29, 0x27, 0xe5, 0xf7, 0x19, 0xab, 0xa8, 0x05, 0x2f, 0x38, 0xd6, 0xfc, 0xc7, 0x9b, 0x06, 0x25, 0xe0, 0x44, 0x39, 0x7a, 0x4a, 0x3e, 0x11, 0x08, 0x93, 0x8a, 0x15, 0xa5, 0x8e, 0x48, 0x9e, 0x08, 0x2a, 0x74, 0x65, 0x44, 0x50, 0x94, 0xb1, 0xba, 0x96, 0x71, 0x65, 0x8f, 0xdb, 0x44, 0x9e, 0xf0, 0xe8, 0xbe, 0x76, 0xa2, 0xb1, 0xa5, 0x1f, 0xf6, 0xd4, 0x25, 0xe1, 0x85, 0x2d, 0xc5, 0xbd, 0x93, 0xe6, 0x0c, 0x1d, 0xfe, 0x1b, 0x20, 0x2b, 0xb5, 0x57, 0xe1, 0xb7, 0xbd, 0x2f, 0xd2, 0x74, 0x91, 0x35, 0x23, 0x3e, 0x63, 0x66, 0x85, 0xf7, 0xbd, 0x44, 0x2a, 0x37, 0xd1, 0x0c, 0x9a, 0xe3, 0x33, 0x0b, 0x38, 0x55, 0xca, 0xf2, 0xf4, 0x39, 0x63, 0x7d, 0x67, 0xbd, 0x3c, 0xe5, 0xe8, 0x2f, 0x7f, 0x5b, 0x2b, 0xd8, 0xcd, 0xca, 0x1b, 0x1a, 0x58, 0x29, 0x08, 0x60, 0x86, 0x1a, 0x95, 0x61, 0x91, 0x6f, 0x3a, 0x8c, 0x8e, 0x77, 0x76, 0x03, 0x8a, 0x29, 0x29, 0x70, 0x51, 0xf2, 0x84, 0x86, 0xe5, 0x4c, 0x16, 0x10, 0x93, 0x58, 0xc4, 0x32, 0xff, 0x1e, 0xd9, 0x0b, 0x8f, 0x65, 0x01, 0x52, 0x0e, 0x16, 0x19, 0x1e, 0xf5, 0x89, 0x62, 0x8e, 0x14, 0x3d, 0xbd, 0xcd, 0x06, 0x32, 0x42, 0x37, 0x6e, 0xc7, 0x9f, 0x42, 0xd9, 0xd3, 0x48, 0x08, 0x42, 0x4d, 0x2a, 0xed, 0x34, 0xf4, 0xbb, 0x49, 0x05, 0x0a, 0x68, 0x59, 0xdb, 0x80, 0xec, 0x23, 0x30, 0x24, 0xf9, 0x9b, 0xd7, 0xcb, 0x43, 0x36, 0x7f, 0x96, 0xc1, 0x73, 0x9b, 0x9d, 0xcf, 0x8e, 0xee, 0xb7, 0x61, 0x97, 0xc5, 0xba, 0x82, 0x8f, 0x86, 0x7b, 0xeb, 0xbb, 0xff, 0x9e, 0x28, 0x11, 0xff, 0x49, 0x18, 0x04, 0x96, 0x4b, 0x33, 0x94, 0x5b, 0x4f, 0xfd, 0x37, 0x15, 0x82, 0xdb, 0xd3, 0x6b, 0x61, 0xec, 0x78, 0x61, 0xdb, 0xd3, 0x1a, 0x6d, 0xac, 0x4a, 0x50, 0x69, 0x13, 0x33, 0x7a, 0xb9, 0xcb, 0x87, 0x31, 0xf6, 0x59, 0x1d, 0x0f, 0xd7, 0x48, 0x8a, 0x4e, 0xe1, 0x82, 0xfb, 0xad, 0x15, 0x77, 0x90, 0x95, 0xc0, 0x4e, 0xa3, 0xf4, 0x24, 0x24, 0xb7, 0x4f, 0xc9, 0x01, 0x43, 0x43, 0xb6, 0x48, 0x94, 0xa1, 0x5d, 0x2c, 0x4f, 0xd4, 0x24, 0xd0, 0x9a, 0xea, 0xbd, 0x41, 0xae, 0x63, 0x75, 0x34, 0x5a, 0x59, 0xae, 0x13, 0x5f, 0x16, 0xad, 0x7a, 0x62, 0x01, 0x7c, 0xfe, 0x4c, 0x11, 0xbe, 0x9a, 0xd0, 0x05, 0xea, 0x63, 0xfe, 0x17, 0x02, 0x8b, 0xcd, 0x36, 0x5d, 0x58, 0xc2, 0x3d, 0xe1, 0x85, 0x18, 0x08, 0xa0, 0x9c, 0xfe, 0x2b, 0x63, 0xe2, 0xc3, 0xea, 0x1c, 0xe3, 0x04, 0x0e, 0x96, 0x2c, 0x6f, 0xc8, 0xd9, 0xd8, 0x95, 0xa2, 0x2b, 0xab, 0x7c, 0xe5, 0xe8, 0x62, 0xc1, 0x3b, 0x02, 0x35, 0xe5, 0x40, 0x5e, 0x7a, 0x14, 0x87, 0x34, 0x45, 0xaa, 0x97, 0xf7, 0xa7, 0xe9, 0xe3, 0x82, 0xc3, 0xc7, 0x1f, 0xa0, 0x2b, 0x78, 0x96, 0xa4, 0x2f, 0x1d, 0x8e, 0x89, 0x46, 0x1c, 0x8c, 0x48, 0x3f, 0x6d, 0x99, 0x1a, 0x34, 0x8d, 0x2e, 0x3e, 0xce, 0xcc, 0x43, 0x05, 0x66, 0x9d, 0x45, 0xde, 0x55, 0x5e, 0x4c, 0x06, 0x24, 0x32, 0xb4, 0x89, 0xd1, 0x99, 0xa4, 0x3f, 0xbb, 0xb1, 0x12, 0x1f, 0xd7, 0x45, 0x48, 0x52, 0xc1, 0x31, 0x24, 0xb2, 0x3d, 0x34, 0x7f, 0x78, 0x0b, 0xcb, 0xc9, 0xe4, 0x71, 0x42, 0xc6, 0xd6, 0xb3, 0x5d, 0x8b, 0xf2, 0x19, 0x4f, 0xca, 0xb2, 0x00, 0x18, 0xc1, 0x26, 0x7b, 0x16, 0xfa, 0xec, 0x57, 0xd4, 0xb8, 0x4d, 0xd9, 0x12, 0x19, 0x7a, 0xd2, 0x43, 0xea, 0x7a, 0xd1, 0x74, 0x88, 0x6c, 0x7c, 0xc8, 0x0c, 0x6f, 0xbe, 0x82, 0x4f, 0x02, 0x4d, 0x2a, 0x1f, 0xbe, 0x9c, 0x12, 0xc0, 0x6c, 0x37, 0xc9, 0xd6, 0x69, 0x95, 0xce, 0x03, 0xdd, 0xfa, 0x62, 0x65, 0xb4, 0x06, 0xfc, 0x91, 0x11, 0x78, 0xc4, 0x17, 0xe5, 0x18, 0xd1, 0xf2, 0x45, 0xdb, 0x1b, 0xa1, 0xd3, 0x3c, 0xce, 0x10, 0x60, 0xaa, 0x2f, 0x2b, 0x05, 0x5e, 0xb6, 0xaa, 0x82, 0x31, 0x30, 0xa8, 0xe0, 0x25, 0xca, 0x12, 0xd8, 0xf6, 0xc7, 0x82, 0x35, 0xd0, 0x65, 0x10, 0xb8, 0xb2, 0x93, 0x99, 0xc4, 0x7b, 0xf6, 0x3f, 0xe1, 0x7d, 0x59, 0x51, 0xe7, 0xf1, 0x8b, 0x11, 0x18, 0x78, 0x8f, 0x94, 0xba, 0xb9, 0xe2, 0x03, 0xeb, 0x84, 0xf9, 0x62, 0x41, 0x0d, 0x5b, 0xc3, 0xb1, 0x81, 0xdd, 0x23, 0x3e, 0x52, 0xbc, 0x84, 0x8b, 0xa0, 0x4a, 0x2e, 0x11, 0x0e, 0x7a, 0x9d, 0xcb, 0x09, 0xe6, 0xf0, 0xdb, 0x6c, 0x35, 0x82, 0x26, 0xc6, 0xb3, 0x0a, 0xa3, 0x20, 0x91, 0x6b, 0xe4, 0x9e, 0x2a, 0xa0, 0xfd, 0xb6, 0x17, 0xf1, 0x58, 0xfd, 0xae, 0x69, 0xc0, 0x80, 0x30, 0x45, 0x82, 0x18, 0x91, 0x17, 0x9e, 0xbd, 0x1a, 0xf0, 0x05, 0x20, 0x5f, 0x40, 0x3b, 0xc8, 0x53, 0x00, 0x9f, 0x1f, 0x71, 0x20, 0x1f, 0x7c, 0xb5, 0xfd, 0xc1, 0x8d, 0x51, 0xc3, 0x4d, 0x97, 0xf4, 0x26, 0xbb, 0xed, 0x33, 0x5b, 0x09, 0x18, 0x7d, 0x00, 0x16, 0x13, 0x74, 0x53, 0x9a, 0x93, 0xf6, 0xb9, 0x7d, 0x44, 0x0c, 0xfa, 0xf8, 0xaa, 0xa7, 0xc0, 0x6a, 0xbc, 0x2a, 0x09, 0xa7, 0xfa, 0xb9, 0xec, 0x67, 0x0d, 0x22, 0xd5, 0x30, 0xe2, 0x1e, 0x49, 0x5b, 0x19, 0x71, 0x44, 0xc2, 0xca, 0xd6, 0x88, 0x8e, 0xac, 0x49, 0x18, 0x9e, 0x8b, 0x3f, 0x54, 0xa5, 0xee, 0x67, 0xaa, 0x05, 0x8d, 0xf1, 0xcc, 0x10, 0x8e, 0xfb, 0x5b, 0xa6, 0xe7, 0x64, 0x2a, 0xe0, 0xa1, 0x52, 0xcc, 0x99, 0xa2, 0x24, 0xf9, 0x8a, 0xe3, 0xc8, 0x58, 0x08, 0xc2, 0xd7, 0x04, 0x9a, 0xd0, 0x77, 0x68, 0x2b, 0xf4, 0x22, 0x67, 0xe2, 0xd7, 0x6e, 0xfd, 0xbd, 0xe1, 0x94, 0x11, 0x63, 0x47, 0x74, 0x7f, 0xec, 0x44, 0xdd, 0xb0, 0xef, 0xcc, 0x85, 0xee, 0xb1, 0x1a, 0x05, 0x19, 0x09, 0x42, 0x0b, 0xba, 0x98, 0x9c, 0xf2, 0x4a, 0xad, 0x85, 0xa7, 0x0e, 0x29, 0xb1, 0xae, 0xa2, 0x48, 0x19, 0xfc, 0x30, 0x06, 0x73, 0x0d, 0x8b, 0xbb, 0x55, 0x64, 0xb7, 0x93, 0x56, 0x1d, 0xe4, 0x26, 0x87, 0xa8, 0x31, 0xef, 0xfa, 0x3e, 0x7b, 0xd2, 0x0e, 0x40, 0x3e, 0xfe, 0xcd, 0x67, 0x4b, 0x77, 0x40, 0x71, 0x74, 0xd6, 0x80, 0xba, 0xe8, 0x69, 0xae, 0x01, 0x5e, 0xe0, 0xce, 0x04, 0xc2, 0x22, 0x09, 0x9c, 0xba, 0x7a, 0x01, 0x06, 0x56, 0x45, 0x45, 0x3a, 0x40, 0x63, 0x2a, 0x26, 0x4b, 0x50, 0xdd, 0xc6, 0x53, 0x1c, 0x97, 0x97, 0xd1, 0x2b, 0x79, 0x05, 0x2a, 0xdb, 0x04, 0xb4, 0x31, 0x59, 0xf2, 0x92, 0xea, 0x7c, 0x44, 0x4a, 0x08, 0x67, 0x0a, 0x1e, 0xe1, 0xfa, 0x25, 0xa2, 0xb7, 0xee, 0x58, 0xf9, 0x83, 0xc1, 0xa5, 0xd2, 0x32, 0xfe, 0x59, 0x43, 0xf1, 0x16, 0xb0, 0xe2, 0x69, 0x29, 0xff, 0x6c, 0xd3, 0xb7, 0xc7, 0x26, 0x8a, 0x7d, 0x6c, 0xe6, 0x8c, 0x32, 0x34, 0xd8, 0xf5, 0x45, 0x5f, 0x6b, 0x20, 0xc5, 0x89, 0x8a, 0xe8, 0x4a, 0x7f, 0x4e, 0xb7, 0x48, 0xc5, 0x70, 0xa4, 0x0e, 0x34, 0x1c, 0x91, 0x97, 0x54, 0xd6, 0x00, 0xc8, 0xe6, 0xc6, 0xe6, 0x3c, 0x95, 0x77, 0xc3, 0x5a, 0x67, 0xb3, 0x89, 0x1c, 0x53, 0x45, 0xb3, 0x45, 0x6d, 0xe5, 0x2c, 0x8e, 0xc3, 0x19, 0x47, 0xce, 0x2b, 0xda, 0x23, 0x08, 0xe2, 0x4f, 0xc0, 0x7c, 0x4a, 0x19, 0xc5, 0x05, 0x09, 0xa3, 0x4e, 0x36, 0x06, 0x78, 0x52, 0xc0, 0x12, 0x0a, 0x8d, 0xd7, 0x05, 0x44, 0x98, 0x8a, 0x5e, 0xe2, 0xc9, 0xcf, 0xca, 0x31, 0xe0, 0x46, 0xac, 0x54, 0xa6, 0x0a, 0xd4, 0x46, 0x4e, 0xfc, 0xc8, 0x0f, 0x48, 0xbe, 0x5d, 0xfe, 0xfa, 0x52, 0x5f, 0x95, 0x2a, 0x84, 0x3e, 0x26, 0x5d, 0xd7, 0xc3, 0x1a, 0xfd, 0xc7, 0x08, 0x0f, 0x4c, 0xa6, 0x25, 0xfc, 0x64, 0xaa, 0x4b, 0x96, 0xf3, 0x59, 0x40, 0xf1, 0x6f, 0xdd, 0x05, 0xb8, 0xdc, 0xcc, 0xf9, 0x88, 0x9c, 0x4d, 0xb8, 0x60, 0x39, 0xfd, 0xa0, 0xa8, 0x05, 0xcc, 0x06, 0xe6, 0xaa, 0x0a, 0x24, 0x7c, 0x9c, 0xc8, 0x86, 0xbd, 0x54, 0x3e, 0x4a, 0xc1, 0x3e, 0xe3, 0xa4, 0xaf, 0x7d, 0xe9, 0x0c, 0xf4, 0x10, 0xa5, 0xbb, 0x19, 0x66, 0xf7, 0xf4, 0xa3, 0x5a, 0xdf, 0x74, 0x75, 0x69, 0x63, 0x31, 0x07, 0xa7, 0x10, 0xac, 0x3b, 0x42, 0x43, 0x60, 0xcb, 0x22, 0x26, 0x02, 0xde, 0x19, 0xc5, 0x40, 0xaa, 0x84, 0x7a, 0xe8, 0xb9, 0x74, 0x6c, 0xf9, 0x00, 0x21, 0xbe, 0xa6, 0x62, 0x70, 0x72, 0x3f, 0x71, 0xe5, 0x6a, 0x39, 0xe0, 0x60, 0x68, 0x4d, 0x24, 0xb3, 0x66, 0x08, 0xa2, 0x4a, 0xf5, 0xf2, 0x05, 0xd7, 0xeb, 0x76, 0x54, 0x89, 0x1e, 0xbe, 0xe3, 0x95, 0xdc, 0x9c, 0x8c, 0xa5, 0x76, 0x94, 0x2b, 0x0c, 0x82, 0x84, 0x15, 0xb1, 0xfd, 0x57, 0x27, 0xa9, 0x89, 0xd2, 0x06, 0xa2, 0xf5, 0x7b, 0x8f, 0xed, 0xc9, 0x64, 0x72, 0x9a, 0x01, 0x6c, 0xc4, 0x8e, 0x51, 0x09, 0x3d, 0x74, 0x56, 0x74, 0x17, 0xf0, 0xdd, 0xc5, 0x11, 0x6d, 0x62, 0x03, 0x42, 0xa7, 0x34, 0xe0, 0x95, 0x67, 0xbb, 0xb7, 0x55, 0x75, 0x99, 0x1f, 0xc3, 0xe2, 0x27, 0xc3, 0xd5, 0x14, 0x49, 0xa0, 0xf6, 0x4f, 0x73, 0x51, 0x89, 0x7a, 0xcd, 0x85, 0x8f, 0x96, 0xfd, 0x69, 0xca, 0x0c, 0x03, 0x58, 0x33, 0x62, 0x44, 0xdb, 0xde, 0x88, 0x96, 0xfc, 0xdc, 0xd8, 0xf7, 0xd2, 0xc2, 0xb6, 0xa5, 0xbb, 0x4e, 0xca, 0x8f, 0x2b, 0xa9, 0xb7, 0xc7, 0x06, 0x7d, 0xbd, 0x18, 0xb7, 0x69, 0xe6, 0xe2, 0x6a, 0x6c, 0x90, 0x96, 0x1b, 0x5d, 0xda, 0x21, 0x69, 0x0a, 0xfc, 0x3e, 0xc7, 0xcc, 0x71, 0x1d, 0xa0, 0xc6, 0x14, 0x3c, 0xfe, 0x0b, 0x21, 0x47, 0xb1, 0x82, 0x19, 0x59, 0xa0, 0x4e, 0x0a, 0x72, 0xf4, 0xf0, 0xa8, 0x8e, 0x19, 0x36, 0x5a, 0x25, 0xb8, 0xe9, 0xf0, 0xaf, 0xf1, 0xdf, 0x44, 0x4a, 0x8d, 0x87, 0xec, 0xb9, 0x4d, 0x8e, 0xa4, 0x8e, 0xc8, 0x08, 0x70, 0x0b, 0xfc, 0x8b, 0xec, 0x76, 0x86, 0x45, 0x7b, 0x05, 0x52, 0xa7, 0xbc, 0x5c, 0x45, 0x19, 0xcd, 0x4d, 0xd9, 0x1a, 0x6e, 0x00, 0x83, 0x57, 0x05, 0x6c, 0x3c, 0xce, 0xfb, 0x7b, 0xb3, 0xc8, 0x32, 0x24, 0xc4, 0x80, 0x60, 0x1c, 0x72, 0x27, 0xe0, 0xa7, 0xbb, 0x0a, 0xa6, 0xd1, 0x65, 0xab, 0x17, 0xfd, 0x94, 0x68, 0x21, 0xbb, 0x48, 0xe8, 0x64, 0x3c, 0xb7, 0x79, 0x85, 0xe0, 0x98, 0x30, 0xbd, 0x41, 0x9a, 0x58, 0xe4, 0xf4, 0x1b, 0x11, 0xb7, 0xce, 0x93, 0x85, 0x5e, 0x4b, 0x18, 0x3b, 0xa8, 0x26, 0x63, 0x0c, 0xd2, 0x70, 0x10, 0x05, 0x00, 0x31, 0xee, 0xce, 0xeb, 0x1e, 0x97, 0x51, 0x10, 0x64, 0x6b, 0xba, 0x77, 0xec, 0x78, 0x9b, 0x77, 0x77, 0x1d, 0xc3, 0x0c, 0xe4, 0x66, 0xac, 0x8c, 0x7b, 0xad, 0xce, 0xa5, 0xfa, 0x9f, 0x4f, 0x90, 0x41, 0x5e, 0x74, 0xf7, 0xe9, 0x93, 0xde, 0xa3, 0x8f, 0xb8, 0xd2, 0x64, 0x19, 0x20, 0x63, 0x4e, 0x4d, 0xe5, 0xac, 0x90, 0x3b, 0xd3, 0x59, 0xd5, 0x1c, 0x3b, 0xcf, 0xa1, 0x31, 0xec, 0xf0, 0xd3, 0x4a, 0xeb, 0xb2, 0xa7, 0x24, 0x13, 0xc6, 0x17, 0x2b, 0xa4, 0xd2, 0xe0, 0x4d, 0xdc, 0xf1, 0x9f, 0x65, 0x4e, 0x7c, 0xaa, 0x03, 0x9f, 0xc9, 0x61, 0x4d, 0xa1, 0x63, 0x2a, 0x9b, 0x60, 0xd2, 0x5f, 0x28, 0x97, 0xea, 0x24, 0x6d, 0x3d, 0x2b, 0x71, 0x46, 0xb6, 0xbb, 0xaa, 0x4a, 0xba, 0xf9, 0xa7, 0xf1, 0x95, 0x02, 0xb5, 0x90, 0xf1, 0x60, 0xd5, 0x4f, 0x01, 0x4c, 0xcf, 0x97, 0xd1, 0x91, 0xa6, 0x84, 0x41, 0x6b, 0xad, 0x5d, 0x9b, 0x55, 0xf4, 0x0e, 0xc8, 0x7a, 0xd1, 0x84, 0x2b, 0x22, 0xd0, 0x14, 0x06, 0xa3, 0xc2, 0xe8, 0x9e, 0x58, 0x0c, 0x0c, 0x4f, 0x09, 0x12, 0xb6, 0xc2, 0xba, 0xf8, 0xd9, 0x45, 0x65, 0x67, 0x41, 0x80, 0xf5, 0xd6, 0x56, 0xf3, 0xde, 0xa3, 0xe6, 0x70, 0xb7, 0xe8, 0x09, 0x79, 0xb7, 0xf1, 0x89, 0x1a, 0xf0, 0xf3, 0x9f, 0x5e, 0x7b, 0x8d, 0x3b, 0xc2, 0xe1, 0x8a, 0x1e, 0x06, 0xb7, 0xc6, 0x10, 0x26, 0xc9, 0xf3, 0xaa, 0xbc, 0x0e, 0x47, 0x20, 0x79, 0x18, 0xf3, 0x2d, 0x1c, 0xf0, 0x23, 0xdd, 0xcd, 0x5a, 0xff, 0xb4, 0xc8, 0x4d, 0x7b, 0x3f, 0x9c, 0x37, 0x35, 0x60, 0x46, 0xc6, 0x92, 0xb7, 0xf7, 0xdb, 0x64, 0x65, 0x00, 0x6a, 0xc7, 0xbc, 0x7b, 0x27, 0x1f, 0x3e, 0x16, 0x56, 0x59, 0xb7, 0xb5, 0xbe, 0x11, 0xa7, 0x7d, 0xb6, 0x9c, 0x2f, 0x43, 0x5b, 0x73, 0x68, 0x44, 0xf9, 0x57, 0x98, 0x63, 0x60, 0x41, 0xb7, 0xab, 0x09, 0xe1, 0x3d, 0xae, 0x52, 0x42, 0x5a, 0xa0, 0xbb, 0x89, 0x15, 0x43, 0x94, 0x53, 0x2f, 0xbe, 0x6e, 0x10, 0x51, 0xc6, 0x30, 0xf5, 0xf4, 0x32, 0x5b, 0xe0, 0xe8, 0x26, 0xb7, 0x50, 0x0b, 0xab, 0x97, 0x1e, 0xd0, 0xc3, 0x71, 0x5e, 0x80, 0x02, 0x90, 0x0d, 0x3c, 0xda, 0x17, 0x01, 0x15, 0xc7, 0xc7, 0x0f, 0x35, 0x21, 0xd3, 0xa9, 0xa2, 0xeb, 0xd7, 0x18, 0x37, 0x68, 0xd1, 0xc6, 0x5e, 0x7d, 0xca, 0x39, 0x85, 0xcb, 0xfe, 0x0e, 0x17, 0x5b, 0x46, 0x18, 0xce, 0x80, 0xc0, 0x41, 0xd8, 0x61, 0x5a, 0x27, 0x6f, 0x9f, 0x3b, 0xc2, 0x2e, 0xb2, 0x20, 0x69, 0x55, 0xfc, 0x8c, 0xbe, 0x25, 0x5b, 0x66, 0xe5, 0x74, 0x6f, 0x03, 0xc5, 0xa3, 0x4b, 0xb9, 0x45, 0xb0, 0xa2, 0x1c, 0x05, 0x92, 0xc9, 0xbc, 0x68, 0x32, 0xaf, 0x64, 0xff, 0x7c, 0xe1, 0xc7, 0xee, 0x1d, 0x43, 0xcb, 0xaf, 0x0b, 0x7a, 0x35, 0xe1, 0x2d, 0x4b, 0xfa, 0xbc, 0x2e, 0x26, 0xbf, 0x04, 0x07, 0x8c, 0xf8, 0x5a, 0x30, 0x95, 0x13, 0xd9, 0xb9, 0xea, 0x7d, 0x7e, 0x9b, 0x64, 0x09, 0xb0, 0x68, 0xc5, 0x62, 0x1d, 0xac, 0xc4, 0x57, 0xcb, 0x8b, 0x3d, 0xe3, 0xc4, 0x1c, 0xe9, 0x9b, 0x6c, 0x4d, 0xf7, 0xa8, 0x59, 0x58, 0xce, 0x93, 0xa5, 0x18, 0x6f, 0xb6, 0x00, 0xce, 0xe0, 0x40, 0xdd, 0x70, 0x8b, 0x07, 0xaa, 0xd0, 0x1a, 0x13, 0xfd, 0xb4, 0xda, 0xcb, 0x6d, 0xdc, 0x83, 0x46, 0x5d, 0x1f, 0x04, 0x4d, 0x59, 0xe9, 0x68, 0xd5, 0xe6, 0xd5, 0x5e, 0x8d, 0x1a, 0x08, 0xde, 0xc6, 0x89, 0x47, 0xfa, 0x24, 0x4b, 0x9e, 0x9e, 0x35, 0x42, 0x39, 0xff, 0x63, 0x95, 0xd0, 0xf2, 0x03, 0x03, 0x24, 0x3b, 0xf3, 0xe2, 0xd4, 0x26, 0x3f, 0xb5, 0xd8, 0xf7, 0x71, 0x07, 0x01, 0x0d, 0xfe, 0x04, 0xc9, 0x95, 0x11, 0x5c, 0x46, 0x4a, 0xc1, 0xa5, 0xcd, 0x92, 0xc3, 0x39, 0xea, 0x6d, 0x5f, 0x75, 0x09, 0x45, 0x77, 0x9e, 0x61, 0x30, 0xfe, 0xb0, 0x20, 0x8d, 0xa7, 0xc2, 0xda, 0x3e, 0xa1, 0xe2, 0xe0, 0x58, 0x82, 0xcb, 0x77, 0xe9, 0x66, 0x58, 0x6a, 0x06, 0x6d, 0xe8, 0x65, 0xff, 0x01, 0xb8, 0x8c, 0xd1, 0x11, 0x5d, 0xa9, 0xb3, 0x58, 0x62, 0x18, 0x74, 0x80, 0x92, 0xeb, 0xdd, 0xf9, 0x97, 0xa0, 0x2c, 0x8f, 0x6a, 0x0c, 0x1b, 0xa3, 0xd6, 0x20, 0x14, 0xab, 0x3e, 0x5a, 0x59, 0xe7, 0x19, 0xb5, 0xcd, 0x50, 0xbe, 0xaa, 0x3d, 0x3b, 0x2a, 0xf9, 0xa9, 0xf1, 0x1b, 0x3f, 0x10, 0xc3, 0x0c, 0xa4, 0x29, 0x29, 0x4c, 0xc5, 0x21, 0x20, 0xaa, 0xc0, 0x3d, 0xb7, 0x39, 0x73, 0xc4, 0xf6, 0x1a, 0xc0, 0x67, 0x5d, 0xc0, 0x07, 0x5b, 0x0e, 0x53, 0xb7, 0x01, 0x46, 0x2e, 0x95, 0xf2, 0x42, 0xcf, 0x6a, 0x49, 0x2e, 0x82, 0xf8, 0xc8, 0x24, 0xf3, 0x76, 0xa4, 0x7f, 0xf0, 0xbf, 0xf0, 0xbd, 0x25, 0x08, 0x1e, 0xf4, 0x16, 0x39, 0x9d, 0xe6, 0x35, 0xf8, 0xfe, 0xbf, 0x3b, 0xe9, 0xe5, 0x35, 0x33, 0x75, 0xe0, 0x2d, 0x61, 0x2a, 0xb6, 0x01, 0xc6, 0x55, 0x68, 0x10, 0xb5, 0x8f, 0x7b, 0x21, 0x8c, 0x8b, 0x7a, 0x13, 0x8c, 0x82, 0x90, 0x0c, 0x0a, 0x08, 0x3b, 0x64, 0x2a, 0x6c, 0xf1, 0xfc, 0xdb, 0x0c, 0x96, 0xb0, 0xbd, 0x61, 0x01, 0xd2, 0xd9, 0xeb, 0x08, 0x9c, 0xec, 0x00, 0x7b, 0xa7, 0x26, 0x67, 0x45, 0xec, 0x12, 0xbe, 0xd7, 0xfb, 0x0b, 0x9d, 0xa0, 0x7f, 0x78, 0xfa, 0xf6, 0x67, 0xd9, 0x4c, 0x6f, 0xdf, 0xf3, 0xbe, 0x36, 0x2b, 0xa5, 0x3f, 0x90, 0x9c, 0x4e, 0xae, 0x35, 0x49, 0xc2, 0xfb, 0xd3, 0x9c, 0x88, 0xbf, 0xa3, 0x5e, 0x72, 0x4e, 0xff, 0xee, 0x53, 0xd9, 0xc8, 0xf2, 0x7b, 0x3b, 0xf0, 0xca, 0x5c, 0x71, 0xfd, 0x33, 0x40, 0xdb, 0x88, 0x85, 0xed, 0x97, 0x18, 0x4c, 0x58, 0x57, 0xa2, 0x90, 0x1a, 0x18, 0x6c, 0x6f, 0x4c, 0x52, 0x81, 0x9b, 0x14, 0xa8, 0x26, 0x9c, 0x0a, 0x6d, 0x24, 0x5c, 0x8c, 0xc2, 0x53, 0x31, 0x70, 0x5f, 0xa0, 0x00, 0x47, 0xcc, 0xda, 0x28, 0x10, 0xc0, 0xa9, 0x7d, 0x04, 0xef, 0xdd, 0x17, 0x47, 0x4f, 0x80, 0xc0, 0x88, 0xa3, 0xf5, 0xd4, 0x00, 0xde, 0x79, 0x2c, 0xa1, 0x0a, 0x46, 0xcf, 0x23, 0xad, 0x31, 0xaf, 0x65, 0x6f, 0xca, 0x98, 0x67, 0xeb, 0x57, 0x74, 0x24, 0xd1, 0xa9, 0xe7, 0x8d, 0x08, 0x5a, 0x38, 0x25, 0x70, 0x2a, 0xc5, 0x81, 0xa2, 0x56, 0x00, 0x5c, 0x54, 0x68, 0x8e, 0x0d, 0xcb, 0x1a, 0x92, 0x75, 0x87, 0x56, 0x07, 0xbd, 0xa5, 0xbd, 0xe8, 0x80, 0x25, 0xfd, 0x23, 0xf0, 0x5e, 0x09, 0x88, 0x2a, 0x2f, 0xaf, 0x7d, 0x6a, 0x7c, 0x1f, 0x01, 0x75, 0xe0, 0x49, 0x67, 0x46, 0x5c, 0xe1, 0xa6, 0x47, 0xf2, 0x66, 0x46, 0x04, 0xdc, 0x4f, 0x76, 0xec, 0xe5, 0x4e, 0xa7, 0x33, 0xe8, 0x4e, 0xb6, 0x59, 0xf8, 0x09, 0x1f, 0x28, 0x7c, 0x08, 0x67, 0xc0, 0xb6, 0x10, 0xeb, 0x65, 0x4d, 0xed, 0xab, 0x53, 0xf7, 0x58, 0xb7, 0xbb, 0xc8, 0xc5, 0xa0, 0xd5, 0xae, 0xbc, 0x11, 0xf8, 0x26, 0x2d, 0x5c, 0x61, 0x7f, 0xe9, 0x70, 0x6a, 0x55, 0x3b, 0xb9, 0x7d, 0xde, 0xa0, 0xe9, 0xf3, 0x7b, 0x22, 0x5f, 0x6a, 0x55, 0xd0, 0x6f, 0x71, 0x46, 0x25, 0x2c, 0x8b, 0x3e, 0xa3, 0x9a, 0xd1, 0xdb, 0xde, 0x80, 0xd9, 0x93, 0xee, 0x19, 0x89, 0xcf, 0x90, 0xbb, 0xae, 0xb0, 0x2e, 0x0e, 0x7f, 0xd7, 0xdf, 0xa2, 0x91, 0x78, 0x98, 0xc4, 0x51, 0xdf, 0x81, 0x2d, 0x0d, 0x55, 0xed, 0xcb, 0x56, 0xe7, 0xa7, 0xb9, 0x2a, 0xd9, 0x71, 0x83, 0x61, 0x1e, 0x9f, 0xad, 0x23, 0x7b, 0x85, 0xc9, 0xc8, 0x1c, 0x8e, 0xf8, 0xb5, 0x32, 0xfb, 0x0a, 0xab, 0xc3, 0x5b, 0xa1, 0x52, 0x3a, 0x56, 0x27, 0x4c, 0xc4, 0xc4, 0xd7, 0x22, 0x24, 0x9a, 0x98, 0x76, 0x6b, 0x79, 0x73, 0x40, 0x2e, 0x51, 0x68, 0x3f, 0x7c, 0x8d, 0x73, 0xd7, 0x1d, 0xce, 0x57, 0x17, 0xc6, 0x4a, 0xf9, 0x31, 0xb5, 0x2a, 0x44, 0x38, 0x6f, 0xfc, 0x24, 0x2d, 0x65, 0x89, 0x0b, 0xd7, 0xe9, 0x6d, 0xc6, 0xe2, 0x3c, 0x69, 0xf5, 0x13, 0xcf, 0x46, 0x73, 0xd1, 0xb3, 0x85, 0xad, 0x4a, 0x82, 0x74, 0xa2, 0x1c, 0xdb, 0xa9, 0x6d, 0x6a, 0x8f, 0xc7, 0xa0, 0xcd, 0xe7, 0x0b, 0xec, 0xd9, 0xf2, 0x17, 0x13, 0x8b, 0x4c, 0xe7, 0x7f, 0x7a, 0xaf, 0x8d, 0x94, 0x79, 0x66, 0x9f, 0x2d, 0x63, 0x29, 0xf0, 0xfe, 0xea, 0x01, 0x3e, 0xed, 0x26, 0x4b, 0x8b, 0x57, 0x8e, 0x50, 0x95, 0xec, 0x7c, 0x97, 0xf8, 0x74, 0xef, 0x6d, 0xe0, 0x43, 0x92, 0x8c, 0xd9, 0x6f, 0xac, 0x0c, 0x77, 0xec, 0xcd, 0x8a, 0x49, 0x93, 0x37, 0xa9, 0x0f, 0x49, 0x9f, 0xe7, 0x7b, 0x53, 0x40, 0x30, 0x21, 0x00, 0x2b, 0x89, 0xbf, 0x5e, 0x60, 0xa0, 0xbc, 0x03, 0xe2, 0x93, 0x6c, 0x78, 0xaa, 0xe9, 0x67, 0x62, 0x73, 0xf1, 0xbf, 0x99, 0x64, 0x9c, 0x3a, 0x4c, 0x27, 0x14, 0x60, 0xa6, 0xa4, 0x66, 0x88, 0x0a, 0x19, 0x07, 0xea, 0x31, 0x33, 0xb9, 0xf6, 0x6d, 0x85, 0x3d, 0x30, 0x31, 0xc6, 0x7f, 0xaa, 0x30, 0x5c, 0xe2, 0x5d, 0x9a, 0x6c, 0x13, 0xe3, 0x83, 0x41, 0xa3, 0xe6, 0xe8, 0x15, 0xf0, 0x82, 0x14, 0xbf, 0x2c, 0x1e, 0x3b, 0x25, 0xad, 0x11, 0x4a, 0xd3, 0x71, 0x5a, 0x6e, 0x2e, 0x43, 0x35, 0x7a, 0x78, 0x0f, 0x47, 0xba, 0x67, 0xe3, 0xd1, 0x56, 0x7a, 0x6c, 0x17, 0xe9, 0xde, 0xdb, 0x3b, 0xeb, 0x28, 0x6e, 0x1b, 0x37, 0xb1, 0x3c, 0xd6, 0x29, 0xaa, 0x06, 0x61, 0x25, 0x0e, 0x52, 0x38, 0x7c, 0x73, 0x57, 0x19, 0x2c, 0x38, 0xee, 0x18, 0x4f, 0x75, 0xda, 0xbf, 0x79, 0x80, 0x5b, 0x2d, 0xfa, 0x5d, 0x97, 0xb6, 0xe0, 0x83, 0x8a, 0x44, 0x47, 0x18, 0x80, 0xc9, 0x60, 0xee, 0x9d, 0x79, 0xd3, 0xd6, 0xfd, 0x9d, 0x27, 0xfb, 0xad, 0x35, 0x39, 0x90, 0x7e, 0x91, 0xd0, 0xe7, 0x67, 0x57, 0x81, 0xea, 0x6b, 0x8a, 0xe3, 0x1f, 0x8b, 0xfe, 0x3e, 0x8c, 0xb8, 0x19, 0x70, 0xdb, 0x3b, 0x29, 0x16, 0xbd, 0xbd, 0xe3, 0xa8, 0xcf, 0x72, 0x52, 0xa6, 0x22, 0xde, 0x68, 0x01, 0x6d, 0x09, 0xed, 0xc8, 0x4c, 0x24, 0x0f, 0xed, 0x34, 0xac, 0xc9, 0xc7, 0xad, 0x2c, 0x4a, 0x67, 0xe5, 0x9b, 0x58, 0x26, 0x82, 0xe8, 0x5a, 0x7b, 0x3b, 0x8c, 0x20, 0xf3, 0x86, 0x37, 0x9a, 0xc6, 0x10, 0x37, 0x6f, 0x2d, 0xa0, 0x4f, 0x7d, 0xb4, 0x02, 0xf3, 0x49, 0xd0, 0x78, 0xb6, 0x61, 0xe9, 0x86, 0x79, 0xd2, 0x50, 0x06, 0xe5, 0xfa, 0x48, 0x5e, 0x93, 0x3d, 0xbb, 0xe9, 0x82, 0x03, 0xdc, 0xb4, 0xdb, 0x3a, 0x69, 0xe1, 0x49, 0x46, 0xba, 0x3d, 0xd6, 0xf6, 0xf8, 0xdc, 0x79, 0x48, 0xe7, 0x4f, 0x97, 0x66, 0xe9, 0x65, 0xc3, 0x90, 0x86, 0x1b, 0x5a, 0x87, 0x28, 0x81, 0x7c, 0x0b, 0x8f, 0xf4, 0x6a, 0x70, 0xf3, 0x76, 0x97, 0xa0, 0xa2, 0x65, 0xdc, 0x49, 0xbd, 0x64, 0x52, 0xd1, 0x09, 0x40, 0x7e, 0x4d, 0xbb, 0x19, 0xc4, 0x71, 0x9c, 0xa9, 0xb8, 0x95, 0xb0, 0x83, 0x82, 0x56, 0x8b, 0xf1, 0x4a, 0x02, 0x66, 0x72, 0x2f, 0x57, 0x80, 0x8c, 0x42, 0x38, 0xa2, 0xd3, 0x6d, 0x9a, 0x8b, 0x6e, 0xcc, 0xa1, 0x66, 0x5e, 0x10, 0x9a, 0xfa, 0xeb, 0x75, 0x72, 0x65, 0xa0, 0xa4, 0x3d, 0xb7, 0x24, 0x6a, 0xd0, 0x3a, 0x3d, 0x98, 0x47, 0x01, 0x7a, 0x64, 0x13, 0x76, 0xfc, 0x15, 0xd7, 0xa6, 0x70, 0xf1, 0xa1, 0xa2, 0x75, 0x78, 0x48, 0xd7, 0xef, 0xad, 0xfa, 0xa5, 0xff, 0x83, 0xc6, 0x99, 0x8b, 0x35, 0xf1, 0x24, 0xe0, 0x5f, 0x1f, 0x7e, 0xe1, 0xa5, 0xca, 0xc2, 0x70, 0x7a, 0x20, 0x5a, 0xd0, 0xc0, 0x80, 0x45, 0xcf, 0x09, 0xf6, 0x82, 0x59, 0x99, 0x0d, 0x5d, 0xe3, 0xeb, 0xb4, 0x58, 0x40, 0xa9, 0x84, 0xc4, 0x00, 0x67, 0x12, 0x90, 0xf2, 0xfe, 0x5b, 0x3c, 0x1e, 0xbb, 0xc7, 0xff, 0xb1, 0x87, 0x90, 0xdb, 0xff, 0xd3, 0x76, 0xea, 0xf4, 0xd4, 0x07, 0x99, 0xb7, 0x72, 0x5e, 0xd7, 0xba, 0xf4, 0xd3, 0xd7, 0xb7, 0x9b, 0xaa, 0x9d, 0xb0, 0x94, 0x8d, 0x4b, 0xba, 0x7a, 0x79, 0xe2, 0xb6, 0x88, 0x1e, 0x40, 0x13, 0x87, 0x9d, 0xa4, 0x95, 0xe4, 0x47, 0x13, 0x8e, 0x78, 0x3e, 0x80, 0x3e, 0xca, 0xe4, 0x3b, 0x84, 0xd2, 0x89, 0x95, 0xfb, 0x3c, 0x9d, 0x08, 0xbf, 0x01, 0xe4, 0x39, 0x05, 0x62, 0xb1, 0xa7, 0x5e, 0xea, 0x59, 0x1a, 0x73, 0x12, 0x40, 0x9e, 0x3f, 0x6a, 0x4b, 0xa0, 0xf9, 0x74, 0x76, 0x22, 0x68, 0x12, 0xd5, 0x26, 0x72, 0xa5, 0x7d, 0xd1, 0x86, 0xfb, 0xf0, 0x27, 0x60, 0xbe, 0x7b, 0xfd, 0xf0, 0x94, 0x82, 0xf3, 0x91, 0xe3, 0x46, 0xe3, 0xdf, 0xad, 0xca, 0xcf, 0x56, 0x9f, 0x2b, 0xad, 0xcd, 0xca, 0xc7, 0x35, 0x73, 0xa7, 0xe9, 0xf0, 0x8a, 0x0b, 0x2f, 0x5b, 0xcf, 0x20, 0xef, 0x60, 0xd3, 0x18, 0x48, 0x84, 0xaf, 0xa7, 0xd9, 0x34, 0x17, 0x57, 0xc7, 0x1e, 0x15, 0x88, 0x8a, 0x24, 0x45, 0x19, 0xea, 0x33, 0xe1, 0x37, 0xbc, 0xce, 0xfe, 0x3f, 0x51, 0x36, 0x6c, 0xac, 0xce, 0xb8, 0x30, 0x17, 0x2e, 0xb8, 0x19, 0xa6, 0xec, 0xf9, 0xfc, 0x8f, 0x86, 0x76, 0xf5, 0x32, 0x42, 0xcd, 0x9d, 0x6c, 0x8c, 0x9c, 0x4d, 0x76, 0x91, 0xa6, 0x56, 0x23, 0x62, 0x28, 0x06, 0x0b, 0x71, 0x9d, 0xa1, 0x72, 0xa2, 0xb6, 0x7a, 0x5c, 0x2b, 0x5d, 0x7d, 0x18, 0x57, 0xb3, 0x2a, 0xc7, 0xd1, 0xfc, 0xee, 0x75, 0xce, 0xac, 0xae, 0x16, 0x1e, 0xeb, 0x37, 0x04, 0x3b, 0xb4, 0xf8, 0x32, 0x4e, 0x66, 0x7a, 0xd9, 0x53, 0x55, 0x10, 0x11, 0xaf, 0xf7, 0xba, 0x51, 0x4b, 0xd5, 0xb1, 0xe3, 0x3b, 0x99, 0x95, 0xf5, 0x86, 0x79, 0x94, 0xe0, 0xb4, 0xe0, 0xf0, 0x81, 0x71, 0x52, 0x6a, 0x05, 0x9e, 0x64, 0xbb, 0x09, 0x99, 0x1e, 0x20, 0x65, 0x4a, 0x41, 0x52, 0x95, 0xe8, 0x04, 0x42, 0xe2, 0x0b, 0xce, 0xa8, 0x7d, 0x8a, 0xff, 0xd3, 0x45, 0x28, 0x7a, 0xd4, 0xc6, 0xdd, 0x36, 0xda, 0xde, 0x8d, 0x74, 0x4f, 0x29, 0x9d, 0xed, 0xf0, 0xe2, 0xb3, 0x19, 0xa0, 0x50, 0xd3, 0x54, 0x24, 0x4c, 0x69, 0x6f, 0xb0, 0x3c, 0xef, 0x39, 0x3e, 0x92, 0x10, 0x0e, 0x4c, 0x6e, 0xc9, 0xe2, 0x0b, 0x7f, 0x95, 0xc6, 0xe6, 0x52, 0xfc, 0x89, 0x56, 0xfe, 0x8e, 0x7b, 0x54, 0x66, 0xbb, 0xeb, 0x22, 0x12, 0x94, 0xd0, 0x10, 0x3b, 0x57, 0x6e, 0x62, 0x03, 0xa5, 0xac, 0x1a, 0xbf, 0xb6, 0x17, 0xba, 0xff, 0xc5, 0x6f, 0x67, 0x76, 0x69, 0x14, 0xd7, 0xe2, 0x8f, 0x9a, 0xa3, 0xb6, 0x49, 0x96, 0x58, 0x30, 0xa1, 0x6c, 0x80, 0xa1, 0xc4, 0xdd, 0x3f, 0x02, 0x0e, 0x7e, 0x46, 0x97, 0xf1, 0x17, 0x6a, 0xed, 0xde, 0x9b, 0x86, 0x11, 0x7d, 0xd2, 0x47, 0xb1, 0xc2, 0xf0, 0xcf, 0xb4, 0x9e, 0x1b, 0x77, 0x16, 0x3d, 0xcf, 0x01, 0x6b, 0x46, 0x3e, 0x08, 0x4a, 0xd5, 0x28, 0x31, 0x79, 0xc4, 0x3e, 0x4b, 0xb9, 0xd5, 0x57, 0x35, 0x69, 0xbe, 0x8c, 0x81, 0x36, 0x4c, 0x19, 0x30, 0x56, 0xb4, 0x5b, 0xfe, 0xe0, 0x93, 0x05, 0x5b, 0x2a, 0xf5, 0xed, 0x1e, 0xfe, 0x37, 0x44, 0x73, 0x05, 0xd9, 0x85, 0x0e, 0xd7, 0x48, 0x88, 0x40, 0xb4, 0xdd, 0xfb, 0x02, 0x19, 0x1b, 0x3b, 0x8f, 0xad, 0xfb, 0xf9, 0xec, 0x2a, 0x76, 0xb6, 0xb5, 0x49, 0xbc, 0x71, 0x24, 0x22, 0x4a, 0xf1, 0xee, 0x2b, 0x51, 0x55, 0x5c, 0x3a, 0x45, 0x66, 0x94, 0x41, 0xb0, 0x29, 0x98, 0x24, 0x06, 0x0c, 0x71, 0xde, 0xd0, 0xe9, 0xeb, 0x12, 0x9e, 0xc3, 0x94, 0x84, 0x6d, 0xc0, 0x47, 0x4c, 0xb1, 0x79, 0x82, 0xe5, 0x1b, 0xc5, 0xb3, 0x3b, 0xa8, 0xa2, 0x21, 0x93, 0xf3, 0x19, 0x99, 0x33, 0x7a, 0xad, 0x2d, 0xba, 0xc3, 0x01, 0x0b, 0xc0, 0x24, 0x25, 0xff, 0x84, 0x4e, 0xeb, 0x2c, 0xae, 0xd9, 0x46, 0x45, 0x31, 0xaf, 0xab, 0x42, 0xd4, 0xf0, 0x88, 0xa1, 0x24, 0x23, 0x66, 0x1b, 0x2c, 0x49, 0x7c, 0x78, 0x6c, 0x9c, 0xba, 0xa1, 0x2b, 0x2f, 0x0d, 0xfb, 0x9f, 0x20, 0x9f, 0xe7, 0x7f, 0xdf, 0xf6, 0xf3, 0x7d, 0x81, 0xdc, 0x56, 0x43, 0xca, 0x70, 0x5f, 0xce, 0xd0, 0x7c, 0xf0, 0xa2, 0xbe, 0x3b, 0x72, 0xc9, 0x4c, 0xfc, 0xf3, 0xdc, 0x0d, 0x69, 0x04, 0x7d, 0x7d, 0xd2, 0x8b, 0x27, 0x96, 0xe3, 0x48, 0x7b, 0xb6, 0x4b, 0x03, 0xe5, 0xfd, 0xad, 0x4b, 0x8c, 0x88, 0x7b, 0x44, 0x8f, 0x1b, 0x05, 0xab, 0x1a, 0x56, 0xfc, 0xd2, 0xac, 0xba, 0x8f, 0x06, 0xdb, 0x99, 0xed, 0x7c, 0x61, 0x9d, 0xbb, 0x6e, 0xb2, 0x31, 0x29, 0xc4, 0xfb, 0xdc, 0x4b, 0xa2, 0xfc, 0x25, 0x7d, 0xe0, 0xd5, 0x4f, 0x14, 0xa0, 0xc3, 0x63, 0xa2, 0xa4, 0x3d, 0x46, 0xd0, 0x28, 0x36, 0x9e, 0x69, 0xc3, 0x57, 0xf1, 0x8f, 0xe2, 0x53, 0x0f, 0x65, 0x14, 0xe5, 0x5c, 0xcd, 0x41, 0xb5, 0x71, 0xfc, 0x12, 0xc1, 0x4a, 0x91, 0x57, 0x7a, 0x9d, 0x02, 0xd3, 0x70, 0x23, 0x5e, 0xab, 0x49, 0x1d, 0x26, 0xc8, 0x4a, 0x09, 0xb9, 0xf4, 0x6a, 0x1c, 0x6b, 0x6c, 0x5d, 0x43, 0x63, 0x74, 0x3f, 0x18, 0x69, 0x35, 0x02, 0xda, 0xb7, 0xe7, 0x73, 0xed, 0x1b, 0xfd, 0x85, 0xa0, 0x41, 0xce, 0x93, 0xe2, 0x9c, 0x81, 0x02, 0x17, 0xe0, 0xdd, 0x58, 0xa9, 0xb3, 0x36, 0x72, 0x05, 0x56, 0x6e, 0xf8, 0x99, 0x32, 0x19, 0x2f, 0xfa, 0xa6, 0x91, 0x96, 0xee, 0x19, 0x63, 0x90, 0x85, 0xc2, 0xd6, 0x87, 0x1b, 0x37, 0x25, 0xd2, 0x42, 0xd9, 0x38, 0x8e, 0xb5, 0x7d, 0x47, 0x44, 0xde, 0x25, 0x67, 0x71, 0x1b, 0x12, 0xb5, 0x80, 0x1c, 0x0e, 0x41, 0xa7, 0x6c, 0x2c, 0x7f, 0x23, 0x12, 0x19, 0x3c, 0x5d, 0xed, 0x9f, 0x10, 0x1e, 0x81, 0xf9, 0x69, 0xf7, 0x20, 0x77, 0x4e, 0x2b, 0x17, 0xcc, 0xc5, 0x14, 0x17, 0x4d, 0x12, 0xdd, 0x6d, 0x94, 0xee, 0x55, 0x30, 0x26, 0xb6, 0xc3, 0x99, 0xb9, 0x4a, 0xd2, 0x6e, 0x7d, 0xef, 0x45, 0x68, 0x7a, 0xcd, 0x65, 0x86, 0xdb, 0x47, 0x2c, 0xd3, 0xef, 0x6e, 0x66, 0x5b, 0xde, 0xb9, 0xe8, 0x24, 0x1d, 0xf6, 0xc5, 0x90, 0x87, 0xaa, 0xc3, 0x99, 0x99, 0x67, 0xd2, 0xaf, 0xfa, 0x49, 0x63, 0x79, 0x6e, 0x50, 0xef, 0xaa, 0x04, 0xec, 0xe0, 0xf2, 0x11, 0x22, 0x08, 0xd2, 0x27, 0x83, 0x12, 0xee, 0x2e, 0x9d, 0x43, 0xee, 0xd4, 0x0d, 0x76, 0xb4, 0xf3, 0xc0, 0x64, 0x4b, 0x86, 0x9f, 0x12, 0xfd, 0xf7, 0xac, 0x52, 0x45, 0x77, 0x88, 0x8f, 0x12, 0x9e, 0x75, 0x8f, 0x62, 0xe8, 0x3d, 0xeb, 0x6c, 0x1a, 0x56, 0xa9, 0x6a, 0x2e, 0x7d, 0x71, 0x9a, 0xc2, 0x88, 0xa5, 0x1a, 0xca, 0x79, 0x1c, 0x10, 0x79, 0x26, 0xd1, 0x2b, 0xe7, 0xec, 0x85, 0xa2, 0x3b, 0x11, 0xb5, 0xf4, 0x3c, 0x52, 0xa2, 0x92, 0xf2, 0xf4, 0x22, 0x91, 0xe5, 0x32, 0x13, 0x9b, 0x69, 0x85, 0x4b, 0x5e, 0x70, 0xe8, 0x22, 0xa2, 0x06, 0x75, 0x5a, 0x01, 0x19, 0x83, 0xac, 0xe0, 0x30, 0x6e, 0x29, 0x94, 0x26, 0xdd, 0x4a, 0x83, 0x0a, 0x54, 0xc3, 0xa8, 0x9c, 0xd4, 0x78, 0x7a, 0x05, 0x67, 0x00, 0xdc, 0x4b, 0x37, 0x81, 0x7d, 0xe8, 0x11, 0xff, 0xba, 0xdb, 0xbc, 0x73, 0x8c, 0x0e, 0x3f, 0xd1, 0x4e, 0x04, 0xd9, 0x5e, 0x8a, 0x0f, 0x6e, 0xce, 0xb5, 0x7f, 0x8c, 0x52, 0x43, 0x85, 0xf1, 0xbf, 0xe9, 0x5b, 0xaa, 0x92, 0x69, 0xcc, 0x02, 0xae, 0xd9, 0x96, 0xe6, 0x5c, 0x80, 0x89, 0xe1, 0x0d, 0x4a, 0xe4, 0xa8, 0x94, 0x7d, 0x8e, 0x6e, 0x53, 0x68, 0x2c, 0xbd, 0x83, 0x1e, 0xbb, 0xaa, 0xc4, 0x42, 0xf4, 0xc5, 0x2a, 0x49, 0x97, 0x0c, 0x96, 0xf0, 0xac, 0x0e, 0xd4, 0xcf, 0x74, 0x8f, 0xcf, 0xab, 0x5f, 0x48, 0xcb, 0x3a, 0x82, 0x1c, 0xec, 0x24, 0x5e, 0x75, 0xed, 0x58, 0xdd, 0xd6, 0x16, 0x45, 0x32, 0x43, 0xf1, 0x71, 0x87, 0xa1, 0xb8, 0x7f, 0x36, 0x36, 0x29, 0x52, 0x42, 0xd7, 0x22, 0xe6, 0xd9, 0xf3, 0xf0, 0xf0, 0x28, 0x3f, 0x76, 0xd7, 0xe9, 0xcb, 0xd3, 0x31, 0xf8, 0x3e, 0x9f, 0x40, 0x67, 0x5d, 0x61, 0x38, 0x74, 0x6f, 0x3e, 0x35, 0x7d, 0x66, 0xa7, 0xac, 0x5c, 0x03, 0x03, 0x53, 0xf8, 0xc3, 0x73, 0x15, 0xcd, 0x70, 0x4f, 0xbc, 0x3b, 0x98, 0xf3, 0x65, 0xd3, 0xe3, 0xde, 0x4c, 0x5f, 0x41, 0xe7, 0x9a, 0x47, 0x3e, 0x11, 0x16, 0x99, 0xc3, 0x8d, 0xc0, 0x63, 0x1e, 0x05, 0xb2, 0x38, 0xb5, 0xdb, 0x63, 0x40, 0x5f, 0xbe, 0xb8, 0xc8, 0xdb, 0x44, 0xb5, 0x1d, 0xb0, 0x71, 0x53, 0x3c, 0xd4, 0x74, 0x8d, 0xfa, 0x44, 0x64, 0x6d, 0xf5, 0xd4, 0x68, 0xa7, 0x2f, 0x64, 0xb2, 0x82, 0x91, 0xac, 0x2e, 0xea, 0x60, 0x9d, 0x4a, 0xac, 0x32, 0x7c, 0xab, 0xa1, 0xdd, 0x8b, 0x31, 0xaa, 0x3a, 0x47, 0xb2, 0x09, 0x19, 0xa1, 0x51, 0x2c, 0xbc, 0xe4, 0x80, 0x3b, 0xce, 0xf1, 0x47, 0xb1, 0x86, 0x5f, 0x45, 0xd2, 0x51, 0x4a, 0xe6, 0x1c, 0x67, 0x6c, 0x9e, 0x31, 0xe2, 0x14, 0xa8, 0xd1, 0x4d, 0xbd, 0x89, 0x6c, 0x4a, 0x27, 0x41, 0x74, 0xd3, 0x39, 0xef, 0xc6, 0xfe, 0xdf, 0xe7, 0x90, 0x5d, 0x5c, 0xf2, 0xbb, 0x29, 0x72, 0x15, 0x98, 0x19, 0xbd, 0x0d, 0x1a, 0x05, 0x22, 0xc3, 0xd1, 0x50, 0x35, 0x41, 0xf6, 0x7b, 0xc8, 0x38, 0x9b, 0x6a, 0x2b, 0x53, 0x3a, 0xd9, 0x4a, 0x6c, 0xdc, 0x12, 0xac, 0x72, 0x22, 0x44, 0x63, 0x72, 0xc2, 0x01, 0x1f, 0x69, 0xfb, 0xad, 0x63, 0x62, 0x9d, 0x8d, 0x91, 0x1a, 0xf9, 0x31, 0xe9, 0x7e, 0x90, 0x6f, 0x66, 0xd3, 0x3e, 0xbc, 0xe7, 0x7d, 0xc2, 0x32, 0x98, 0x5c, 0x3a, 0xed, 0x70, 0x20, 0x34, 0xe7, 0x10, 0x12, 0x9d, 0x4b, 0xdb, 0xa4, 0x6d, 0xcf, 0x01, 0x3e, 0x3e, 0xdd, 0x01, 0xe8, 0x0e, 0x20, 0x1f, 0xa2, 0x90, 0xd7, 0xb1, 0x9b, 0xe6, 0xe9, 0x55, 0x62, 0x0e, 0x22, 0x4a, 0x3f, 0xd3, 0x57, 0x34, 0x03, 0x36, 0x8d, 0x72, 0xc9, 0x14, 0xdd, 0x9a, 0x93, 0xbb, 0x61, 0x93, 0xa2, 0xcf, 0x44, 0x2b, 0x30, 0xf5, 0xf8, 0x45, 0x5a, 0x50, 0xdb, 0xa3, 0x2a, 0x6e, 0x11, 0x05, 0xa8, 0x96, 0x8d, 0x2d, 0x12, 0xaf, 0x3c, 0x0c, 0x4b, 0xae, 0xca, 0xcc, 0x89, 0x27, 0x94, 0x28, 0xd8, 0x48, 0xac, 0x18, 0x15, 0x85, 0x7b, 0xb4, 0xb6, 0xa4, 0xce, 0x6e, 0x02, 0xb1, 0x76, 0xae, 0x34, 0x3d, 0x8d, 0x53, 0xc6, 0xa9, 0xd6, 0x04, 0xda, 0xcf, 0xfa, 0xbf, 0x90, 0x50, 0xa4, 0x9c, 0x49, 0xdb, 0x11, 0x30, 0xf4, 0x3a, 0x5b, 0x61, 0x4e, 0x8b, 0x19, 0xf9, 0xbf, 0xe2, 0x5f, 0xea, 0xd9, 0x0d, 0x11, 0x08, 0x54, 0x6a, 0x15, 0x19, 0xb5, 0x02, 0x3b, 0x1f, 0x6a, 0xd1, 0x98, 0xef, 0x4a, 0x7f, 0x25, 0x09, 0xb5, 0x9c, 0x63, 0x32, 0xa8, 0x5e, 0xd6, 0xc9, 0x75, 0x52, 0xb6, 0x24, 0x17, 0xe5, 0xa6, 0x29, 0x1c, 0x5a, 0x3f, 0xa1, 0xb7, 0x2e, 0x6c, 0x36, 0x3c, 0x9f, 0x25, 0xb6, 0xc6, 0x2a, 0xfb, 0xc2, 0x43, 0xda, 0xe6, 0xc8, 0x14, 0xa0, 0x60, 0xea, 0x08, 0xfd, 0xda, 0xe5, 0xd8, 0xeb, 0x00, 0xee, 0xd3, 0xbc, 0x32, 0x43, 0x5b, 0x1a, 0x62, 0x12, 0x18, 0xbd, 0x02, 0x51, 0xcc, 0xdb, 0xa8, 0xb0, 0x71, 0x47, 0x81, 0x80, 0x2c, 0x64, 0x61, 0x74, 0x9c, 0x17, 0x9d, 0x19, 0x01, 0x76, 0x84, 0x6d, 0x50, 0x4e, 0x59, 0x50, 0x9d, 0x22, 0x3d, 0xaf, 0x83, 0x50, 0x7d, 0x55, 0x67, 0x7f, 0x06, 0x55, 0xd1, 0x39, 0x3c, 0x93, 0x5a, 0xbd, 0xbe, 0x39, 0xe9, 0x79, 0xf3, 0x8a, 0xc7, 0xfe, 0x5f, 0x3c, 0x92, 0x72, 0x69, 0x03, 0x4e, 0x02, 0x7a, 0xfc, 0x64, 0xa6, 0xbe, 0xa7, 0x36, 0x07, 0x84, 0x44, 0x1e, 0xcb, 0x10, 0xc4, 0x60, 0x7c, 0x50, 0x7a, 0xdd, 0x10, 0xa8, 0xd6, 0x0a, 0x34, 0xd2, 0x52, 0x40, 0x7b, 0x33, 0xc4, 0x00, 0x8e, 0x21, 0x4f, 0xeb, 0xae, 0xd5, 0xda, 0xeb, 0x76, 0x9a, 0x60, 0x63, 0x2b, 0xcb, 0x48, 0xff, 0x06, 0x00, 0x22, 0x60, 0x25, 0xa4, 0xd5, 0x0e, 0x56, 0x63, 0xa1, 0x0e, 0x85, 0x13, 0x3f, 0x9a, 0x95, 0x18, 0xc3, 0x96, 0xd2, 0xbb, 0xea, 0xb0, 0xac, 0x1c, 0x0f, 0x9a, 0x9f, 0xf1, 0xaf, 0x4f, 0x4b, 0xef, 0x9a, 0x20, 0x26, 0x33, 0x82, 0xdb, 0x20, 0xb6, 0x2c, 0x34, 0x3e, 0x42, 0x46, 0x2e, 0x0b, 0xd2, 0x89, 0x97, 0x3a, 0x4b, 0x82, 0x17, 0x97, 0x2c, 0x96, 0x1e, 0xb9, 0xc4, 0x79, 0x6d, 0x94, 0x76, 0x26, 0x6f, 0x4c, 0x73, 0x2d, 0x6f, 0x4a, 0x9d, 0xff, 0x9a, 0x70, 0xdc, 0x73, 0x3a, 0xf0, 0x9d, 0x62, 0x17, 0xf4, 0x37, 0xfb, 0xc8, 0xae, 0x43, 0xa7, 0x29, 0x01, 0xb2, 0x60, 0x32, 0x15, 0xbc, 0xb9, 0xef, 0x6e, 0x74, 0x58, 0x44, 0xb0, 0xfa, 0x28, 0x13, 0x73, 0x02, 0xeb, 0xa4, 0xdb, 0x57, 0xcf, 0x75, 0x5e, 0x82, 0x9e, 0x0e, 0x40, 0xe9, 0xf1, 0x2f, 0x88, 0x5e, 0x21, 0xda, 0xad, 0x35, 0xce, 0xfa, 0x39, 0x30, 0x69, 0x1d, 0x97, 0xaf, 0xa8, 0x16, 0x7d, 0x1f, 0xcf, 0xcf, 0xef, 0xe9, 0x60, 0x55, 0xc6, 0xfa, 0x76, 0xc3, 0x26, 0x07, 0x14, 0x29, 0x2f, 0x9a, 0x8e, 0xbb, 0xae, 0xee, 0x44, 0xf3, 0x56, 0x46, 0x1d, 0x4c, 0x13, 0x02, 0x4c, 0xef, 0xf1, 0x6f, 0x44, 0x08, 0xa6, 0x63, 0x26, 0xef, 0xb6, 0x1c, 0xcb, 0x17, 0x13, 0x88, 0xdf, 0xf5, 0x14, 0x3f, 0xfd, 0x04, 0xa3, 0xf7, 0x93, 0x87, 0x57, 0x4e, 0x78, 0x81, 0xaf, 0xe3, 0x30, 0xb3, 0x91, 0x19, 0x87, 0x60, 0xbe, 0x75, 0x71, 0xe6, 0x40, 0xf8, 0x5a, 0xb0, 0x3e, 0xe1, 0x1a, 0x2c, 0xf0, 0xdf, 0xe9, 0xbb, 0xc6, 0xde, 0xd0, 0x5b, 0x8e, 0x77, 0x7c, 0xde, 0x6b, 0x30, 0x96, 0x23, 0xe4, 0xa6, 0x77, 0x6a, 0x71, 0x94, 0xeb, 0x86, 0x70, 0x6e, 0xfb, 0xc3, 0x5c, 0xff, 0x3e, 0x6c, 0x1b, 0x4c, 0x4b, 0xac, 0x9a, 0xcf, 0x84, 0xa4, 0x92, 0x12, 0xc4, 0x5f, 0xbb, 0x37, 0xe9, 0x36, 0xc3, 0x42, 0x25, 0x07, 0xd1, 0xce, 0x97, 0x56, 0x5c, 0xd5, 0x26, 0x6f, 0xa2, 0x18, 0x86, 0xf7, 0xfb, 0x24, 0x83, 0x64, 0xd1, 0xb1, 0x1f, 0x0d, 0x79, 0xc4, 0x4f, 0x1c, 0x38, 0x45, 0x6e, 0x05, 0xd1, 0x62, 0xd1, 0x95, 0x5d, 0x69, 0x87, 0xc6, 0xa7, 0x2c, 0xa9, 0xf1, 0xfb, 0xc1, 0xec, 0x36, 0x52, 0x4d, 0x00, 0x6a, 0xff, 0xfb, 0x28, 0x2a, 0xf7, 0x59, 0xe0, 0x80, 0xcc, 0xa7, 0xab, 0x9b, 0xd7, 0xeb, 0xa2, 0x72, 0x10, 0x38, 0x11, 0x08, 0x40, 0x48, 0xcb, 0xcf, 0xe4, 0x03, 0x16, 0xe3, 0x40, 0x1b, 0x71, 0x3a, 0x2d, 0xa9, 0x8d, 0xb6, 0x47, 0xc2, 0x20, 0x6b, 0x7f, 0xc8, 0x41, 0xb2, 0x3e, 0x51, 0xc9, 0x8b, 0x33, 0xe7, 0x0c, 0x4a, 0xcc, 0x4d, 0x8a, 0x36, 0xf4, 0x33, 0xb0, 0x4a, 0x3d, 0x80, 0x94, 0xeb, 0x38, 0xf9, 0x0a, 0xb6, 0x50, 0x58, 0x98, 0x1a, 0xc7, 0xbb, 0x15, 0xac, 0xde, 0xea, 0x5d, 0xa5, 0xed, 0xd4, 0x7c, 0xbd, 0xcb, 0x8c, 0x9b, 0xb3, 0xfc, 0xb8, 0xc5, 0xea, 0xcf, 0xfa, 0x50, 0x08, 0xe9, 0x14, 0x9d, 0x9b, 0x37, 0x22, 0x54, 0xde, 0xba, 0xa5, 0xff, 0xe4, 0x66, 0x15, 0x4e, 0xaa, 0x06, 0x62, 0xdd, 0x02, 0x14, 0x49, 0x0f, 0x48, 0x43, 0x65, 0xea, 0x00, 0x6b, 0x1b, 0x9c, 0xfb, 0x57, 0xa4, 0xfd, 0xe4, 0x10, 0x29, 0x20, 0x2e, 0xc6, 0xcd, 0xce, 0x41, 0xc4, 0xd3, 0xfd, 0x10, 0x05, 0x59, 0xe3, 0x7c, 0xfb, 0x89, 0xde, 0x25, 0x25, 0x1d, 0xac, 0x8d, 0xc1, 0x83, 0x0b, 0x0b, 0x96, 0xe9, 0xab, 0x3c, 0x13, 0xcd, 0xd3, 0x09, 0x7e, 0x4f, 0x45, 0xf9, 0x35, 0xae, 0x77, 0x25, 0xbb, 0x66, 0xd3, 0x7e, 0xe1, 0x2b, 0x67, 0x43, 0x57, 0x98, 0x57, 0xc2, 0x11, 0x1a, 0x88, 0xc4, 0x8a, 0x80, 0x0d, 0x53, 0xb3, 0x1b, 0x10, 0xb5, 0x0d, 0xab, 0x05, 0x07, 0x86, 0x09, 0x27, 0xf2, 0x85, 0xce, 0x3b, 0x83, 0xd2, 0x32, 0x49, 0xc7, 0x3a, 0xe9, 0xe2, 0x70, 0x17, 0xb2, 0x16, 0xb9, 0xdc, 0xa9, 0xd4, 0xca, 0x6c, 0x13, 0x36, 0xf4, 0xd5, 0xce, 0xab, 0x83, 0x95, 0xa2, 0xeb, 0x7b, 0x39, 0xde, 0xf2, 0xff, 0xf5, 0xab, 0xda, 0x9b, 0x3b, 0xd9, 0x15, 0x6e, 0x32, 0xfe, 0x4b, 0xf3, 0x65, 0xf2, 0xe9, 0xc2, 0x7b, 0x68, 0x40, 0xa2, 0x24, 0x59, 0xa8, 0x9b, 0x43, 0x3f, 0xa6, 0x9f, 0xcd, 0x80, 0x08, 0xb9, 0x76, 0x3a, 0x40, 0xe9, 0xa7, 0xee, 0xc8, 0xfc, 0xf4, 0xa4, 0x84, 0x2f, 0x2b, 0x5c, 0x7e, 0x80, 0xc7, 0x9a, 0x2c, 0x64, 0x32, 0x8f, 0x03, 0x8c, 0x43, 0x5b, 0xaa, 0xd7, 0x3f, 0x7a, 0x18, 0xcd, 0x29, 0x7f, 0x2e, 0x55, 0xe0, 0x16, 0x5a, 0x04, 0xbd, 0x29, 0x98, 0x1d, 0xe5, 0x18, 0x20, 0x5c, 0x72, 0xfa, 0x46, 0xc9, 0xed, 0xee, 0xa1, 0x49, 0xa4, 0x7d, 0x66, 0x18, 0xfa, 0xba, 0xa5, 0x43, 0x48, 0x5d, 0x4e, 0xd4, 0xa4, 0x46, 0xa4, 0x51, 0x6f, 0x45, 0x55, 0x4b, 0x40, 0x49, 0x06, 0xb0, 0x0e, 0xb1, 0x70, 0x2a, 0xe0, 0xa5, 0xc0, 0x0c, 0x95, 0x38, 0xe3, 0x72, 0xb6, 0xe5, 0x03, 0xe6, 0x54, 0x5b, 0x98, 0x3f, 0x8e, 0x72, 0xbe, 0x5e, 0x7a, 0x77, 0xa9, 0x88, 0x57, 0x7a, 0x61, 0xca, 0x67, 0x28, 0x79, 0x5b, 0x32, 0xda, 0xfc, 0xd7, 0x19, 0x80, 0xd7, 0xf0, 0xff, 0x41, 0x2c, 0xba, 0xcf, 0x96, 0x18, 0x96, 0x9b, 0x71, 0x1c, 0xd4, 0xc1, 0xd7, 0x38, 0x88, 0x67, 0xf4, 0xd5, 0x5c, 0xa1, 0x0f, 0xf1, 0xde, 0x76, 0xe8, 0x42, 0xbe, 0xa9, 0xad, 0xe2, 0x1e, 0x34, 0xe3, 0xa8, 0x39, 0x0e, 0xf1, 0xd1, 0x67, 0x45, 0x73, 0x97, 0xb1, 0xec, 0x25, 0x9e, 0xbb, 0x1e, 0xdf, 0xf0, 0x6f, 0x01, 0xa4, 0xbb, 0xed, 0xdd, 0xea, 0x8e, 0xaa, 0x80, 0xfc, 0x3e, 0x8c, 0xed, 0x50, 0x79, 0x7f, 0x8b, 0x68, 0x73, 0x31, 0x03, 0xf7, 0xa2, 0x51, 0x21, 0x7e, 0x93, 0xba, 0x01, 0x39, 0x3a, 0xa8, 0xda, 0x3d, 0x1a, 0x85, 0x6d, 0xf9, 0x23, 0x04, 0x84, 0xbc, 0x2f, 0xf8, 0x11, 0xc5, 0x0b, 0x65, 0x48, 0xdd, 0xbb, 0xdc, 0xe2, 0x5b, 0xba, 0x78, 0xbd, 0x46, 0x18, 0x39, 0xef, 0xc0, 0x58, 0x7b, 0x38, 0xc7, 0xa7, 0x9b, 0xd7, 0x9b, 0x45, 0x5a, 0x9d, 0x18, 0x3d, 0xd3, 0xfe, 0xc0, 0x63, 0x64, 0x47, 0x06, 0x82, 0x1b, 0x06, 0xaf, 0xbc, 0xe6, 0x1f, 0x3c, 0x2f, 0xb4, 0xe0, 0x4b, 0x2c, 0xc2, 0xb9, 0x43, 0xd0, 0x51, 0xed, 0xef, 0x74, 0xd1, 0x3a, 0x88, 0xc2, 0x74, 0x7d, 0x68, 0xef, 0x49, 0x69, 0x0f, 0x84, 0xf4, 0xc2, 0xb2, 0xcd, 0x23, 0x77, 0xaf, 0x4c, 0x26, 0x06, 0x4e, 0x44, 0xdd, 0x06, 0xbe, 0xeb, 0x4f, 0x66, 0x10, 0xa9, 0xab, 0x35, 0x2a, 0x01, 0x37, 0xa5, 0xf1, 0x5c, 0x16, 0x4c, 0xb6, 0x25, 0x5e, 0xb9, 0x61, 0xec, 0xc6, 0x14, 0xfb, 0xe1, 0x1b, 0x22, 0x00, 0x2a, 0x71, 0x30, 0x6a, 0xb8, 0x44, 0x15, 0x6a, 0x6c, 0x90, 0x44, 0x96, 0xc4, 0x75, 0x71, 0x4c, 0x65, 0xd7, 0xfe, 0x53, 0xf7, 0x87, 0xc7, 0xd5, 0xfd, 0x4e, 0x21, 0x4c, 0x8f, 0x09, 0x54, 0xab, 0x0c, 0xf6, 0xae, 0xc5, 0xf3, 0x7f, 0x39, 0x1d, 0x9c, 0x23, 0x67, 0xe9, 0x96, 0x23, 0x6d, 0xe0, 0xeb, 0xaf, 0xf2, 0x90, 0x34, 0xd2, 0xa3, 0x6d, 0x3c, 0x0c, 0x2c, 0x61, 0xc1, 0x84, 0x12, 0xe8, 0x0b, 0x0d, 0xe1, 0xc7, 0xae, 0x88, 0x1e, 0x20, 0xbb, 0x9a, 0xab, 0xde, 0x20, 0x09, 0x40, 0x89, 0xa3, 0xcf, 0x9e, 0xca, 0x08, 0xe3, 0x7f, 0xc7, 0x05, 0x88, 0xe5, 0x63, 0x72, 0x15, 0xaf, 0xd1, 0x7f, 0x77, 0xf3, 0x7f, 0x85, 0x9a, 0xb5, 0x2f, 0xe5, 0x3a, 0xce, 0x42, 0x73, 0x4f, 0x68, 0x91, 0x24, 0xcf, 0xa5, 0x42, 0x85, 0x1b, 0x4a, 0x00, 0xa1, 0x5e, 0xb4, 0x03, 0xd7, 0xc0, 0xb1, 0x9b, 0x0b, 0x50, 0xa4, 0xe7, 0xb1, 0xf0, 0x05, 0xe5, 0xcd, 0xfe, 0x4c, 0x04, 0xc3, 0xe6, 0x5f, 0x25, 0xfe, 0x59, 0x44, 0x4f, 0xbb, 0xdd, 0x54, 0xb2, 0xcc, 0x34, 0x82, 0xc3, 0x83, 0x88, 0xa7, 0x2b, 0xd1, 0xa5, 0x8d, 0x0d, 0x2b, 0x04, 0xda, 0x81, 0x75, 0x94, 0x1e, 0x8d, 0xdf, 0x18, 0x5a, 0x39, 0xd2, 0x2e, 0x01, 0x82, 0xa1, 0x0f, 0xcb, 0x9a, 0x8d, 0xb6, 0x7f, 0xcf, 0xa1, 0xf4, 0x0d, 0x67, 0x1f, 0xf0, 0xa5, 0x22, 0x94, 0xc7, 0x01, 0x9d, 0x55, 0xe9, 0x05, 0x1d, 0x6a, 0xe7, 0x58, 0xbd, 0x7b, 0x26, 0xea, 0xab, 0x1a, 0x07, 0x25, 0xdf, 0x36, 0x8f, 0x3a, 0xe5, 0x4c, 0x90, 0x0f, 0x43, 0x57, 0x6f, 0x02, 0x9d, 0xed, 0xfa, 0x42, 0xf6, 0x99, 0xad, 0xa5, 0x8b, 0xc5, 0x69, 0xe7, 0x8a, 0x7e, 0x43, 0xdf, 0x04, 0x38, 0x0b, 0x58, 0xd6, 0x09, 0x67, 0x6a, 0x0c, 0x1a, 0xb9, 0x66, 0xea, 0xe3, 0xa8, 0xf9, 0x7e, 0x10, 0x2d, 0x67, 0x43, 0x17, 0x50, 0xa1, 0xb4, 0x87, 0x21, 0x05, 0xbc, 0xf2, 0x79, 0x47, 0x2e, 0x2e, 0x2f, 0xe4, 0x68, 0x74, 0x35, 0xb9, 0x06, 0xe7, 0xa3, 0x84, 0xb6, 0x21, 0xc4, 0xe8, 0xae, 0xa8, 0x4c, 0x2c, 0x02, 0x49, 0xa8, 0xb5, 0x36, 0xae, 0x82, 0x1f, 0x68, 0x37, 0x6a, 0xfa, 0xd4, 0xb9, 0x0f, 0x2c, 0x72, 0x66, 0x22, 0x4c, 0xbe, 0xc9, 0x24, 0xa8, 0x6c, 0x4c, 0x28, 0xe9, 0x60, 0x6b, 0x4d, 0xf5, 0x48, 0xdd, 0xe9, 0xd2, 0xed, 0x2a, 0x81, 0xa1, 0x10, 0xf7, 0xa5, 0x97, 0xba, 0xce, 0xfb, 0xc2, 0x5e, 0xed, 0xf2, 0xe7, 0x34, 0xdb, 0x44, 0x6d, 0xbf, 0xe1, 0xe1, 0x8f, 0x52, 0xd5, 0x7c, 0xe5, 0x4e, 0x24, 0x47, 0x67, 0xc9, 0x5f, 0x1f, 0xa5, 0x0e, 0x10, 0x77, 0x82, 0xa6, 0x80, 0x1f, 0xa2, 0x42, 0xb7, 0x8d, 0x28, 0xc1, 0x7b, 0xc7, 0x41, 0x8a, 0x46, 0xe3, 0xa1, 0x30, 0xb3, 0xd8, 0xd0, 0x02, 0x75, 0x65, 0xc2, 0xef, 0xd8, 0x58, 0xb1, 0x1b, 0x5a, 0xa5, 0x64, 0xac, 0xea, 0x9c, 0xbe, 0x8c, 0xab, 0xae, 0xd6, 0xee, 0xc6, 0x4d, 0xba, 0xfc, 0x90, 0x5e, 0xaf, 0x20, 0x5b, 0x5c, 0xcf, 0xbb, 0xa9, 0x8b, 0xae, 0x4b, 0x70, 0x00, 0xc1, 0xef, 0xa4, 0xb0, 0x3e, 0x30, 0xc7, 0x21, 0x03, 0x42, 0x66, 0x28, 0xde, 0x30, 0x9b, 0xad, 0xb9, 0xbb, 0xba, 0x1f, 0x33, 0xbd, 0x16, 0xe4, 0xc7, 0x27, 0x79, 0x75, 0xaa, 0xc3, 0x85, 0xe3, 0xb9, 0x39, 0x33, 0xaf, 0x87, 0xe5, 0x4d, 0xec, 0x11, 0x54, 0xcc, 0x81, 0xf5, 0x43, 0xe5, 0x01, 0x6c, 0xb7, 0x97, 0x1c, 0xca, 0x1e, 0x1e, 0x66, 0x56, 0x65, 0x52, 0x42, 0x77, 0x2f, 0xb0, 0xf6, 0x43, 0xbc, 0x97, 0x7c, 0xbd, 0x00, 0xee, 0x4e, 0x63, 0xc4, 0x3b, 0xb9, 0x68, 0x30, 0xe7, 0x6b, 0xad, 0x3f, 0x9b, 0x62, 0x18, 0xee, 0x4e, 0xee, 0xa7, 0x61, 0xa5, 0xec, 0xb7, 0x62, 0x1e, 0x0c, 0x59, 0x18, 0x99, 0xdc, 0x02, 0x7d, 0x6c, 0xfd, 0x8d, 0x28, 0x1d, 0x2c, 0xe1, 0x89, 0x6d, 0x1b, 0xa3, 0xd3, 0xb7, 0x99, 0x42, 0xa6, 0xef, 0x0a, 0x08, 0x95, 0x4e, 0xe5, 0x94, 0xe2, 0xa4, 0x4a, 0xef, 0x15, 0x83, 0x55, 0x95, 0xfd, 0x95, 0xb4, 0x38, 0xde, 0xd2, 0x25, 0xa0, 0x64, 0x94, 0x7e, 0x67, 0xb8, 0xb2, 0x76, 0x2c, 0xdb, 0xf3, 0x45, 0x61, 0x0d, 0x32, 0xed, 0x49, 0xaa, 0xcd, 0x40, 0x0f, 0x1f, 0xae, 0x9f, 0x0e, 0x42, 0x20, 0x6f, 0x16, 0xd3, 0x86, 0x16, 0x88, 0x21, 0x7c, 0xb3, 0xec, 0xc5, 0x2d, 0x84, 0x44, 0x86, 0xcf, 0x5b, 0x0b, 0x68, 0x0a, 0x9e, 0x9b, 0x71, 0x29, 0x1d, 0xdc, 0x1d, 0xf5, 0xed, 0xb6, 0x6a, 0x55, 0xc2, 0xe6, 0x9e, 0xee, 0x48, 0xe7, 0xf5, 0xb7, 0x64, 0xc2, 0x4d, 0x74, 0xc7, 0x92, 0xd0, 0x34, 0xf2, 0x5a, 0x1f, 0x81, 0xe2, 0x56, 0x91, 0x0f, 0x32, 0xd9, 0x1c, 0x94, 0x44, 0x48, 0x6c, 0xb9, 0x12, 0x48, 0x6f, 0xc4, 0x92, 0x9d, 0x79, 0x64, 0x5b, 0x77, 0x59, 0xf0, 0x5d, 0x10, 0x64, 0xa1, 0x9f, 0x36, 0x45, 0xe7, 0xd3, 0x94, 0x45, 0xc1, 0x82, 0x75, 0xdc, 0x4d, 0xb4, 0xbf, 0xba, 0x84, 0xa8, 0xc5, 0xcc, 0x7d, 0x3a, 0xe3, 0xcf, 0xf9, 0x18, 0x83, 0x0e, 0xcb, 0xfe, 0x69, 0xc3, 0xff, 0xa8, 0x8c, 0xdf, 0xfa, 0xad, 0x8d, 0x54, 0xef, 0xe5, 0x82, 0x40, 0xab, 0x52, 0xa8, 0x6f, 0x30, 0xa1, 0x05, 0xad, 0x49, 0x2c, 0x14, 0x55, 0x01, 0x12, 0xde, 0x3f, 0x03, 0x16, 0x47, 0xf8, 0x57, 0x9b, 0x3b, 0x75, 0x9a, 0xac, 0xac, 0x55, 0xe2, 0xa0, 0x94, 0xc1, 0xea, 0x8f, 0xfa, 0x69, 0x1d, 0x1d, 0x61, 0x75, 0xfb, 0x54, 0x89, 0x48, 0xbb, 0x34, 0x13, 0x73, 0x95, 0x1b, 0x61, 0xa4, 0xb7, 0xfd, 0xbe, 0xd7, 0x33, 0x9b, 0x50, 0xf0, 0x91, 0x7a, 0x67, 0x53, 0xda, 0xc0, 0xbc, 0x24, 0x46, 0xff, 0x7a, 0xab, 0x57, 0x8c, 0xc6, 0x22, 0x67, 0x6d, 0xff, 0x06, 0xcf, 0xfe, 0x31, 0xa9, 0xcb, 0xda, 0x72, 0xfb, 0x63, 0xf7, 0xdd, 0xa6, 0x04, 0x0d, 0xa2, 0x7d, 0x4d, 0x2f, 0x1a, 0x50, 0x2e, 0x7f, 0x41, 0x27, 0x69, 0xaf, 0x09, 0x98, 0x86, 0x64, 0x89, 0xf2, 0xcc, 0xaa, 0xf1, 0x8d, 0x2e, 0x51, 0x2c, 0xe4, 0x63, 0x89, 0xe6, 0xaf, 0xf7, 0x90, 0xbe, 0x7e, 0x9d, 0x18, 0x5c, 0xfa, 0x8b, 0x4c, 0x9d, 0x43, 0x1c, 0xcc, 0xdc, 0xf9, 0x76, 0x23, 0xb9, 0xcb, 0x0e, 0x24, 0xb0, 0x71, 0x1c, 0x00, 0xfd, 0xaf, 0xf3, 0xaa, 0x0b, 0xa5, 0xcc, 0xb2, 0x2a, 0x80, 0xdd, 0x8e, 0xae, 0xbb, 0xb7, 0x35, 0x9d, 0xfc, 0x15, 0x50, 0x6c, 0x0d, 0x5d, 0xd3, 0xe5, 0xe1, 0x4e, 0x4d, 0x7d, 0x7e, 0x60, 0x9a, 0x4f, 0x64, 0x6f, 0xc0, 0x92, 0x84, 0x7f, 0xbb, 0x2b, 0x6f, 0x21, 0x87, 0x88, 0x6b, 0x95, 0x7c, 0xfc, 0xce, 0x1a, 0xbc, 0xe5, 0xdb, 0x5f, 0xed, 0xa3, 0x0f, 0x01, 0x6d, 0xea, 0x43, 0xbe, 0x52, 0x10, 0x1b, 0x10, 0x22, 0x20, 0xdd, 0xbe, 0x31, 0x7a, 0x4f, 0x3a, 0xbc, 0x22, 0xbc, 0xc7, 0xa0, 0x30, 0x99, 0x6f, 0x5e, 0xa8, 0xeb, 0xe8, 0x43, 0xf1, 0xd2, 0xad, 0xeb, 0xc4, 0x86, 0x21, 0x12, 0x16, 0xfa, 0x74, 0x3e, 0xb5, 0x4a, 0xc0, 0x6d, 0x56, 0x4d, 0x34, 0xd3, 0x11, 0x42, 0x20, 0x3b, 0x71, 0xde, 0x1f, 0x0a, 0xb5, 0xe4, 0x7b, 0xb6, 0x39, 0xdf, 0x22, 0xd0, 0x23, 0xe9, 0x39, 0x8d, 0x86, 0x82, 0xc3, 0x92, 0x0e, 0x61, 0x42, 0x04, 0x7f, 0x26, 0x90, 0x28, 0x8e, 0xeb, 0xec, 0x65, 0xb5, 0xbb, 0x09, 0x30, 0xc3, 0xd8, 0x9e, 0xa5, 0x98, 0x15, 0xae, 0xaa, 0x55, 0xc4, 0xa6, 0xdd, 0x2b, 0x60, 0x3d, 0x3f, 0x9d, 0xd6, 0x08, 0xb3, 0xde, 0x66, 0x4b, 0x72, 0x81, 0xcb, 0xc7, 0xb7, 0x0c, 0x4e, 0x78, 0x36, 0x1a, 0x0b, 0x55, 0xda, 0x6c, 0x06, 0x41, 0x4e, 0xb8, 0x48, 0xd6, 0xd1, 0xe2, 0x17, 0x93, 0x78, 0xb6, 0xb7, 0x91, 0x65, 0x21, 0xb0, 0x93, 0xe0, 0xca, 0x52, 0xfd, 0x4c, 0x80, 0xae, 0xe1, 0xd7, 0x1f, 0x1b, 0x12, 0xb1, 0xac, 0xe5, 0x29, 0x0b, 0x55, 0xb0, 0xf2, 0xa2, 0xe9, 0xd4, 0xc8, 0x78, 0x91, 0xaf, 0x9d, 0x51, 0x72, 0x79, 0xd6, 0xfa, 0x66, 0xd4, 0x71, 0x70, 0xc1, 0x8a, 0xd6, 0xb4, 0xb1, 0xfa, 0x29, 0x80, 0xbd, 0x79, 0x3c, 0xe8, 0xef, 0x61, 0x9b, 0xdb, 0x7c, 0x8f, 0x31, 0xc2, 0x4b, 0x16, 0xff, 0xfb, 0x27, 0x2b, 0xcc, 0xa6, 0x4a, 0x31, 0x6f, 0x8c, 0x46, 0xac, 0x29, 0x48, 0xf0, 0x11, 0xaa, 0xac, 0xc5, 0xec, 0x01, 0x53, 0x0a, 0xb2, 0xb5, 0xc5, 0xc6, 0x5c, 0xca, 0x17, 0x39, 0xc7, 0x77, 0x0f, 0xb6, 0x10, 0x5a, 0x0a, 0x15, 0xd8, 0xbb, 0x73, 0x26, 0xd0, 0xfd, 0x94, 0xfa, 0x05, 0x6f, 0x05, 0xce, 0xb4, 0x53, 0x06, 0x17, 0x68, 0x31, 0x2b, 0x28, 0x0e, 0xb2, 0xa9, 0xc2, 0xba, 0x2b, 0x57, 0x43, 0xf3, 0x75, 0x5f, 0xf7, 0x9e, 0xae, 0x4e, 0x93, 0xa7, 0x8f, 0x46, 0xcd, 0x03, 0xf2, 0x73, 0x67, 0x29, 0xff, 0x66, 0x1c, 0x7a, 0x49, 0xa8, 0x5d, 0xd8, 0x12, 0x45, 0xbc, 0x65, 0xdc, 0x3c, 0xc1, 0x56, 0x42, 0xf6, 0x42, 0xdb, 0xa0, 0xd4, 0x96, 0x7c, 0xab, 0x0e, 0x1d, 0x31, 0x52, 0xd1, 0xa0, 0xaf, 0x35, 0xf8, 0x05, 0x63, 0x12, 0x75, 0xa8, 0x5e, 0xd3, 0x35, 0x51, 0x77, 0x30, 0x20, 0xb3, 0x6a, 0x2a, 0xb5, 0x57, 0x46, 0x42, 0xf8, 0x07, 0x37, 0xb4, 0xd8, 0x92, 0xf1, 0x97, 0x41, 0x54, 0x38, 0x00, 0x9f, 0x2f, 0x8d, 0xa9, 0x82, 0xb0, 0xdf, 0x7e, 0x46, 0x1a, 0xb7, 0x91, 0x8a, 0x03, 0x46, 0x8c, 0x28, 0xd6, 0x17, 0x9d, 0xd1, 0xf8, 0x0c, 0xa0, 0xef, 0xce, 0xe0, 0x41, 0xe7, 0x13, 0x6f, 0x41, 0x32, 0x25, 0xab, 0x19, 0x2f, 0x58, 0x62, 0x39, 0x1b, 0xdb, 0xc2, 0xd8, 0xe8, 0xa7, 0xa3, 0xbe, 0xaf, 0xca, 0xa6, 0x8a, 0x29, 0x52, 0x75, 0xd9, 0xc4, 0x33, 0xe0, 0x97, 0xc2, 0x72, 0x97, 0xd7, 0xb3, 0xd7, 0xfd, 0xdd, 0x72, 0xde, 0xe6, 0xe8, 0x89, 0x02, 0x15, 0x6f, 0xf4, 0xd7, 0x67, 0x01, 0xba, 0x18, 0x12, 0x1b, 0x45, 0xce, 0xe0, 0x85, 0xc8, 0x92, 0xdd, 0xdc, 0x15, 0xa4, 0x8b, 0x33, 0x90, 0x4c, 0x4f, 0xcf, 0x0a, 0xb8, 0x2b, 0xe6, 0xb3, 0xc1, 0x51, 0x0c, 0xf7, 0xc5, 0x60, 0xad, 0x6d, 0xd3, 0x39, 0xa6, 0xac, 0x13, 0x78, 0x22, 0xe5, 0xe3, 0x42, 0xd2, 0x7d, 0xb7, 0xd7, 0x47, 0x0e, 0x5d, 0x69, 0xf4, 0xaa, 0xf6, 0x9e, 0xd9, 0x33, 0xd6, 0x12, 0xd8, 0xf8, 0xf6, 0xc0, 0x46, 0x3a, 0x5d, 0x09, 0x95, 0xe5, 0x5f, 0x40, 0x72, 0x72, 0x25, 0x80, 0x85, 0x94, 0xc1, 0xaa, 0x04, 0xe7, 0x70, 0x7b, 0xc3, 0x83, 0x0d, 0x90, 0x56, 0xbd, 0x55, 0x56, 0x12, 0xd9, 0x32, 0x20, 0x74, 0x34, 0x7a, 0x1c, 0x6b, 0x37, 0x5e, 0x47, 0xf6, 0x66, 0x7e, 0xa0, 0x38, 0x08, 0x0b, 0x30, 0x25, 0x42, 0x73, 0xeb, 0x39, 0xc5, 0x11, 0xed, 0x82, 0xb2, 0xc3, 0xde, 0x6e, 0xfe, 0x22, 0xb6, 0xe2, 0x1e, 0x4d, 0x08, 0x50, 0x8f, 0xfc, 0xc8, 0x89, 0x17, 0x7f, 0x5c, 0xb6, 0x12, 0x15, 0x4f, 0xc4, 0x1f, 0xca, 0xdc, 0x81, 0x88, 0x8b, 0x76, 0xfd, 0x63, 0x93, 0xee, 0x26, 0x88, 0x17, 0x6c, 0x19, 0x96, 0x5e, 0x1b, 0xb1, 0x67, 0xb8, 0x58, 0x8c, 0xfe, 0x6d, 0x4f, 0x59, 0xfc, 0x71, 0x2d, 0xdf, 0xb8, 0x41, 0x4b, 0xdd, 0x42, 0xda, 0xc0, 0x91, 0x55, 0x75, 0xfb, 0xa0, 0x39, 0xab, 0xe1, 0x4f, 0x6a, 0x3a, 0x21, 0x9b, 0x97, 0x83, 0xb2, 0x84, 0x48, 0x67, 0xd4, 0xd1, 0x5d, 0x28, 0x78, 0x40, 0xa6, 0xc2, 0xeb, 0x39, 0xd3, 0xcd, 0xff, 0xc4, 0xfc, 0xe7, 0x6f, 0x50, 0x08, 0xc7, 0x0e, 0xdd, 0xf5, 0x90, 0x57, 0xa1, 0xe0, 0x22, 0x56, 0x2d, 0x00, 0x88, 0x03, 0x93, 0x31, 0x41, 0x41, 0x32, 0xd0, 0x95, 0x08, 0xec, 0xde, 0x46, 0x34, 0xcd, 0x99, 0x0a, 0xe4, 0xc5, 0x26, 0x2b, 0x8f, 0x19, 0x2a, 0x32, 0x20, 0x27, 0xb1, 0x82, 0x78, 0x57, 0xad, 0x3c, 0xcf, 0xe9, 0x7d, 0xad, 0x4f, 0xd1, 0x43, 0x4c, 0x35, 0x6e, 0xa7, 0xb9, 0x81, 0x05, 0x11, 0xcf, 0x74, 0x0f, 0x03, 0xdf, 0xf5, 0x9a, 0xa4, 0x32, 0x1d, 0x54, 0xd7, 0xf8, 0x13, 0x51, 0xcd, 0x79, 0xd0, 0x00, 0x9e, 0x4a, 0x40, 0x9e, 0xb7, 0xf3, 0x8b, 0xc7, 0x82, 0x98, 0x88, 0x70, 0x6e, 0x19, 0x99, 0xc6, 0x83, 0x91, 0xc8, 0x83, 0x34, 0x78, 0xc5, 0x20, 0x99, 0xa4, 0x69, 0x79, 0xef, 0xb6, 0x67, 0x81, 0x3c, 0x2c, 0x82, 0x28, 0x1a, 0x5c, 0x2c, 0xf1, 0x38, 0x32, 0xc3, 0x68, 0xbd, 0xd6, 0xdd, 0x75, 0xa8, 0x6d, 0xf6, 0xe7, 0xb1, 0x32, 0x1e, 0x0f, 0x0d, 0x9c, 0x4c, 0x9d, 0xd8, 0x80, 0x7b, 0x2e, 0xd1, 0xc8, 0x30, 0x54, 0xfb, 0x39, 0x96, 0x13, 0x76, 0x31, 0xff, 0x8c, 0x88, 0x7c, 0x8f, 0xd3, 0x35, 0x29, 0x3c, 0x9e, 0x62, 0xb3, 0xd3, 0xa5, 0x40, 0xf6, 0x73, 0x93, 0xf0, 0x42, 0x77, 0xa3, 0x9e, 0xfb, 0x29, 0x0e, 0x3f, 0x06, 0xe0, 0x6b, 0x73, 0x94, 0x43, 0x3e, 0x25, 0x03, 0x7f, 0xa5, 0x73, 0xe6, 0x52, 0x36, 0x83, 0xc2, 0xcf, 0x70, 0xa3, 0x1b, 0xcf, 0x1f, 0xd6, 0x95, 0xd1, 0xe7, 0xbb, 0x0c, 0x98, 0xed, 0x15, 0x71, 0xff, 0x5d, 0xdf, 0xde, 0xed, 0xe2, 0x3d, 0xad, 0x40, 0x5a, 0xe3, 0x53, 0xf8, 0x66, 0x0c, 0x48, 0x16, 0xec, 0xb7, 0xee, 0x6f, 0x8f, 0xb2, 0x77, 0x5e, 0x8d, 0x61, 0x3f, 0xaa, 0x05, 0x60, 0x6a, 0x20, 0xf2, 0x53, 0xf9, 0xb6, 0xc1, 0x16, 0x75, 0x22, 0x21, 0x1d, 0x9d, 0x0b, 0x01, 0xde, 0x97, 0x3f, 0x57, 0xdf, 0x8d, 0x03, 0xe6, 0x68, 0x1d, 0x35, 0xa3, 0xcb, 0x00, 0x6a, 0xac, 0x21, 0x05, 0x28, 0x85, 0x61, 0xd4, 0xcb, 0x1c, 0x91, 0x1f, 0x73, 0x99, 0xa5, 0x0b, 0xa5, 0xf0, 0x56, 0x9f, 0x75, 0xe3, 0xd7, 0x26, 0x1b, 0x23, 0x1c, 0x54, 0xb2, 0xd5, 0x49, 0x85, 0x62, 0x3d, 0x42, 0xc9, 0x7d, 0xba, 0x30, 0x32, 0x9d, 0xbd, 0x7c, 0xdd, 0x26, 0x17, 0x5d, 0x28, 0xc7, 0xf3, 0xf0, 0x2e, 0x3b, 0x3a, 0xf6, 0x4b, 0x01, 0xc9, 0x6e, 0x6c, 0xd6, 0xc8, 0x5a, 0x45, 0x62, 0x55, 0xb8, 0x08, 0x70, 0x8f, 0x26, 0xd0, 0x91, 0x0c, 0x4d, 0x60, 0xaa, 0x49, 0x87, 0x26, 0x0a, 0x86, 0x11, 0x19, 0xc3, 0xc6, 0x6e, 0x78, 0x0f, 0xc8, 0x14, 0xc6, 0x4e, 0xb5, 0x4c, 0x9b, 0xfc, 0x8a, 0x0c, 0x03, 0x22, 0x8d, 0x3e, 0xf4, 0xf0, 0x49, 0xf5, 0x00, 0x35, 0x89, 0x01, 0x9b, 0x77, 0xb1, 0x98, 0x03, 0xb8, 0x0e, 0x59, 0x33, 0x8d, 0xf3, 0x8b, 0x1b, 0x63, 0x7b, 0x2c, 0xbb, 0xf2, 0xb6, 0xcd, 0x51, 0xdf, 0x20, 0xb9, 0xa0, 0x0a, 0xa0, 0x2c, 0xd1, 0x86, 0xc1, 0x68, 0xfe, 0x49, 0xa3, 0x73, 0x60, 0xf1, 0xa2, 0x3f, 0x1f, 0x90, 0x51, 0xa3, 0x11, 0xd8, 0x57, 0x49, 0x55, 0xb6, 0xfe, 0xa2, 0x2d, 0xa0, 0x38, 0x5e, 0x96, 0x54, 0xf9, 0x20, 0x8c, 0xdc, 0x8b, 0x18, 0x5b, 0x5c, 0xf3, 0x10, 0xb9, 0x6b, 0xd8, 0xef, 0x05, 0xe6, 0xe4, 0x27, 0xb0, 0x3f, 0x0f, 0x8d, 0x43, 0x18, 0xee, 0xe2, 0x73, 0x77, 0x33, 0x85, 0x1c, 0x5d, 0x2c, 0x91, 0x66, 0x30, 0xaf, 0xc2, 0x60, 0x36, 0xdd, 0xb5, 0xcc, 0xc7, 0xb3, 0x30, 0x9b, 0x65, 0xf3, 0xaa, 0xf5, 0xc9, 0x29, 0x41, 0x25, 0x4d, 0xea, 0x23, 0x62, 0x6b, 0x00, 0x91, 0x1a, 0x4b, 0xc8, 0x5c, 0xa6, 0x11, 0xd4, 0xd8, 0xa6, 0x3e, 0x63, 0x90, 0x1a, 0x4c, 0xf0, 0xa4, 0x8f, 0xfa, 0x5e, 0x07, 0xa9, 0x5a, 0x3c, 0xdf, 0xf5, 0x7f, 0x58, 0x52, 0x97, 0xd7, 0xd9, 0xdd, 0xb6, 0x08, 0x6b, 0x38, 0x93, 0xbf, 0x1d, 0x6c, 0x8d, 0x7e, 0x14, 0x4c, 0x5d, 0x29, 0x76, 0x87, 0xbe, 0xd5, 0x0f, 0x0a, 0x05, 0x68, 0xac, 0x86, 0x25, 0x80, 0x20, 0x15, 0x04, 0xab, 0x46, 0xc4, 0x9d, 0xd0, 0x48, 0x32, 0x4f, 0x4c, 0x6f, 0xe6, 0xda, 0x95, 0xd9, 0x3e, 0xcf, 0x03, 0x84, 0x5f, 0xd4, 0x83, 0xde, 0xf6, 0x43, 0xf5, 0x0b, 0x5b, 0xef, 0x1f, 0xf1, 0x78, 0xf7, 0xfd, 0x63, 0xe9, 0xba, 0x1b, 0xf0, 0x56, 0xc6, 0x21, 0xf1, 0x73, 0xd7, 0x19, 0xf2, 0x9e, 0x14, 0x27, 0x4d, 0xac, 0xeb, 0x91, 0xd6, 0xf0, 0xb8, 0x88, 0xd8, 0x2f, 0x17, 0xeb, 0xb2, 0x2e, 0x2a, 0x69, 0xe6, 0xc3, 0x1d, 0xaa, 0x25, 0xb9, 0xaf, 0xeb, 0xc2, 0xc4, 0x54, 0x44, 0x4c, 0xd8, 0x58, 0x97, 0xa5, 0x05, 0x47, 0x47, 0x2a, 0xfb, 0x4b, 0xb5, 0x69, 0x46, 0xb9, 0x41, 0xea, 0x3c, 0x8e, 0x4d, 0xf5, 0xde, 0xba, 0x44, 0x3b, 0x6a, 0x1d, 0x86, 0x00, 0x03, 0x05, 0x44, 0x8e, 0x88, 0xf6, 0xc9, 0xb6, 0x10, 0x11, 0x34, 0x39, 0x0a, 0x56, 0xa5, 0x2c, 0x90, 0xce, 0x3e, 0x24, 0x47, 0xcc, 0x45, 0xe0, 0x67, 0x04, 0x07, 0xd2, 0xe0, 0x08, 0x28, 0x5d, 0xea, 0x36, 0xc7, 0x50, 0x35, 0xfe, 0x7a, 0x5a, 0xb5, 0xbb, 0xe4, 0x19, 0xcf, 0x0c, 0xcf, 0x4a, 0xd2, 0x3b, 0xe5, 0x45, 0xce, 0x59, 0x7b, 0xf3, 0x49, 0x7d, 0x7f, 0xa8, 0x73, 0xa3, 0x40, 0xb6, 0x69, 0x53, 0x63, 0x72, 0xc5, 0xc3, 0x63, 0x51, 0xcf, 0x92, 0x20, 0xd4, 0x2f, 0xb4, 0x18, 0x57, 0x63, 0xc6, 0x40, 0x52, 0xdf, 0x7a, 0x56, 0xf4, 0xf0, 0x16, 0xb3, 0x06, 0xc4, 0xe8, 0x38, 0xeb, 0x34, 0xf4, 0xca, 0x5f, 0x53, 0x99, 0x86, 0x1b, 0xe5, 0x70, 0x77, 0x88, 0xa0, 0xa6, 0xd8, 0xe0, 0x12, 0x3e, 0xe5, 0x17, 0x18, 0xfd, 0x07, 0x71, 0x0b, 0x73, 0xfe, 0x2d, 0x0c, 0xd1, 0xf6, 0x62, 0xa5, 0x5e, 0x99, 0xda, 0xbd, 0x8d, 0xf6, 0x1b, 0x9d, 0x33, 0x57, 0x3b, 0x73, 0x6d, 0x92, 0xae, 0x62, 0x72, 0x66, 0x3f, 0x4b, 0x76, 0x90, 0x05, 0xf3, 0xb2, 0x0a, 0xda, 0xcf, 0xd7, 0xb1, 0x08, 0x6c, 0xc3, 0x9e, 0xf1, 0x41, 0x25, 0x3e, 0x98, 0x3a, 0xd9, 0x23, 0x50, 0x0b, 0x19, 0xdb, 0x03, 0x83, 0x8a, 0x24, 0x17, 0x84, 0x83, 0xbf, 0x52, 0xb1, 0x88, 0x6f, 0x09, 0x6a, 0x16, 0x75, 0x71, 0xae, 0xe7, 0x4d, 0x9f, 0x3d, 0xd3, 0xa9, 0x9f, 0xf4, 0x04, 0x57, 0xe7, 0xf8, 0xde, 0xf3, 0x27, 0xfb, 0x72, 0x1e, 0x6a, 0x5c, 0x33, 0x39, 0xc7, 0xc2, 0xf8, 0x7f, 0x45, 0x5d, 0x9c, 0xe3, 0xf3, 0xc7, 0xc3, 0xa2, 0x49, 0x91, 0xd4, 0x2e, 0x0f, 0x44, 0x65, 0x1b, 0xad, 0x5f, 0x5c, 0x1d, 0x04, 0x14, 0xb2, 0x37, 0x9c, 0x48, 0xb4, 0x95, 0x78, 0x03, 0x07, 0xe8, 0xfc, 0xdb, 0x5a, 0xda, 0xa2, 0x5d, 0xf3, 0xec, 0x86, 0x05, 0xbf, 0x4a, 0xe1, 0x6d, 0x47, 0x7d, 0x14, 0x8e, 0x36, 0xbe, 0xb6, 0x80, 0x91, 0xdb, 0x02, 0xce, 0x52, 0x71, 0xeb, 0x46, 0x61, 0xf9, 0x5a, 0x14, 0xc8, 0x0b, 0xd9, 0x42, 0x0e, 0x1d, 0x23, 0x8e, 0x93, 0x27, 0x03, 0xf9, 0x4a, 0x6e, 0x2a, 0xd2, 0x1f, 0xac, 0x84, 0x12, 0x46, 0xad, 0x02, 0xa5, 0x1f, 0x7e, 0x99, 0xd4, 0x87, 0x7d, 0x9e, 0x46, 0xe4, 0x06, 0xa4, 0x05, 0x62, 0xc1, 0xf3, 0xb8, 0x0f, 0xe4, 0x08, 0x2c, 0x7b, 0xbd, 0x3c, 0xbd, 0xfc, 0x08, 0x8c, 0x69, 0xb9, 0x94, 0xa6, 0x2e, 0x60, 0x83, 0x32, 0x15, 0x71, 0x7b, 0x10, 0xe8, 0x23, 0x58, 0x86, 0xb6, 0x0b, 0x14, 0x91, 0x1e, 0x38, 0x68, 0xf6, 0x5d, 0xa9, 0x27, 0x7f, 0x1c, 0xf2, 0xd3, 0x7e, 0x24, 0xc1, 0xe1, 0x36, 0xbc, 0x80, 0x18, 0x2e, 0xb3, 0xff, 0xf1, 0x0a, 0x02, 0x22, 0xd6, 0x81, 0xf5, 0x43, 0x60, 0xd6, 0x7b, 0x79, 0x4a, 0x12, 0x0f, 0x10, 0x83, 0x7d, 0xf7, 0x32, 0x8f, 0x40, 0x8e, 0x06, 0xc1, 0x35, 0x23, 0x8f, 0x14, 0xa0, 0x89, 0xeb, 0x20, 0x1c, 0xc7, 0xc8, 0x24, 0x8a, 0xa4, 0xdb, 0xc4, 0x87, 0x44, 0xa1, 0x30, 0xee, 0x0b, 0x03, 0xe1, 0x88, 0x1b, 0x7f, 0x72, 0x00, 0x23, 0xd7, 0x58, 0x55, 0x39, 0x00, 0x71, 0x5a, 0xaa, 0xf2, 0x15, 0x6f, 0xe8, 0x1d, 0x9e, 0x56, 0x9b, 0x0a, 0x17, 0xe5, 0xca, 0x57, 0xa6, 0x51, 0x28, 0xf4, 0x68, 0xe7, 0xc0, 0x85, 0x05, 0xe0, 0xb0, 0x03, 0xcf, 0x0e, 0x6e, 0x29, 0xe9, 0x51, 0x61, 0x57, 0xb9, 0x72, 0x78, 0xae, 0x32, 0x73, 0x65, 0x2e, 0xc7, 0x3f, 0x4a, 0xc6, 0x29, 0x04, 0xe7, 0x65, 0x09, 0x64, 0xcf, 0x25, 0x25, 0xcc, 0x43, 0x3f, 0xfc, 0xfd, 0x0a, 0x41, 0x6f, 0xb9, 0x98, 0x21, 0x39, 0x3e, 0xe9, 0x2b, 0x22, 0x35, 0x42, 0x21, 0x61, 0x98, 0xcb, 0x5f, 0x94, 0x19, 0x7f, 0xd1, 0xdb, 0x48, 0xfd, 0xd8, 0x81, 0xb8, 0x65, 0x28, 0x30, 0x49, 0xf7, 0x06, 0x4c, 0x3b, 0x78, 0x05, 0x76, 0x06, 0x38, 0x31, 0xb1, 0x02, 0x8a, 0xe5, 0x7a, 0x3d, 0x2a, 0x72, 0xc8, 0xee, 0x84, 0xcd, 0xac, 0x58, 0x11, 0xee, 0x6a, 0xb0, 0x32, 0xda, 0x06, 0x09, 0x0b, 0x66, 0x80, 0x4b, 0xac, 0xea, 0x8f, 0x17, 0x3a, 0x29, 0xb3, 0x1b, 0x83, 0x9c, 0x25, 0xfc, 0x48, 0xd3, 0x12, 0x57, 0x1e, 0x7f, 0xe2, 0x81, 0xfc, 0x83, 0x15, 0xc6, 0xa9, 0x70, 0x75, 0xa0, 0xe1, 0xa4, 0xf5, 0x4b, 0x98, 0x5e, 0x49, 0x38, 0x94, 0x3a, 0x17, 0x98, 0x60, 0x51, 0x7e, 0x3c, 0x88, 0x23, 0x31, 0xc5, 0x05, 0x25, 0x56, 0xd3, 0x23, 0xc3, 0x67, 0x82, 0x5e, 0x86, 0xc4, 0x34, 0x9c, 0xaf, 0xb0, 0x25, 0x53, 0x52, 0xe5, 0xda, 0x06, 0x34, 0xab, 0x1c, 0x51, 0xb1, 0xf8, 0x4b, 0x01, 0xce, 0xa1, 0x4e, 0x91, 0x7c, 0xff, 0x23, 0x28, 0xe6, 0x90, 0xc8, 0xcd, 0x00, 0xbf, 0xe3, 0x9b, 0x0b, 0x5a, 0x7e, 0xd8, 0x63, 0x78, 0xa3, 0xaa, 0x91, 0x31, 0x28, 0x23, 0xc7, 0xb1, 0x2a, 0x62, 0x48, 0x37, 0x90, 0x2c, 0xd1, 0x79, 0x63, 0x0a, 0xec, 0xf7, 0x6f, 0xb0, 0xc7, 0x74, 0x4f, 0xf2, 0xa6, 0x2a, 0x77, 0x6f, 0xb1, 0xe3, 0x1e, 0x47, 0x3f, 0x9d, 0x4b, 0xea, 0x22, 0x67, 0x63, 0xdf, 0x18, 0xbb, 0x28, 0x1b, 0x75, 0x69, 0xc1, 0x61, 0xc3, 0x39, 0xb7, 0xb2, 0x34, 0x01, 0x71, 0x09, 0x9c, 0x8f, 0xa9, 0xb5, 0x6b, 0xa6, 0x5d, 0xd6, 0x4f, 0x88, 0x97, 0x9e, 0xd5, 0xdc, 0x7c, 0x9a, 0x19, 0x84, 0x89, 0x54, 0x38, 0x6a, 0xf1, 0x4c, 0x8b, 0x74, 0x4b, 0x84, 0x4c, 0xee, 0x66, 0x6e, 0x18, 0x9c, 0x16, 0x12, 0xec, 0x09, 0xe8, 0xa0, 0x0d, 0xb9, 0x69, 0x28, 0xb9, 0xd7, 0x21, 0xb6, 0x85, 0x83, 0x55, 0xaf, 0x57, 0xee, 0x11, 0x01, 0x0e, 0x1a, 0x2b, 0x3d, 0x40, 0xf2, 0xa0, 0xb8, 0xf1, 0xc3, 0xcb, 0x4c, 0xb0, 0xff, 0xce, 0x87, 0xa8, 0xd3, 0x36, 0x57, 0x0c, 0xc5, 0x23, 0xd2, 0xa5, 0x4e, 0x13, 0x35, 0x17, 0xa1, 0x91, 0x4f, 0xc3, 0x95, 0xa7, 0x41, 0x3d, 0x73, 0xa3, 0xb7, 0x9b, 0xdf, 0x20, 0x98, 0x8f, 0x0f, 0x2f, 0xd8, 0xd7, 0x9e, 0x9b, 0xdd, 0x9b, 0x80, 0xe0, 0x90, 0xa8, 0x70, 0x12, 0x57, 0xee, 0xbb, 0xf2, 0x48, 0x59, 0xf3, 0x73, 0x59, 0x13, 0x9a, 0x27, 0x3a, 0x00, 0xc8, 0x4c, 0xf3, 0x18, 0xe7, 0x6a, 0x18, 0xda, 0xde, 0xd5, 0xb1, 0xe5, 0x1f, 0x55, 0x11, 0xd6, 0x2a, 0x07, 0x6a, 0x00, 0x2f, 0xc0, 0x03, 0xd0, 0x89, 0x0f, 0x40, 0xfd, 0x67, 0xca, 0xf6, 0xd3, 0xda, 0x80, 0x5c, 0x40, 0xe2, 0x94, 0xf2, 0xc4, 0xe4, 0xde, 0xf5, 0xc2, 0x46, 0x9c, 0xca, 0xed, 0xbc, 0xe4, 0xf0, 0xea, 0x21, 0xba, 0xbb, 0xca, 0x30, 0x80, 0x0e, 0x38, 0x1e, 0xa6, 0xf5, 0x46, 0x24, 0x10, 0xd5, 0x60, 0x70, 0x10, 0x23, 0x30, 0x02, 0xd3, 0xc4, 0x0f, 0x63, 0x0b, 0xd6, 0x3a, 0xa8, 0x6c, 0xe2, 0x37, 0x32, 0x61, 0x9d, 0x07, 0xa7, 0xd6, 0x07, 0xbd, 0x3b, 0xdb, 0x60, 0x1f, 0x16, 0x53, 0xbb, 0x29, 0x37, 0x9a, 0x4e, 0xea, 0xcd, 0x1f, 0x54, 0x40, 0x6e, 0x41, 0xf1, 0x9f, 0x01, 0xf3, 0x00, 0xad, 0xb1, 0x23, 0x0a, 0xfa, 0x07, 0x04, 0xc1, 0xbf, 0xeb, 0x21, 0xfe, 0x71, 0xee, 0x72, 0xf1, 0x04, 0x05, 0x69, 0x8a, 0xc3, 0x25, 0x16, 0xc4, 0xd7, 0xc3, 0xbe, 0xa1, 0xe7, 0x0f, 0xf1, 0x7d, 0x95, 0x2e, 0x32, 0xbf, 0xb1, 0x28, 0xda, 0x1d, 0xc1, 0x02, 0xf9, 0x53, 0x86, 0x70, 0x46, 0xfb, 0x82, 0xa6, 0xd4, 0x9a, 0xe0, 0x14, 0xd3, 0x5a, 0xab, 0x6f, 0xa1, 0x08, 0xe2, 0x85, 0x45, 0xfc, 0xb9, 0xe1, 0xa9, 0x32, 0x80, 0xd2, 0x22, 0x3b, 0x64, 0xff, 0x5e, 0x5e, 0xe1, 0xa8, 0x55, 0x18, 0xc5, 0xf7, 0x2c, 0x0f, 0x44, 0x70, 0x41, 0x6e, 0x05, 0x2c, 0xa0, 0xd4, 0x52, 0x28, 0x18, 0xec, 0xf6, 0xa7, 0x38, 0x75, 0x49, 0x34, 0xdc, 0x0f, 0x96, 0x1d, 0xaf, 0x8f, 0xdf, 0xa0, 0x6a, 0x7e, 0x42, 0x83, 0xf4, 0xfc, 0xf2, 0xce, 0x71, 0xc7, 0xae, 0x15, 0x53, 0x22, 0x7b, 0x07, 0xb3, 0x19, 0x60, 0x2c, 0x6c, 0x60, 0xf3, 0x93, 0x58, 0x81, 0xa4, 0x60, 0x45, 0x0a, 0xcb, 0x6b, 0x28, 0x68, 0xfc, 0x9f, 0x71, 0x24, 0x57, 0x30, 0x94, 0x46, 0xcb, 0x08, 0xfe, 0x66, 0x33, 0x8b, 0xca, 0x95, 0x02, 0xae, 0xff, 0x88, 0xd3, 0x4a, 0x55, 0x36, 0x9b, 0x4c, 0x55, 0x72, 0x3b, 0x3e, 0x47, 0xe6, 0xf3, 0x43, 0x80, 0x99, 0xba, 0x23, 0x56, 0xa8, 0xa7, 0x06, 0x99, 0x0e, 0xbc, 0x5c, 0xa5, 0x1f, 0xae, 0x91, 0x8b, 0x40, 0xfb, 0x0f, 0x66, 0xb6, 0xf9, 0x12, 0xaf, 0xf7, 0xde, 0x67, 0x84, 0x1e, 0x55, 0x93, 0x01, 0x42, 0x8a, 0x62, 0xc7, 0x17, 0x14, 0xf6, 0x99, 0x0d, 0x30, 0x93, 0xea, 0xa7, 0xef, 0x28, 0x3d, 0x18, 0x7a, 0xbf, 0xd7, 0x45, 0x94, 0xd3, 0x5b, 0x79, 0x84, 0xbe, 0x1d, 0xf3, 0xf1, 0x8b, 0xdf, 0xd6, 0xa0, 0x15, 0xeb, 0xa8, 0x6f, 0x5c, 0x7d, 0x05, 0xe7, 0x57, 0xb2, 0x3f, 0x07, 0xfe, 0x66, 0x58, 0xf8, 0xf0, 0x2c, 0xe2, 0xa7, 0x9a, 0x1d, 0x97, 0x81, 0xdb, 0x75, 0x36, 0x0d, 0x1b, 0x5b, 0x79, 0xce, 0x1c, 0xda, 0x1c, 0x83, 0xea, 0x56, 0x47, 0xd1, 0x7d, 0xe3, 0xd2, 0xc4, 0x49, 0xd3, 0x0d, 0x6a, 0x62, 0x69, 0xc5, 0x02, 0xba, 0x39, 0x4c, 0x60, 0x5f, 0x5a, 0x96, 0x43, 0x88, 0xba, 0x6d, 0xba, 0xb1, 0x76, 0xa9, 0xde, 0x72, 0xd0, 0xd8, 0x1c, 0xf2, 0x30, 0x0d, 0x53, 0x23, 0xa5, 0x75, 0xf9, 0x9e, 0x68, 0xe7, 0x64, 0x62, 0xa3, 0x71, 0x34, 0x90, 0xb0, 0xdc, 0x3b, 0x4c, 0xf7, 0x8a, 0xad, 0x06, 0xa1, 0xdc, 0x4f, 0x7a, 0x34, 0x3c, 0x4f, 0x8f, 0x67, 0xe8, 0x15, 0x02, 0xfb, 0x36, 0xdf, 0x12, 0xde, 0xac, 0x23, 0x07, 0x48, 0x16, 0x78, 0x86, 0x9b, 0xf3, 0x17, 0xf2, 0x34, 0xcf, 0x11, 0xe9, 0x94, 0x64, 0x68, 0x44, 0x06, 0x64, 0xaa, 0x91, 0x28, 0x30, 0xff, 0xe8, 0xa9, 0xd4, 0xe6, 0x25, 0x7c, 0x68, 0xb2, 0x34, 0x6b, 0xf8, 0xa3, 0xe2, 0x72, 0x03, 0x14, 0x09, 0xc2, 0x21, 0xfa, 0xfa, 0x64, 0x15, 0xc4, 0x4f, 0x0b, 0xbb, 0x23, 0xe3, 0xad, 0xd1, 0x2f, 0xcc, 0x60, 0xad, 0xd3, 0x89, 0x20, 0x04, 0x99, 0xf2, 0xd2, 0xe7, 0x48, 0xc4, 0x8b, 0x34, 0xba, 0xcd, 0x5e, 0xad, 0x39, 0xab, 0x83, 0x32, 0xf2, 0x0d, 0x0d, 0xf8, 0x02, 0x83, 0x16, 0x08, 0xc4, 0x07, 0x48, 0x54, 0x95, 0x49, 0x4f, 0xaf, 0xc2, 0xcf, 0xc6, 0x11, 0xad, 0x72, 0xa0, 0xef, 0x27, 0x9b, 0xa2, 0xfa, 0x3d, 0x3c, 0x21, 0x5d, 0x23, 0xe6, 0x9c, 0x70, 0x78, 0x08, 0x88, 0x5b, 0x6a, 0xaa, 0xb3, 0xf6, 0x85, 0xe5, 0x18, 0xfc, 0x4d, 0xba, 0x6a, 0x86, 0xc6, 0x16, 0xd7, 0xc2, 0x87, 0xb6, 0x2b, 0xdb, 0x02, 0x16, 0xd7, 0xce, 0x3f, 0x54, 0x86, 0xb0, 0x22, 0x17, 0x1f, 0xdc, 0xd5, 0xec, 0x7f, 0xda, 0x75, 0x46, 0x60, 0x35, 0x89, 0x9a, 0xb1, 0xc9, 0xef, 0xd6, 0xdf, 0x21, 0x88, 0xb0, 0xd4, 0x00, 0xcd, 0x45, 0x84, 0xb6, 0xbc, 0xdd, 0x0f, 0x04, 0x60, 0xd5, 0x5e, 0xbe, 0x15, 0x89, 0xb9, 0x7b, 0x39, 0x0e, 0xe3, 0xb1, 0x06, 0x0e, 0xbd, 0xbe, 0x6c, 0xe6, 0x27, 0xca, 0xcd, 0x88, 0xe7, 0x89, 0x86, 0xc2, 0x23, 0xe8, 0xb8, 0x05, 0x42, 0x66, 0x4b, 0xd0, 0x29, 0x4c, 0x22, 0x5a, 0xce, 0xe7, 0x2b, 0x28, 0x79, 0xba, 0xdc, 0x0d, 0xf0, 0x9f, 0x83, 0xeb, 0xdf, 0xf8, 0xbc, 0xc1, 0xb5, 0x97, 0xf6, 0x1c, 0x5e, 0x5d, 0x3f, 0x93, 0x7d, 0x0a, 0x37, 0xaa, 0xf9, 0x92, 0xbf, 0x25, 0x6e, 0x01, 0xf0, 0xc6, 0x21, 0x36, 0x08, 0xd1, 0x1f, 0xe2, 0x72, 0xa3, 0x4b, 0x0c, 0x11, 0x46, 0x10, 0x3e, 0x80, 0x6d, 0xeb, 0x6f, 0xe1, 0x96, 0x51, 0xc9, 0x39, 0xec, 0x2c, 0xe1, 0xa2, 0xe4, 0x83, 0xf7, 0x65, 0x01, 0xc2, 0x14, 0xbb, 0xa5, 0xe6, 0x08, 0xea, 0x6d, 0x15, 0xa9, 0x20, 0x08, 0xec, 0xe5, 0x78, 0x0c, 0xf0, 0xbf, 0xf1, 0x45, 0xd7, 0xa4, 0xf9, 0x82, 0x9a, 0x20, 0xbe, 0x59, 0xe0, 0xc3, 0x85, 0x25, 0xf6, 0xfb, 0x4d, 0xdf, 0xe2, 0x59, 0x5d, 0x35, 0xf0, 0x48, 0x6a, 0x6c, 0x39, 0x80, 0xb7, 0xaf, 0x23, 0x9b, 0x4e, 0x9c, 0x27, 0x22, 0x10, 0x22, 0xbc, 0x5a, 0xef, 0x09, 0xfc, 0xa6, 0xb6, 0xb8, 0xc3, 0x86, 0x5c, 0xdf, 0x79, 0x37, 0xde, 0xd3, 0xa0, 0x6a, 0xe0, 0x9b, 0x17, 0xb3, 0x39, 0xd0, 0x44, 0xa6, 0xba, 0x00, 0x4c, 0xa6, 0xc1, 0x0a, 0x85, 0x61, 0xab, 0xf9, 0xdf, 0xe1, 0xbc, 0x06, 0x0a, 0x7a, 0x0f, 0x90, 0x4e, 0x27, 0xd0, 0xb9, 0x41, 0xb5, 0x21, 0xa0, 0xce, 0x37, 0x25, 0x33, 0x25, 0x65, 0x19, 0xe9, 0x26, 0xa7, 0x3e, 0x3b, 0x6e, 0xf7, 0x37, 0x51, 0x17, 0x9f, 0x16, 0xc0, 0x14, 0x8e, 0x40, 0x6b, 0x27, 0x3b, 0xb0, 0xdb, 0x4f, 0xa7, 0x3f, 0xaa, 0xe6, 0x89, 0x64, 0xf5, 0x16, 0xd9, 0x1e, 0xbc, 0x8d, 0xc7, 0x24, 0x4d, 0xd4, 0x41, 0x38, 0x0f, 0x1d, 0xdd, 0x48, 0x76, 0xe3, 0xfe, 0xef, 0xb0, 0x8c, 0x4d, 0x12, 0x77, 0xb0, 0x49, 0x6b, 0x9d, 0x12, 0xeb, 0xc7, 0x15, 0xe8, 0x09, 0x0e, 0x0f, 0xe5, 0x47, 0xbc, 0x4f, 0x59, 0x52, 0x69, 0xe7, 0x17, 0xbc, 0x5b, 0x78, 0xfb, 0x1f, 0x51, 0xb7, 0xee, 0xd3, 0xce, 0x20, 0x21, 0x8f, 0x2e, 0xc2, 0x7e, 0xcc, 0x95, 0xb8, 0xbd, 0x45, 0x13, 0xaf, 0x8a, 0x06, 0xe2, 0xb4, 0x89, 0x1c, 0xe0, 0x37, 0xdd, 0x59, 0x84, 0x92, 0xfb, 0x6e, 0xe0, 0x0a, 0x83, 0x07, 0x69, 0x06, 0xa9, 0xd0, 0x14, 0x55, 0xe5, 0xda, 0xb2, 0x0e, 0xf5, 0x61, 0x6a, 0x97, 0x6a, 0xc3, 0x6b, 0xe7, 0xd1, 0xe6, 0xcb, 0x4a, 0x35, 0xe3, 0x8c, 0x1f, 0x98, 0x9c, 0xd5, 0x9a, 0x22, 0xb2, 0xc0, 0x82, 0xd9, 0x52, 0x45, 0x1c, 0xe8, 0xb9, 0xff, 0x26, 0xb4, 0x59, 0xe1, 0x31, 0xdb, 0x1d, 0xca, 0x9e, 0x03, 0x88, 0xfc, 0x98, 0x2a, 0x79, 0xf7, 0xa1, 0x77, 0x89, 0x81, 0x32, 0x8b, 0x90, 0x9a, 0x2f, 0xaf, 0xe8, 0x34, 0x91, 0x23, 0xd0, 0x04, 0xd9, 0x49, 0xc1, 0x37, 0x1f, 0x4b, 0x3c, 0x7f, 0xf2, 0x4f, 0x85, 0x66, 0x37, 0xda, 0xd2, 0x6b, 0x1c, 0xa2, 0x60, 0xae, 0x4d, 0xb3, 0xa1, 0xc1, 0x66, 0x44, 0x94, 0x26, 0xe0, 0xa9, 0x8d, 0x0a, 0x26, 0x18, 0x6d, 0x7f, 0xc0, 0x29, 0x74, 0x77, 0xb5, 0x14, 0xc7, 0x7a, 0x8d, 0x9e, 0x14, 0x3c, 0x54, 0xbf, 0xb1, 0x6b, 0x5d, 0xae, 0xa7, 0x56, 0x1f, 0xc7, 0x3f, 0x80, 0x38, 0x8b, 0x6a, 0x40, 0x48, 0xbb, 0xb1, 0x23, 0x69, 0x52, 0xe3, 0xb9, 0x97, 0xd3, 0xcc, 0x72, 0x72, 0x10, 0x61, 0x54, 0x74, 0xdd, 0xf2, 0x8e, 0x58, 0xe3, 0x2f, 0x55, 0x48, 0x50, 0xbf, 0xfb, 0x2f, 0x05, 0xa8, 0x4a, 0x69, 0x43, 0x5e, 0x7b, 0x48, 0xef, 0x07, 0x41, 0x39, 0x38, 0x17, 0xb1, 0xaa, 0x86, 0xe2, 0xc5, 0xb5, 0xf7, 0xf4, 0x57, 0x31, 0x1d, 0xd7, 0xf3, 0x17, 0x33, 0x56, 0x86, 0x16, 0x64, 0xf3, 0x42, 0x04, 0x19, 0x22, 0x45, 0x2f, 0x18, 0xc2, 0xf3, 0x62, 0xa1, 0x75, 0x18, 0xdf, 0xae, 0x0d, 0x51, 0x1c, 0x6f, 0x05, 0xd3, 0x6d, 0x97, 0x2f, 0xff, 0x03, 0x25, 0xc8, 0xbd, 0x72, 0xfb, 0xfd, 0x50, 0x5c, 0x4a, 0x61, 0x00, 0x58, 0xde, 0xe9, 0x70, 0xc5, 0x16, 0xbb, 0xfa, 0xc8, 0x97, 0xf8, 0x5f, 0x3e, 0x47, 0xe6, 0x89, 0x66, 0x25, 0x26, 0x93, 0x50, 0xe5, 0x43, 0x94, 0xba, 0x3f, 0x37, 0xa4, 0x9e, 0x11, 0xdc, 0x7c, 0xcd, 0x26, 0x62, 0xfc, 0x5e, 0x79, 0xd0, 0x89, 0x39, 0xe6, 0x5e, 0xf7, 0x87, 0x80, 0xeb, 0x99, 0x9f, 0x1e, 0x0b, 0x92, 0xd5, 0x00, 0x46, 0x45, 0xb5, 0xa7, 0x69, 0xbd, 0xd4, 0x1f, 0x60, 0x2e, 0x3d, 0x7e, 0xd9, 0xe6, 0x8f, 0xb4, 0x9e, 0x32, 0xeb, 0x8a, 0xa2, 0x7f, 0x31, 0x01, 0x59, 0xc7, 0x65, 0x0a, 0x10, 0x71, 0x9f, 0x03, 0x7c, 0x86, 0x29, 0x32, 0x02, 0xae, 0x48, 0xc7, 0xbd, 0xf0, 0xf6, 0xfb, 0x53, 0x66, 0x89, 0x2a, 0xc3, 0x34, 0xca, 0x9c, 0xa4, 0x0b, 0x3a, 0x14, 0xb6, 0x92, 0xd3, 0x11, 0xd7, 0xa6, 0xab, 0xb0, 0xb5, 0x20, 0x7a, 0xe9, 0x84, 0x9a, 0x4c, 0xfb, 0x80, 0x01, 0x20, 0x02, 0x00, 0x00, 0x0a, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x0a, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x0a, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x0a, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x0a, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x0a, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x0a, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x0a, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x0a, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x74, 0x6f, 0x6d, 0x61, 0x72, 0x6b, 0x0a, 0x7b, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x7d, 0x69, 0x66, 0x80, 0x03, }; const int byte_size_HPGCalc_pfb = 63877; BINARYFILEDUMP const HPGCalc_pfb = { byte_data_HPGCalc_pfb, byte_size_HPGCalc_pfb }; ftgl-2.1.3~rc5/test/FTGlyph-Test.cpp0000644000175000017500000000503311022776770014131 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" class TestGlyph : public FTGlyph { public: TestGlyph(FT_GlyphSlot glyph) : FTGlyph(glyph), advance(FTPoint(Advance(), 0.0)) {} const FTPoint& Render(const FTPoint& pen, int renderMode) { return advance; }; private: FTPoint advance; }; class FTGlyphTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTGlyphTest); CPPUNIT_TEST(testBadConstructor); CPPUNIT_TEST(testGoodConstructor); CPPUNIT_TEST_SUITE_END(); public: FTGlyphTest() : CppUnit::TestCase("FTGlyph Test") {} FTGlyphTest(const std::string& name) : CppUnit::TestCase(name) {} void testBadConstructor() { TestGlyph testGlyph(0); CPPUNIT_ASSERT(0.0 == testGlyph.Advance()); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, testGlyph.BBox().Upper().Y(), 0.01); CPPUNIT_ASSERT_EQUAL(testGlyph.Error(), 0); } void testGoodConstructor() { setUpFreetype(CHARACTER_CODE_A); TestGlyph testGlyph(face->glyph); float testPoint = 47.0; float nextPoint = testGlyph.Advance(); CPPUNIT_ASSERT_DOUBLES_EQUAL(testPoint, nextPoint, 0.0001); CPPUNIT_ASSERT_DOUBLES_EQUAL(51.39, testGlyph.BBox().Upper().Y(), 0.01); CPPUNIT_ASSERT(testGlyph.Error() == 0); tearDownFreetype(); } void setUp() {} void tearDown() {} private: FT_Library library; FT_Face face; void setUpFreetype(unsigned int characterIndex) { FT_Error error = FT_Init_FreeType(&library); assert(!error); error = FT_New_Face(library, ARIAL_FONT_FILE, 0, &face); assert(!error); loadGlyph(characterIndex); } void loadGlyph(unsigned int characterIndex) { long glyphIndex = FT_Get_Char_Index(face, characterIndex); FT_Set_Char_Size(face, 0L, FONT_POINT_SIZE * 64, RESOLUTION, RESOLUTION); FT_Error error = FT_Load_Glyph(face, glyphIndex, FT_LOAD_DEFAULT); assert(!error); } void tearDownFreetype() { FT_Done_Face(face); FT_Done_FreeType(library); } }; CPPUNIT_TEST_SUITE_REGISTRATION(FTGlyphTest); ftgl-2.1.3~rc5/test/FTTesselation-Test.cpp0000644000175000017500000000363211005627226015333 00000000000000#include #include #include #include #include "FTInternals.h" #include "FTVectoriser.h" class FTTesselationTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTTesselationTest); CPPUNIT_TEST(testAddPoint); CPPUNIT_TEST(testGetPoint); CPPUNIT_TEST_SUITE_END(); public: FTTesselationTest() : CppUnit::TestCase("FTTesselation Test") {} FTTesselationTest(const std::string& name) : CppUnit::TestCase(name) {} void testAddPoint() { FTTesselation tesselation(1); CPPUNIT_ASSERT(tesselation.PointCount() == 0); tesselation.AddPoint(10, 3, 0.7); tesselation.AddPoint(-53, 2000, 23); tesselation.AddPoint(77, -2.4, 765); tesselation.AddPoint(117.5, 0.02, -99); CPPUNIT_ASSERT(tesselation.PointCount() == 4); tesselation.AddPoint(10, 3, -0.87); tesselation.AddPoint(117.5, 0.02, 34.76); tesselation.AddPoint(0.27, 44.4, 3000); tesselation.AddPoint(10, 3, 0); CPPUNIT_ASSERT(tesselation.PointCount() == 8); } void testGetPoint() { FTTesselation tesselation(1); CPPUNIT_ASSERT(tesselation.PointCount() == 0); tesselation.AddPoint(10, 3, 0.7); tesselation.AddPoint(-53, 2000, 23); tesselation.AddPoint(77, -2.4, 765); tesselation.AddPoint(117.5, 0.02, -99); CPPUNIT_ASSERT(tesselation.PointCount() == 4); CPPUNIT_ASSERT(tesselation.Point(2) == FTPoint(77, -2.4, 765)); CPPUNIT_ASSERT(tesselation.Point(20) != FTPoint(77, -2.4, 765)); } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTTesselationTest); ftgl-2.1.3~rc5/test/CTest.c0000644000175000017500000000245611014127744012357 00000000000000/* Small C bindings test program */ #include "config.h" #if defined HAVE_GL_GLUT_H # include #elif defined HAVE_GLUT_GLUT_H # include #else # error GLUT headers not present #endif #include #define ALLOC(ctor, var, arg) \ var = ctor(arg); \ if(var == NULL) \ return 2 int main(int argc, char *argv[]) { FTGLfont *f[6]; char *glutchar = NULL; int glutint = 0; int i; if(argc < 2) return 1; glutInit(&glutint, &glutchar); glutInitDisplayMode(GLUT_DEPTH | GLUT_RGB | GLUT_DOUBLE | GLUT_MULTISAMPLE); glutInitWindowPosition(0, 0); glutInitWindowSize(150, 150); glutCreateWindow("FTGL C test"); ALLOC(ftglCreateBitmapFont, f[0], argv[1]); ALLOC(ftglCreateExtrudeFont, f[1], argv[1]); ALLOC(ftglCreateOutlineFont, f[2], argv[1]); ALLOC(ftglCreatePixmapFont, f[3], argv[1]); ALLOC(ftglCreatePolygonFont, f[4], argv[1]); ALLOC(ftglCreateTextureFont, f[5], argv[1]); for(i = 0; i < 6; i++) ftglRenderFont(f[i], "Hello world", FTGL_RENDER_ALL); for(i = 0; i < 6; i++) ftglSetFontFaceSize(f[i], 37, 72); for(i = 0; i < 6; i++) ftglRenderFont(f[i], "Hello world", FTGL_RENDER_ALL); for(i = 0; i < 6; i++) ftglDestroyFont(f[i]); return 0; } ftgl-2.1.3~rc5/test/FTTextureGlyph-Test.cpp0000644000175000017500000000644411006143072015502 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTInternals.h" extern void buildGLContext(); class FTTextureGlyphTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTTextureGlyphTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testRender); CPPUNIT_TEST_SUITE_END(); public: FTTextureGlyphTest() : CppUnit::TestCase("FTTextureGlyph Test") { } FTTextureGlyphTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTTextureGlyphTest() { } void testConstructor() { setUpFreetype(); buildGLContext(); GLuint textureID; glGenTextures(1, &textureID); char* texture[64*64]; glBindTexture(GL_TEXTURE_2D, textureID); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, 64, 64, 0, GL_ALPHA, GL_UNSIGNED_BYTE, texture); FTTextureGlyph* textureGlyph = new FTTextureGlyph(face->glyph, textureID, 0, 0, 64, 64); CPPUNIT_ASSERT(textureGlyph->Error() == 0); CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR); tearDownFreetype(); } void testRender() { setUpFreetype(); buildGLContext(); GLuint textureID; glGenTextures(1, &textureID); char* texture[64*64]; glBindTexture(GL_TEXTURE_2D, textureID); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, 64, 64, 0, GL_ALPHA, GL_UNSIGNED_BYTE, texture); FTTextureGlyph* textureGlyph = new FTTextureGlyph(face->glyph, textureID, 0, 0, 64, 64); textureGlyph->Render(FTPoint(0, 0, 0), FTGL::RENDER_FRONT); CPPUNIT_ASSERT(textureGlyph->Error() == 0); CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR); tearDownFreetype(); } void setUp() {} void tearDown() {} private: FT_Library library; FT_Face face; void setUpFreetype() { FT_Error error = FT_Init_FreeType(&library); assert(!error); error = FT_New_Face(library, FONT_FILE, 0, &face); assert(!error); FT_Set_Char_Size(face, 0L, FONT_POINT_SIZE * 64, RESOLUTION, RESOLUTION); error = FT_Load_Char(face, CHARACTER_CODE_A, FT_LOAD_DEFAULT); assert(!error); } void tearDownFreetype() { FT_Done_Face(face); FT_Done_FreeType(library); } }; CPPUNIT_TEST_SUITE_REGISTRATION(FTTextureGlyphTest); ftgl-2.1.3~rc5/test/FTFont-Test.cpp0000644000175000017500000002135511022776632013756 00000000000000#include "cppunit/extensions/HelperMacros.h" #include "cppunit/TestCaller.h" #include "cppunit/TestCase.h" #include "cppunit/TestSuite.h" #include "Fontdefs.h" #include "FTGL/ftgl.h" class TestGlyph : public FTGlyph { public: TestGlyph(FT_GlyphSlot glyph) : FTGlyph(glyph), advance(FTPoint(Advance(), 0.0)) {} const FTPoint& Render(const FTPoint& pen, int renderMode){ return advance; } private: FTPoint advance; }; class TestFont : public FTFont { public: TestFont(const char* fontFilePath) : FTFont(fontFilePath) {} TestFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes) : FTFont(pBufferBytes, bufferSizeInBytes) {} FTGlyph* MakeGlyph(FT_GlyphSlot ftGlyph) { return new TestGlyph(ftGlyph); } }; class BadGlyphTestFont : public FTFont { public: BadGlyphTestFont(const char* fontFilePath) : FTFont(fontFilePath) {} FTGlyph* MakeGlyph(FT_GlyphSlot ftGlyph) { return new TestGlyph(ftGlyph); } private: bool CheckGlyph(const unsigned int chr) { static bool succeed = false; if(succeed == false) { succeed = true; return false; } return true; } }; class FTFontTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTFontTest); CPPUNIT_TEST(testOpenFont); CPPUNIT_TEST(testOpenFontFromMemory); CPPUNIT_TEST(testAttachFile); CPPUNIT_TEST(testAttachData); CPPUNIT_TEST(testSetFontSize); CPPUNIT_TEST(testSetCharMap); CPPUNIT_TEST(testGetCharmapList); CPPUNIT_TEST(testBoundingBox); CPPUNIT_TEST(testCheckGlyphFailure); CPPUNIT_TEST(testAdvance); CPPUNIT_TEST(testRender); CPPUNIT_TEST_SUITE_END(); public: FTFontTest() : CppUnit::TestCase("FTFont test") {}; FTFontTest(const std::string& name) : CppUnit::TestCase(name) {}; void testOpenFont() { TestFont badFont(BAD_FONT_FILE); CPPUNIT_ASSERT_EQUAL(badFont.Error(), 0x06); // invalid argument TestFont goodFont(GOOD_FONT_FILE); CPPUNIT_ASSERT_EQUAL(goodFont.Error(), 0); } void testOpenFontFromMemory() { TestFont badFont((unsigned char*)100, 0); CPPUNIT_ASSERT_EQUAL(badFont.Error(), 0x02); TestFont goodFont(HPGCalc_pfb.dataBytes, HPGCalc_pfb.numBytes); CPPUNIT_ASSERT_EQUAL(goodFont.Error(), 0); } void testAttachFile() { testFont->Attach(TYPE1_AFM_FILE); CPPUNIT_ASSERT_EQUAL(testFont->Error(), 0x07); // unimplemented feature } void testAttachData() { testFont->Attach((unsigned char*)100, 0); CPPUNIT_ASSERT_EQUAL(testFont->Error(), 0x07); // unimplemented feature } void testSetFontSize() { CPPUNIT_ASSERT_DOUBLES_EQUAL(0, testFont->Ascender(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, testFont->Descender(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, testFont->LineHeight(), 0.01); float advance = testFont->Advance(GOOD_UNICODE_TEST_STRING); CPPUNIT_ASSERT_EQUAL(advance, 0.f); CPPUNIT_ASSERT(testFont->FaceSize(FONT_POINT_SIZE)); CPPUNIT_ASSERT_EQUAL(testFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(testFont->FaceSize(), FONT_POINT_SIZE); CPPUNIT_ASSERT_DOUBLES_EQUAL(52, testFont->Ascender(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(-15, testFont->Descender(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(81.86, testFont->LineHeight(), 0.01); CPPUNIT_ASSERT(testFont->FaceSize(FONT_POINT_SIZE * 2)); CPPUNIT_ASSERT_EQUAL(testFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(testFont->FaceSize(), FONT_POINT_SIZE * 2); CPPUNIT_ASSERT_DOUBLES_EQUAL(104, testFont->Ascender(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(-29, testFont->Descender(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(163.72, testFont->LineHeight(), 0.01); } void testSetCharMap() { CPPUNIT_ASSERT(true == testFont->CharMap(ft_encoding_unicode)); CPPUNIT_ASSERT_EQUAL(testFont->Error(), 0); CPPUNIT_ASSERT(false == testFont->CharMap(ft_encoding_johab)); CPPUNIT_ASSERT_EQUAL(testFont->Error(), 0x06); // invalid argument } void testGetCharmapList() { CPPUNIT_ASSERT_EQUAL(testFont->CharMapCount(), 2U); FT_Encoding* charmapList = testFont->CharMapList(); CPPUNIT_ASSERT_EQUAL(charmapList[0], ft_encoding_unicode); CPPUNIT_ASSERT_EQUAL(charmapList[1], ft_encoding_adobe_standard); } void testBoundingBox() { CPPUNIT_ASSERT(testFont->FaceSize(FONT_POINT_SIZE)); CPPUNIT_ASSERT_EQUAL(testFont->Error(), 0); FTBBox bbox; bbox = testFont->BBox(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_DOUBLES_EQUAL(1.21, bbox.Lower().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(-15.12, bbox.Lower().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0.00, bbox.Lower().Z(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(307.43, bbox.Upper().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(51.54, bbox.Upper().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0.00, bbox.Upper().Z(), 0.01); testFont->BBox(BAD_ASCII_TEST_STRING); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Lower().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Lower().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Lower().Z(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Upper().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Upper().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Upper().Z(), 0.01); testFont->BBox(GOOD_UNICODE_TEST_STRING); CPPUNIT_ASSERT_DOUBLES_EQUAL(2.15, bbox.Lower().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(-6.12, bbox.Lower().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0.00, bbox.Lower().Z(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(134.28, bbox.Upper().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(61.12, bbox.Upper().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0.00, bbox.Upper().Z(), 0.01); testFont->BBox(BAD_UNICODE_TEST_STRING); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Lower().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Lower().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Lower().Z(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Upper().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Upper().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Upper().Z(), 0.01); testFont->BBox((char*)0); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Lower().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Lower().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Lower().Z(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Upper().X(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Upper().Y(), 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, bbox.Upper().Z(), 0.01); } void testCheckGlyphFailure() { BadGlyphTestFont* font = new BadGlyphTestFont(GOOD_FONT_FILE); float advance = font->Advance(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_DOUBLES_EQUAL(0.0, advance, 0.01); } void testAdvance() { CPPUNIT_ASSERT(testFont->FaceSize(FONT_POINT_SIZE)); CPPUNIT_ASSERT_EQUAL(testFont->Error(), 0); float advance = testFont->Advance(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_DOUBLES_EQUAL(312.10, advance, 0.01); advance = testFont->Advance(BAD_ASCII_TEST_STRING); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, advance, 0.01); advance = testFont->Advance(GOOD_UNICODE_TEST_STRING); CPPUNIT_ASSERT_DOUBLES_EQUAL(144, advance, 0.01); advance = testFont->Advance(BAD_UNICODE_TEST_STRING); CPPUNIT_ASSERT_DOUBLES_EQUAL(0, advance, 0.01); } void testRender() { testFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(testFont->Error(), 0); } void setUp() { testFont = new TestFont(GOOD_FONT_FILE); } void tearDown() { delete testFont; } private: TestFont* testFont; }; CPPUNIT_TEST_SUITE_REGISTRATION(FTFontTest); ftgl-2.1.3~rc5/test/FTOutlineFont-Test.cpp0000644000175000017500000000543111006540240015275 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTInternals.h" extern void buildGLContext(); class FTOutlineFontTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTOutlineFontTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testRender); CPPUNIT_TEST(testBadDisplayList); CPPUNIT_TEST(testGoodDisplayList); CPPUNIT_TEST_SUITE_END(); public: FTOutlineFontTest() : CppUnit::TestCase("FTOutlineFont Test") { } FTOutlineFontTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTOutlineFontTest() { } void testConstructor() { buildGLContext(); FTOutlineFont* outlineFont = new FTOutlineFont(FONT_FILE); CPPUNIT_ASSERT_EQUAL(outlineFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete outlineFont; } void testRender() { buildGLContext(); FTOutlineFont* outlineFont = new FTOutlineFont(FONT_FILE); outlineFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(outlineFont->Error(), 0x97); // Invalid pixels per em CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); outlineFont->FaceSize(18); outlineFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(outlineFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete outlineFont; } void testBadDisplayList() { buildGLContext(); FTOutlineFont* outlineFont = new FTOutlineFont(FONT_FILE); outlineFont->FaceSize(18); int glList = glGenLists(1); glNewList(glList, GL_COMPILE); outlineFont->Render(GOOD_ASCII_TEST_STRING); glEndList(); CPPUNIT_ASSERT_EQUAL((int)glGetError(), GL_INVALID_OPERATION); delete outlineFont; } void testGoodDisplayList() { buildGLContext(); FTOutlineFont* outlineFont = new FTOutlineFont(FONT_FILE); outlineFont->FaceSize(18); outlineFont->UseDisplayList(false); int glList = glGenLists(1); glNewList(glList, GL_COMPILE); outlineFont->Render(GOOD_ASCII_TEST_STRING); glEndList(); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete outlineFont; } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTOutlineFontTest); ftgl-2.1.3~rc5/test/FTContour-Test.cpp0000644000175000017500000001061211005341320014452 00000000000000#include #include #include #include #include "FTContour.h" // FT_Curve_Tag_On 1 // FT_Curve_Tag_Conic 0 // FT_Curve_Tag_Cubic 2 static FT_Vector shortLine[2] = { { 1, 1}, { 2, 2}, }; static FT_Vector straightLinePoints[3] = { { 0, 0}, { 6, 7}, { 9, -2} }; static char straightLineTags[3] = { FT_Curve_Tag_On, FT_Curve_Tag_On, FT_Curve_Tag_On }; static char brokenTags[3] = { FT_Curve_Tag_Conic, 69, FT_Curve_Tag_On }; static FT_Vector simpleConicPoints[3] = { { 0, 0}, { 6, 7}, { 9, -2} }; static FT_Vector brokenPoints[3] = { { 0, 0}, { 0, 0}, { 0, 0} }; static char simpleConicTags[3] = { FT_Curve_Tag_Conic, FT_Curve_Tag_On, FT_Curve_Tag_On }; static FT_Vector doubleConicPoints[4] = { { 0, 0}, { 6, 7}, { 9, -2}, { 4, 0} }; static char doubleConicTags[4] = { FT_Curve_Tag_On, FT_Curve_Tag_On, FT_Curve_Tag_Conic, FT_Curve_Tag_Conic }; static FT_Vector cubicPoints[4] = { { 0, 0}, { 6, 7}, { 9, -2}, { 4, 0} }; static char cubicTags[4] = { FT_Curve_Tag_On, FT_Curve_Tag_On, FT_Curve_Tag_Cubic, FT_Curve_Tag_Cubic }; // ARIAl 'd' static FT_Vector compositePoints[18] = { { 1856, 0 }, { 1856, 279 }, { 1625, -64 }, { 1175, -64 }, { 884, -64 }, { 396, 251 }, { 128, 815 }, { 128, 1182 }, { 128, 1539 }, { 370, 2121 }, { 855, 2432 }, { 1156, 2432 }, { 1375, 2432 }, { 1718, 2257 }, { 1826, 2118 }, { 1826, 3264 }, { 2240, 3264 }, { 2240, 0 }, }; static char compositeTags[18] = { FT_Curve_Tag_On, FT_Curve_Tag_On, FT_Curve_Tag_Conic, FT_Curve_Tag_On, FT_Curve_Tag_Conic, FT_Curve_Tag_Conic, FT_Curve_Tag_Conic, FT_Curve_Tag_On, FT_Curve_Tag_Conic, FT_Curve_Tag_Conic, FT_Curve_Tag_Conic, FT_Curve_Tag_On, FT_Curve_Tag_Conic, FT_Curve_Tag_Conic, FT_Curve_Tag_On, FT_Curve_Tag_On, FT_Curve_Tag_On, FT_Curve_Tag_On }; class FTContourTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTContourTest); CPPUNIT_TEST(testNullCurve); CPPUNIT_TEST(testBrokenCurve); CPPUNIT_TEST(testStraightLine); CPPUNIT_TEST(testConicCurve); CPPUNIT_TEST(testDoubleConicCurve); CPPUNIT_TEST(testCubicCurve); CPPUNIT_TEST(testCompositeCurve); CPPUNIT_TEST_SUITE_END(); public: FTContourTest() : CppUnit::TestCase("FTContour Test") {} FTContourTest(const std::string& name) : CppUnit::TestCase(name) {} void testNullCurve() { FTContour contour(NULL, NULL, 0); CPPUNIT_ASSERT(contour.PointCount() == 0); } void testBrokenCurve() { FTContour contour(brokenPoints, simpleConicTags, 3); CPPUNIT_ASSERT(contour.PointCount() == 1); FTContour shortContour(shortLine, simpleConicTags, 2); CPPUNIT_ASSERT(shortContour.PointCount() == 6); FTContour reallyShortContour(shortLine, simpleConicTags, 1); CPPUNIT_ASSERT(reallyShortContour.PointCount() == 1); FTContour brokenTagtContour(shortLine, brokenTags, 3); CPPUNIT_ASSERT(brokenTagtContour.PointCount() == 7); } void testStraightLine() { FTContour contour(straightLinePoints, straightLineTags, 3); CPPUNIT_ASSERT(contour.PointCount() == 3); } void testConicCurve() { FTContour contour(simpleConicPoints, simpleConicTags, 3); CPPUNIT_ASSERT(contour.PointCount() == 7); } void testDoubleConicCurve() { FTContour contour(doubleConicPoints, doubleConicTags, 4); CPPUNIT_ASSERT(contour.PointCount() == 12); } void testCubicCurve() { FTContour contour(cubicPoints, cubicTags, 4); CPPUNIT_ASSERT(contour.PointCount() == 7); } void testCompositeCurve() { FTContour contour(compositePoints, compositeTags, 18); CPPUNIT_ASSERT(contour.PointCount() == 50); } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTContourTest); ftgl-2.1.3~rc5/test/FTMesh-Test.cpp0000644000175000017500000001026611005627226013736 00000000000000#include #include #include #include #include "FTInternals.h" #include "FTVectoriser.h" void CALLBACK ftglError(GLenum errCode, FTMesh* mesh); void CALLBACK ftglVertex(void* data, FTMesh* mesh); void CALLBACK ftglBegin(GLenum type, FTMesh* mesh); void CALLBACK ftglEnd(FTMesh* mesh); void CALLBACK ftglCombine(FTGL_DOUBLE coords[3], void* vertex_data[4], GLfloat weight[4], void** outData, FTMesh* mesh); static float POINT_DATA[] = { 10, 3, 0.7, -53, 2000, 23, 77, -2.4, 765, 117.5, 0.02, -99, 10, 3, -0.87, 117.5, 0.02, 34.76, 0.27, 44.4, 3000, 10, 3, 0 }; class FTMeshTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTMeshTest); CPPUNIT_TEST(testGetTesselation); CPPUNIT_TEST(testAddPoint); CPPUNIT_TEST(testTooManyPoints); CPPUNIT_TEST_SUITE_END(); public: FTMeshTest() : CppUnit::TestCase("FTMesh Test") {} FTMeshTest(const std::string& name) : CppUnit::TestCase(name) {} void testGetTesselation() { FTMesh mesh; CPPUNIT_ASSERT(mesh.Tesselation(0) == NULL); ftglBegin(GL_TRIANGLES, &mesh); ftglVertex(&POINT_DATA[0], &mesh); ftglVertex(&POINT_DATA[3], &mesh); ftglVertex(&POINT_DATA[6], &mesh); ftglVertex(&POINT_DATA[9], &mesh); ftglEnd(&mesh); CPPUNIT_ASSERT(mesh.Tesselation(0)); CPPUNIT_ASSERT(mesh.Tesselation(10) == NULL); } void testAddPoint() { FTGL_DOUBLE testPoint[3] = { 1, 2, 3 }; FTGL_DOUBLE* hole[] = { 0, 0, 0, 0 }; void *pHole = (void *)hole; FTMesh mesh; CPPUNIT_ASSERT(mesh.TesselationCount() == 0); ftglBegin(GL_TRIANGLES, &mesh); ftglVertex(&POINT_DATA[0], &mesh); ftglVertex(&POINT_DATA[3], &mesh); ftglVertex(&POINT_DATA[6], &mesh); ftglVertex(&POINT_DATA[9], &mesh); ftglEnd(&mesh); CPPUNIT_ASSERT(mesh.TesselationCount() == 1); CPPUNIT_ASSERT(mesh.Tesselation(0)->PolygonType() == GL_TRIANGLES); CPPUNIT_ASSERT(mesh.Tesselation(0)->PointCount() == 4); CPPUNIT_ASSERT(mesh.Error() == 0); ftglBegin(GL_QUADS, &mesh); ftglVertex(&POINT_DATA[12], &mesh); ftglVertex(&POINT_DATA[15], &mesh); ftglError(2, &mesh); ftglVertex(&POINT_DATA[18], &mesh); ftglCombine(testPoint, NULL, NULL, &pHole, &mesh); ftglVertex(&POINT_DATA[21], &mesh); ftglError(3, &mesh); ftglEnd(&mesh); CPPUNIT_ASSERT(mesh.TesselationCount() == 2); CPPUNIT_ASSERT(mesh.Tesselation(0)->PointCount() == 4); CPPUNIT_ASSERT(mesh.Tesselation(1)->PolygonType() == GL_QUADS); CPPUNIT_ASSERT(mesh.Tesselation(1)->PointCount() == 4); CPPUNIT_ASSERT(mesh.Error() == 3); CPPUNIT_ASSERT(mesh.TesselationCount() == 2); } void testTooManyPoints() { FTGL_DOUBLE testPoint[3] = { 1, 2, 3}; FTGL_DOUBLE* testOutput[] = { 0, 0, 0, 0}; void *pOutput = (void *)testOutput; FTGL_DOUBLE* hole[] = { 0, 0, 0, 0}; void *pHole = (void *)hole; FTMesh mesh; unsigned int x; ftglBegin(GL_TRIANGLES, &mesh); ftglCombine(testPoint, NULL, NULL, &pOutput, &mesh); for(x = 0; x < 200; ++x) { ftglCombine(testPoint, NULL, NULL, &pHole, &mesh); } CPPUNIT_ASSERT(*testOutput == static_cast(mesh.TempPointList().front())); for(x = 201; x < 300; ++x) { ftglCombine(testPoint, NULL, NULL, &pHole, &mesh); } ftglEnd(&mesh); CPPUNIT_ASSERT(*testOutput == static_cast(mesh.TempPointList().front())); } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTMeshTest); ftgl-2.1.3~rc5/test/FTPolygonFont-Test.cpp0000644000175000017500000000543211006540240015306 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTInternals.h" extern void buildGLContext(); class FTPolygonFontTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTPolygonFontTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testRender); CPPUNIT_TEST(testBadDisplayList); CPPUNIT_TEST(testGoodDisplayList); CPPUNIT_TEST_SUITE_END(); public: FTPolygonFontTest() : CppUnit::TestCase("FTPolygonFont Test") { } FTPolygonFontTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTPolygonFontTest() { } void testConstructor() { buildGLContext(); FTPolygonFont* polygonFont = new FTPolygonFont(FONT_FILE); CPPUNIT_ASSERT_EQUAL(polygonFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete polygonFont; } void testRender() { buildGLContext(); FTPolygonFont* polygonFont = new FTPolygonFont(FONT_FILE); polygonFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(polygonFont->Error(), 0x97); // Invalid pixels per em CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); polygonFont->FaceSize(18); polygonFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(polygonFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete polygonFont; } void testBadDisplayList() { buildGLContext(); FTPolygonFont* polygonFont = new FTPolygonFont(FONT_FILE); polygonFont->FaceSize(18); int glList = glGenLists(1); glNewList(glList, GL_COMPILE); polygonFont->Render(GOOD_ASCII_TEST_STRING); glEndList(); CPPUNIT_ASSERT_EQUAL((int)glGetError(), GL_INVALID_OPERATION); delete polygonFont; } void testGoodDisplayList() { buildGLContext(); FTPolygonFont* polygonFont = new FTPolygonFont(FONT_FILE); polygonFont->FaceSize(18); polygonFont->UseDisplayList(false); int glList = glGenLists(1); glNewList(glList, GL_COMPILE); polygonFont->Render(GOOD_ASCII_TEST_STRING); glEndList(); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete polygonFont; } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTPolygonFontTest); ftgl-2.1.3~rc5/test/FTOutlineGlyph-Test.cpp0000644000175000017500000000442011006143072015451 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTInternals.h" extern void buildGLContext(); class FTOutlineGlyphTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTOutlineGlyphTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testRender); CPPUNIT_TEST_SUITE_END(); public: FTOutlineGlyphTest() : CppUnit::TestCase("FTOutlineGlyph Test") { } FTOutlineGlyphTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTOutlineGlyphTest() { } void testConstructor() { setUpFreetype(); buildGLContext(); FTOutlineGlyph* outlineGlyph = new FTOutlineGlyph(face->glyph, 0, true); CPPUNIT_ASSERT(outlineGlyph->Error() == 0); CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR); tearDownFreetype(); } void testRender() { setUpFreetype(); buildGLContext(); FTOutlineGlyph* outlineGlyph = new FTOutlineGlyph(face->glyph, 0, true); outlineGlyph->Render(FTPoint(0, 0, 0), FTGL::RENDER_FRONT); CPPUNIT_ASSERT(outlineGlyph->Error() == 0); CPPUNIT_ASSERT(glGetError() == GL_NO_ERROR); tearDownFreetype(); } void setUp() {} void tearDown() {} private: FT_Library library; FT_Face face; void setUpFreetype() { FT_Error error = FT_Init_FreeType(&library); assert(!error); error = FT_New_Face(library, FONT_FILE, 0, &face); assert(!error); FT_Set_Char_Size(face, 0L, FONT_POINT_SIZE * 64, RESOLUTION, RESOLUTION); error = FT_Load_Char(face, CHARACTER_CODE_A, FT_LOAD_DEFAULT); assert(!error); } void tearDownFreetype() { FT_Done_Face(face); FT_Done_FreeType(library); } }; CPPUNIT_TEST_SUITE_REGISTRATION(FTOutlineGlyphTest); ftgl-2.1.3~rc5/test/FTBitmapFont-Test.cpp0000644000175000017500000000571011006540240015072 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTInternals.h" extern void buildGLContext(); class FTBitmapFontTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTBitmapFontTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testRender); CPPUNIT_TEST(testPenPosition); CPPUNIT_TEST(testDisplayList); CPPUNIT_TEST_SUITE_END(); public: FTBitmapFontTest() : CppUnit::TestCase("FTBitmapFont Test") { } FTBitmapFontTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTBitmapFontTest() { } void testConstructor() { buildGLContext(); FTBitmapFont* bitmapFont = new FTBitmapFont(FONT_FILE); CPPUNIT_ASSERT_EQUAL(bitmapFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete bitmapFont; } void testRender() { buildGLContext(); FTBitmapFont* bitmapFont = new FTBitmapFont(FONT_FILE); bitmapFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(bitmapFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); bitmapFont->FaceSize(18); bitmapFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(bitmapFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete bitmapFont; } void testPenPosition() { buildGLContext(); float rasterPosition[4]; glRasterPos2f(0.0f,0.0f); glGetFloatv(GL_CURRENT_RASTER_POSITION, rasterPosition); CPPUNIT_ASSERT_DOUBLES_EQUAL(0.0, rasterPosition[0], 0.01); FTBitmapFont* bitmapFont = new FTBitmapFont(FONT_FILE); bitmapFont->FaceSize(18); bitmapFont->Render(GOOD_ASCII_TEST_STRING); bitmapFont->Render(GOOD_ASCII_TEST_STRING); glGetFloatv(GL_CURRENT_RASTER_POSITION, rasterPosition); CPPUNIT_ASSERT_DOUBLES_EQUAL(122, rasterPosition[0], 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(0.0, rasterPosition[1], 0.01); delete bitmapFont; } void testDisplayList() { buildGLContext(); FTBitmapFont* bitmapFont = new FTBitmapFont(FONT_FILE); bitmapFont->FaceSize(18); int glList = glGenLists(1); glNewList(glList, GL_COMPILE); bitmapFont->Render(GOOD_ASCII_TEST_STRING); glEndList(); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete bitmapFont; } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTBitmapFontTest); ftgl-2.1.3~rc5/test/FTLibrary-Test.cpp0000644000175000017500000000214111005341320014423 00000000000000#include #include #include #include #include "FTLibrary.h" class FTLibraryTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTLibraryTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testError); CPPUNIT_TEST_SUITE_END(); public: FTLibraryTest() : CppUnit::TestCase("FTLibrary Test") {} FTLibraryTest(const std::string& name) : CppUnit::TestCase(name) {} void testConstructor() { const FTLibrary& libraryOne = FTLibrary::Instance(); const FTLibrary& libraryTwo = FTLibrary::Instance(); CPPUNIT_ASSERT(&libraryOne == &libraryTwo); CPPUNIT_ASSERT(&libraryOne == &FTLibrary::Instance()); } void testError() { const FTLibrary& library = FTLibrary::Instance(); CPPUNIT_ASSERT(library.Error() == 0); } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTLibraryTest); ftgl-2.1.3~rc5/test/FTVectoriser-Test.cpp0000644000175000017500000002752011005627226015170 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTInternals.h" #include "FTVectoriser.h" static double testOutline[] = { 28, 0, 0.0, 28, 4.53125, 0.0, 26.4756, 2.54, 0.0, 24.69, 0.99125, 0.0, 22.6431, -0.115, 0.0, 20.335, -0.77875, 0.0, 17.7656, -1, 0.0, 16.0434, -0.901563, 0.0, 14.3769, -0.60625, 0.0, 12.7659, -0.114062, 0.0, 11.2106, 0.575, 0.0, 9.71094, 1.46094, 0.0, 8.30562, 2.52344, 0.0, 7.03344, 3.74219, 0.0, 5.89437, 5.11719, 0.0, 4.88844, 6.64844, 0.0, 4.01562, 8.33594, 0.0, 3.29, 10.1538, 0.0, 2.72563, 12.0759, 0.0, 2.3225, 14.1025, 0.0, 2.08063, 16.2334, 0.0, 2, 18.4688, 0.0, 2.07312, 20.6591, 0.0, 2.2925, 22.7675, 0.0, 2.65812, 24.7941, 0.0, 3.17, 26.7388, 0.0, 3.82812, 28.6016, 0.0, 4.6325, 30.3381, 0.0, 5.58313, 31.9041, 0.0, 6.68, 33.2994, 0.0, 7.92313, 34.5241, 0.0, 9.3125, 35.5781, 0.0, 10.8088, 36.45, 0.0, 12.3725, 37.1281, 0.0, 14.0038, 37.6125, 0.0, 15.7025, 37.9031, 0.0, 17.4688, 38, 0.0, 18.7647, 37.9438, 0.0, 20.0025, 37.775, 0.0, 21.1822, 37.4938, 0.0, 22.3038, 37.1, 0.0, 23.3672, 36.5938, 0.0, 24.3631, 35.9975, 0.0, 25.2822, 35.3338, 0.0, 26.1244, 34.6025, 0.0, 26.8897, 33.8037, 0.0, 27.5781, 32.9375, 0.0, 27.5781, 51, 0.0, 34, 51, 0.0, 34, 0, 0.0, 8.375, 18.4844, 0.0, 8.49312, 15.7491, 0.0, 8.8475, 13.3056, 0.0, 9.43813, 11.1541, 0.0, 10.265, 9.29437, 0.0, 11.3281, 7.72656, 0.0, 12.5519, 6.44688, 0.0, 13.8606, 5.45156, 0.0, 15.2544, 4.74062, 0.0, 16.7331, 4.31406, 0.0, 18.2969, 4.17188, 0.0, 19.8669, 4.30781, 0.0, 21.3394, 4.71563, 0.0, 22.7144, 5.39531, 0.0, 23.9919, 6.34688, 0.0, 25.1719, 7.57031, 0.0, 26.19, 9.07312, 0.0, 26.9819, 10.8628, 0.0, 27.5475, 12.9394, 0.0, 27.8869, 15.3028, 0.0, 28, 17.9531, 0.0, 27.8847, 20.8591, 0.0, 27.5388, 23.4394, 0.0, 26.9622, 25.6941, 0.0, 26.155, 27.6231, 0.0, 25.1172, 29.2266, 0.0, 23.9106, 30.5231, 0.0, 22.5972, 31.5316, 0.0, 21.1769, 32.2519, 0.0, 19.6497, 32.6841, 0.0, 18.0156, 32.8281, 0.0, 16.4203, 32.69, 0.0, 14.9344, 32.2756, 0.0, 13.5578, 31.585, 0.0, 12.2906, 30.6181, 0.0, 11.1328, 29.375, 0.0, 10.14, 27.8344, 0.0, 9.36781, 25.975, 0.0, 8.81625, 23.7969, 0.0, 8.48531, 21.3, 0.0, 8.375, 18.4844, 0.0 }; static GLenum testMeshPolygonTypes[] = { GL_TRIANGLE_FAN, GL_TRIANGLE_STRIP, GL_TRIANGLE_STRIP, GL_TRIANGLE_STRIP, GL_TRIANGLE_STRIP, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLE_FAN, GL_TRIANGLE_FAN, GL_TRIANGLE_STRIP, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLE_STRIP, GL_TRIANGLES }; static unsigned int testMeshPointCount[] = { 8, 7, 7, 11, 7, 9, 5, 6, 6, 7, 17, 6, 19, 3, }; static double testMesh[] = { 28, 4.53125, 0.0, 28, 0, 0.0, 34, 0, 0.0, 28, 17.9531, 0.0, 27.8869, 15.3028, 0.0, 27.5475, 12.9394, 0.0, 26.9819, 10.8628, 0.0, 26.4756, 2.54, 0.0, 26.9819, 10.8628, 0.0, 26.19, 9.07312, 0.0, 26.4756, 2.54, 0.0, 25.1719, 7.57031, 0.0, 24.69, 0.99125, 0.0, 23.9919, 6.34688, 0.0, 22.7144, 5.39531, 0.0, 24.69, 0.99125, 0.0, 22.7144, 5.39531, 0.0, 22.6431, -0.115, 0.0, 21.3394, 4.71563, 0.0, 20.335, -0.77875, 0.0, 19.8669, 4.30781, 0.0, 18.2969, 4.17188, 0.0, 20.335, -0.77875, 0.0, 18.2969, 4.17188, 0.0, 17.7656, -1, 0.0, 16.7331, 4.31406, 0.0, 16.0434, -0.901563, 0.0, 15.2544, 4.74062, 0.0, 14.3769, -0.60625, 0.0, 13.8606, 5.45156, 0.0, 12.7659, -0.114062, 0.0, 12.5519, 6.44688, 0.0, 11.3281, 7.72656, 0.0, 12.7659, -0.114062, 0.0, 11.3281, 7.72656, 0.0, 11.2106, 0.575, 0.0, 10.265, 9.29437, 0.0, 9.71094, 1.46094, 0.0, 9.43813, 11.1541, 0.0, 8.8475, 13.3056, 0.0, 8.81625, 23.7969, 0.0, 9.3125, 35.5781, 0.0, 8.48531, 21.3, 0.0, 7.92313, 34.5241, 0.0, 8.375, 18.4844, 0.0, 8.30562, 2.52344, 0.0, 8.49312, 15.7491, 0.0, 9.71094, 1.46094, 0.0, 8.8475, 13.3056, 0.0, 34, 51, 0.0, 27.5781, 51, 0.0, 27.8847, 20.8591, 0.0, 28, 17.9531, 0.0, 34, 0, 0.0, 27.5781, 32.9375, 0.0, 26.8897, 33.8037, 0.0, 26.9622, 25.6941, 0.0, 27.5388, 23.4394, 0.0, 27.8847, 20.8591, 0.0, 27.5781, 51, 0.0, 26.155, 27.6231, 0.0, 26.9622, 25.6941, 0.0, 26.8897, 33.8037, 0.0, 26.1244, 34.6025, 0.0, 25.2822, 35.3338, 0.0, 25.1172, 29.2266, 0.0, 22.3038, 37.1, 0.0, 22.5972, 31.5316, 0.0, 23.3672, 36.5938, 0.0, 23.9106, 30.5231, 0.0, 24.3631, 35.9975, 0.0, 25.1172, 29.2266, 0.0, 25.2822, 35.3338, 0.0, 11.1328, 29.375, 0.0, 12.2906, 30.6181, 0.0, 12.3725, 37.1281, 0.0, 13.5578, 31.585, 0.0, 14.0038, 37.6125, 0.0, 14.9344, 32.2756, 0.0, 15.7025, 37.9031, 0.0, 16.4203, 32.69, 0.0, 17.4688, 38, 0.0, 18.0156, 32.8281, 0.0, 18.7647, 37.9438, 0.0, 19.6497, 32.6841, 0.0, 20.0025, 37.775, 0.0, 21.1769, 32.2519, 0.0, 21.1822, 37.4938, 0.0, 22.5972, 31.5316, 0.0, 22.3038, 37.1, 0.0, 10.8088, 36.45, 0.0, 9.3125, 35.5781, 0.0, 9.36781, 25.975, 0.0, 10.14, 27.8344, 0.0, 11.1328, 29.375, 0.0, 12.3725, 37.1281, 0.0, 8.30562, 2.52344, 0.0, 7.92313, 34.5241, 0.0, 7.03344, 3.74219, 0.0, 6.68, 33.2994, 0.0, 5.89437, 5.11719, 0.0, 5.58313, 31.9041, 0.0, 4.88844, 6.64844, 0.0, 4.6325, 30.3381, 0.0, 4.01562, 8.33594, 0.0, 3.82812, 28.6016, 0.0, 3.29, 10.1538, 0.0, 3.17, 26.7388, 0.0, 2.72563, 12.0759, 0.0, 2.65812, 24.7941, 0.0, 2.3225, 14.1025, 0.0, 2.2925, 22.7675, 0.0, 2.08063, 16.2334, 0.0, 2.07312, 20.6591, 0.0, 2, 18.4688, 0.0, 9.3125, 35.5781, 0.0, 8.81625, 23.7969, 0.0, 9.36781, 25.975, 0.0 }; class FTVectoriserTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTVectoriserTest); CPPUNIT_TEST(testFreetypeVersion); CPPUNIT_TEST(testNullGlyphProcess); CPPUNIT_TEST(testBadGlyphProcess); CPPUNIT_TEST(testSimpleGlyphProcess); CPPUNIT_TEST(testComplexGlyphProcess); CPPUNIT_TEST(testGetContour); CPPUNIT_TEST(testGetOutline); CPPUNIT_TEST(testGetMesh); CPPUNIT_TEST(testMakeMesh); CPPUNIT_TEST_SUITE_END(); public: FTVectoriserTest() : CppUnit::TestCase("FTVectoriser Test") {} FTVectoriserTest(const std::string& name) : CppUnit::TestCase(name) {} void testFreetypeVersion() { setUpFreetype(NULL_CHARACTER_INDEX); FT_Int major; FT_Int minor; FT_Int patch; FT_Library_Version(library, &major, &minor, &patch); // If you hit these asserts then you have the wrong library version to run the tests. // You can still run the tests but some will fail because the hinter changed in 2.1.4 CPPUNIT_ASSERT_EQUAL(2, major); CPPUNIT_ASSERT_EQUAL(1, minor); CPPUNIT_ASSERT(4 <= patch); tearDownFreetype(); } void testNullGlyphProcess() { FTVectoriser vectoriser(NULL); CPPUNIT_ASSERT_EQUAL((size_t)0, vectoriser.ContourCount()); } void testBadGlyphProcess() { setUpFreetype(NULL_CHARACTER_INDEX); FTVectoriser vectoriser(face->glyph); CPPUNIT_ASSERT_EQUAL((size_t)0, vectoriser.ContourCount()); tearDownFreetype(); } void testSimpleGlyphProcess() { setUpFreetype(SIMPLE_CHARACTER_INDEX); FTVectoriser vectoriser(face->glyph); CPPUNIT_ASSERT_EQUAL((size_t)2, vectoriser.ContourCount()); CPPUNIT_ASSERT_EQUAL((size_t)8, vectoriser.PointCount()); tearDownFreetype(); } void testComplexGlyphProcess() { setUpFreetype(COMPLEX_CHARACTER_INDEX); FTVectoriser vectoriser(face->glyph); CPPUNIT_ASSERT_EQUAL((size_t)2, vectoriser.ContourCount()); CPPUNIT_ASSERT_EQUAL((size_t)91, vectoriser.PointCount()); tearDownFreetype(); } void testGetContour() { setUpFreetype(SIMPLE_CHARACTER_INDEX); FTVectoriser vectoriser(face->glyph); CPPUNIT_ASSERT(vectoriser.Contour(1)); CPPUNIT_ASSERT(vectoriser.Contour(99) == NULL); tearDownFreetype(); } void testGetOutline() { setUpFreetype(COMPLEX_CHARACTER_INDEX); FTVectoriser vectoriser(face->glyph); unsigned int d = 0; for(size_t c = 0; c < vectoriser.ContourCount(); ++c) { const FTContour* contour = vectoriser.Contour(c); for(size_t p = 0; p < contour->PointCount(); ++p) { CPPUNIT_ASSERT_DOUBLES_EQUAL(*(testOutline + d), contour->Point(p).X() / 64.0f, 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(*(testOutline + d + 1), contour->Point(p).Y() / 64.0f, 0.01); d += 3; } } tearDownFreetype(); } void testGetMesh() { setUpFreetype(SIMPLE_CHARACTER_INDEX); FTVectoriser vectoriser(face->glyph); CPPUNIT_ASSERT(vectoriser.GetMesh() == NULL); vectoriser.MakeMesh(FTGL_FRONT_FACING); CPPUNIT_ASSERT(vectoriser.GetMesh()); } void testMakeMesh() { setUpFreetype(COMPLEX_CHARACTER_INDEX); FTVectoriser vectoriser(face->glyph); vectoriser.MakeMesh(FTGL_FRONT_FACING); int d = 0; const FTMesh* mesh = vectoriser.GetMesh(); unsigned int tesselations = mesh->TesselationCount(); CPPUNIT_ASSERT_EQUAL(14U, tesselations); for(unsigned int index = 0; index < tesselations; ++index) { const FTTesselation* subMesh = mesh->Tesselation(index); unsigned int polyType = subMesh->PolygonType(); CPPUNIT_ASSERT_EQUAL(testMeshPolygonTypes[index], polyType); unsigned int numberOfVertices = subMesh->PointCount(); CPPUNIT_ASSERT_EQUAL(testMeshPointCount[index], numberOfVertices); for(unsigned int x = 0; x < numberOfVertices; ++x) { CPPUNIT_ASSERT_DOUBLES_EQUAL(*(testMesh + d), subMesh->Point(x).X() / 64, 0.01); CPPUNIT_ASSERT_DOUBLES_EQUAL(*(testMesh + d + 1), subMesh->Point(x).Y() / 64, 0.01); d += 3; } } tearDownFreetype(); } void setUp() {} void tearDown() {} private: FT_Library library; FT_Face face; void setUpFreetype(unsigned int characterIndex) { FT_Error error = FT_Init_FreeType(&library); assert(!error); error = FT_New_Face(library, ARIAL_FONT_FILE, 0, &face); assert(!error); loadGlyph(characterIndex); } void loadGlyph(unsigned int characterIndex) { long glyphIndex = FT_Get_Char_Index(face, characterIndex); FT_Set_Char_Size(face, 0L, FONT_POINT_SIZE * 64, RESOLUTION, RESOLUTION); FT_Error error = FT_Load_Glyph(face, glyphIndex, FT_LOAD_DEFAULT); assert(!error); } void tearDownFreetype() { FT_Done_Face(face); FT_Done_FreeType(library); } }; CPPUNIT_TEST_SUITE_REGISTRATION(FTVectoriserTest); ftgl-2.1.3~rc5/test/FTList-Test.cpp0000644000175000017500000000326311005341320013740 00000000000000#include #include #include #include #include "FTList.h" class FTListTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTListTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testPushBack); CPPUNIT_TEST(testGetBack); CPPUNIT_TEST(testGetFront); CPPUNIT_TEST_SUITE_END(); public: FTListTest() : CppUnit::TestCase("FTList Test") {} FTListTest(const std::string& name) : CppUnit::TestCase(name) {} void testConstructor() { FTList listOfFloats; CPPUNIT_ASSERT(listOfFloats.size() == 0); } void testPushBack() { FTList listOfFloats; CPPUNIT_ASSERT(listOfFloats.size() == 0); listOfFloats.push_back(0.1); listOfFloats.push_back(1.2); listOfFloats.push_back(2.3); CPPUNIT_ASSERT(listOfFloats.size() == 3); } void testGetBack() { FTList listOfIntegers; listOfIntegers.push_back(0); listOfIntegers.push_back(1); listOfIntegers.push_back(2); CPPUNIT_ASSERT(listOfIntegers.back() == 2); } void testGetFront() { FTList listOfChars; listOfChars.push_back('a'); listOfChars.push_back('b'); listOfChars.push_back('c'); CPPUNIT_ASSERT(listOfChars.front() == 'a'); } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTListTest); ftgl-2.1.3~rc5/test/Makefile.am0000644000175000017500000000315111020644162013211 00000000000000 if HAVE_CPPUNIT if HAVE_GLUT noinst_PROGRAMS = CTest CXXTest endif endif CXXTest_SOURCES = \ $(DEACTIVATED) \ CXXTest.cpp \ Fontdefs.h \ FTBBox-Test.cpp \ FTBitmapFont-Test.cpp \ FTBitmapGlyph-Test.cpp \ FTCharmap-Test.cpp \ FTCharToGlyphIndexMap-Test.cpp \ FTContour-Test.cpp \ FTExtrudeFont-Test.cpp \ FTExtrudeGlyph-Test.cpp \ FTFace-Test.cpp \ FTFont-Test.cpp \ FTGlyph-Test.cpp \ FTGlyphContainer-Test.cpp \ FTlayout-Test.cpp \ FTLibrary-Test.cpp \ FTList-Test.cpp \ FTMesh-Test.cpp \ FTOutlineFont-Test.cpp \ FTOutlineGlyph-Test.cpp \ FTPixmapFont-Test.cpp \ FTPixmapGlyph-Test.cpp \ FTPoint-Test.cpp \ FTPolygonFont-Test.cpp \ FTPolygonGlyph-Test.cpp \ FTSize-Test.cpp \ FTTesselation-Test.cpp \ FTTextureFont-Test.cpp \ FTTextureGlyph-Test.cpp \ FTVectoriser-Test.cpp \ FTVector-Test.cpp \ HPGCalc_afm.cpp \ HPGCalc_pfb.cpp \ $(NULL) AM_CPPFLAGS = \ $(FT2_CPPFLAGS) \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/FTFont \ -I$(top_srcdir)/src/FTGlyph \ -I$(top_srcdir)/src/FTLayout \ $(NULL) CXXTest_CXXFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) CXXTest_LDFLAGS = $(FT2_LIBS) $(GLUT_LIBS) -lcppunit CXXTest_LDADD = ../src/libftgl.la CTest_SOURCES = \ CTest.c \ $(NULL) CTest_CPPFLAGS = \ -I$(top_srcdir)/include \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/FTGlyph \ -I$(top_srcdir)/src/FTFont \ -I$(top_srcdir)/src/FTLayout CTest_CFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS) CTest_LDFLAGS = $(FT2_LIBS) $(GLUT_LIBS) CTest_LDADD = ../src/libftgl.la NULL = ftgl-2.1.3~rc5/test/FTExtrudeFont-Test.cpp0000644000175000017500000000545411006540240015303 00000000000000#include #include #include #include #include #include "Fontdefs.h" #include "FTGL/ftgl.h" #include "FTInternals.h" extern void buildGLContext(); class FTExtrudeFontTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(FTExtrudeFontTest); CPPUNIT_TEST(testConstructor); CPPUNIT_TEST(testRender); CPPUNIT_TEST(testBadDisplayList); CPPUNIT_TEST(testGoodDisplayList); CPPUNIT_TEST_SUITE_END(); public: FTExtrudeFontTest() : CppUnit::TestCase("FTExtrudeFont Test") { } FTExtrudeFontTest(const std::string& name) : CppUnit::TestCase(name) {} ~FTExtrudeFontTest() { } void testConstructor() { buildGLContext(); FTExtrudeFont* extrudedFont = new FTExtrudeFont(FONT_FILE); CPPUNIT_ASSERT_EQUAL(extrudedFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete extrudedFont; } void testRender() { buildGLContext(); FTExtrudeFont* extrudedFont = new FTExtrudeFont(FONT_FILE); extrudedFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(extrudedFont->Error(), 0x97); // Invalid pixels per em CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); extrudedFont->FaceSize(18); extrudedFont->Render(GOOD_ASCII_TEST_STRING); CPPUNIT_ASSERT_EQUAL(extrudedFont->Error(), 0); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete extrudedFont; } void testBadDisplayList() { buildGLContext(); FTExtrudeFont* extrudedFont = new FTExtrudeFont(FONT_FILE); extrudedFont->FaceSize(18); int glList = glGenLists(1); glNewList(glList, GL_COMPILE); extrudedFont->Render(GOOD_ASCII_TEST_STRING); glEndList(); CPPUNIT_ASSERT_EQUAL((int)glGetError(), GL_INVALID_OPERATION); delete extrudedFont; } void testGoodDisplayList() { buildGLContext(); FTExtrudeFont* extrudedFont = new FTExtrudeFont(FONT_FILE); extrudedFont->FaceSize(18); extrudedFont->UseDisplayList(false); int glList = glGenLists(1); glNewList(glList, GL_COMPILE); extrudedFont->Render(GOOD_ASCII_TEST_STRING); glEndList(); CPPUNIT_ASSERT_EQUAL(GL_NO_ERROR, (int)glGetError()); delete extrudedFont; } void setUp() {} void tearDown() {} private: }; CPPUNIT_TEST_SUITE_REGISTRATION(FTExtrudeFontTest); ftgl-2.1.3~rc5/configure0000755000175000017500000311570211024231630012112 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for FTGL 2.1.3~rc5. # # Report bugs to . # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # PATH needs CR # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) as_nl=' ' IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. case $0 in *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi # Work around bugs in pre-3.0 UWIN ksh. for as_var in ENV MAIL MAILPATH do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi # Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # CDPATH. $as_unset CDPATH if test "x$CONFIG_SHELL" = x; then if (eval ":") 2>/dev/null; then as_have_required=yes else as_have_required=no fi if test $as_have_required = yes && (eval ": (as_func_return () { (exit \$1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = \"\$1\" ); then : else exitcode=1 echo positional parameters were not saved. fi test \$exitcode = 0) || { (exit 1); exit 1; } ( as_lineno_1=\$LINENO as_lineno_2=\$LINENO test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } ") 2> /dev/null; then : else as_candidate_shells= as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. case $as_dir in /*) for as_base in sh bash ksh sh5; do as_candidate_shells="$as_candidate_shells $as_dir/$as_base" done;; esac done IFS=$as_save_IFS for as_shell in $as_candidate_shells $SHELL; do # Try only shells that exist, to save several forks. if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { ("$as_shell") 2> /dev/null <<\_ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi : _ASEOF }; then CONFIG_SHELL=$as_shell as_have_required=yes if { "$as_shell" 2> /dev/null <<\_ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi : (as_func_return () { (exit $1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = "$1" ); then : else exitcode=1 echo positional parameters were not saved. fi test $exitcode = 0) || { (exit 1); exit 1; } ( as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } _ASEOF }; then break fi fi done if test "x$CONFIG_SHELL" != x; then for as_var in BASH_ENV ENV do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done export CONFIG_SHELL exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} fi if test $as_have_required = no; then echo This script requires a shell more modern than all the echo shells that I found on your system. Please install a echo modern shell, or manually run the script under such a echo shell if you do have one. { (exit 1); exit 1; } fi fi fi (eval "as_func_return () { (exit \$1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = \"\$1\" ); then : else exitcode=1 echo positional parameters were not saved. fi test \$exitcode = 0") || { echo No shell found that supports shell functions. echo Please tell autoconf@gnu.org about your system, echo including any error possibly output before this echo message } as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line after each line using $LINENO; the second 'sed' # does the real work. The second script uses 'N' to pair each # line-number line with the line containing $LINENO, and appends # trailing '-' during substitution so that $LINENO is not a special # case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # scripts with optimization help from Paolo Bonzini. Blame Lee # E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in -n*) case `echo 'x\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. *) ECHO_C='\c';; esac;; *) ECHO_N='-n';; esac if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir fi echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','` ;; esac echo=${ECHO-echo} if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "$0" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if (echo_test_string=`eval $cmd`) 2>/dev/null && echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL $0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL $0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "$0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo" fi tagnames=${tagnames+${tagnames},}CXX tagnames=${tagnames+${tagnames},}F77 exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='FTGL' PACKAGE_TARNAME='ftgl' PACKAGE_VERSION='2.1.3~rc5' PACKAGE_STRING='FTGL 2.1.3~rc5' PACKAGE_BUGREPORT='sam@zoy.org' ac_unique_file="src/FTPoint.cpp" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datarootdir datadir sysconfdir sharedstatedir localstatedir includedir oldincludedir docdir infodir htmldir dvidir pdfdir psdir libdir localedir mandir DEFS ECHO_C ECHO_N ECHO_T LIBS build_alias host_alias target_alias INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA am__isrc CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar build build_cpu build_vendor build_os host host_cpu host_vendor host_os CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE LT_MAJOR LT_MINOR LT_MICRO LT_VERSION CC CFLAGS ac_ct_CC CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE SED GREP EGREP LN_S ECHO AR RANLIB DSYMUTIL NMEDIT CPP CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL XMKMF FT2_CONFIG FT2_CFLAGS FT2_LIBS X_CFLAGS X_PRE_LIBS X_LIBS X_EXTRA_LIBS FRAMEWORK_OPENGL GL_CFLAGS GL_LIBS HAVE_GLUT_TRUE HAVE_GLUT_FALSE GLUT_CFLAGS GLUT_LIBS PKG_CONFIG CPPUNIT_CFLAGS CPPUNIT_LIBS HAVE_CPPUNIT_TRUE HAVE_CPPUNIT_FALSE DOXYGEN HAVE_DOXYGEN_TRUE HAVE_DOXYGEN_FALSE LATEX KPSEWHICH DVIPS CONVERT EPSTOPDF HAVE_LATEX_TRUE HAVE_LATEX_FALSE LIBOBJS LTLIBOBJS' ac_subst_files='' ac_precious_vars='build_alias host_alias target_alias CXX CXXFLAGS LDFLAGS LIBS CPPFLAGS CCC CC CFLAGS CPP CXXCPP F77 FFLAGS XMKMF PKG_CONFIG CPPUNIT_CFLAGS CPPUNIT_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` eval enable_$ac_feature=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` eval enable_$ac_feature=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/[-.]/_/g'` eval with_$ac_package=\$ac_optarg ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/[-.]/_/g'` eval with_$ac_package=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) { echo "$as_me: error: unrecognized option: $ac_option Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` { echo "$as_me: error: missing argument to $ac_option" >&2 { (exit 1); exit 1; }; } fi # Be sure to have absolute directory names. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 { (exit 1); exit 1; }; } done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used." >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || { echo "$as_me: error: Working directory cannot be determined" >&2 { (exit 1); exit 1; }; } test "X$ac_ls_di" = "X$ac_pwd_ls_di" || { echo "$as_me: error: pwd does not report name of working directory" >&2 { (exit 1); exit 1; }; } # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$0" || $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X"$0" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 { (exit 1); exit 1; }; } pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures FTGL 2.1.3~rc5 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/ftgl] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names X features: --x-includes=DIR X include files are in DIR --x-libraries=DIR X library files are in DIR System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of FTGL 2.1.3~rc5:";; esac cat <<\_ACEOF Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --disable-freetypetest Do not try to compile and run a test FreeType program Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-pic try to use only PIC/non-PIC objects [default=use both] --with-tags[=TAGS] include additional configurations [automatic] --with-x use the X Window System --with-ft-prefix=PREFIX Prefix where FreeType is installed (optional) --with-ft-exec-prefix=PREFIX Exec prefix where FreeType is installed (optional) --with-gl-inc=DIR Directory where GL/gl.h is installed --with-gl-lib=DIR Directory where OpenGL libraries are installed --with-glut-inc=DIR Directory where GL/glut.h is installed (optional) --with-glut-lib=DIR Directory where GLUT libraries are installed (optional) Some influential environment variables: CXX C++ compiler command CXXFLAGS C++ compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if you have headers in a nonstandard directory CC C compiler command CFLAGS C compiler flags CPP C preprocessor CXXCPP C++ preprocessor F77 Fortran 77 compiler command FFLAGS Fortran 77 compiler flags XMKMF Path to xmkmf, Makefile generator for X Window System PKG_CONFIG path to pkg-config utility CPPUNIT_CFLAGS C compiler flags for CPPUNIT, overriding pkg-config CPPUNIT_LIBS linker flags for CPPUNIT, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF FTGL configure 2.1.3~rc5 generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by FTGL $as_me 2.1.3~rc5, which was generated by GNU Autoconf 2.61. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; 2) ac_configure_args1="$ac_configure_args1 '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac done done $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo cat <<\_ASBOX ## ---------------- ## ## Cache variables. ## ## ---------------- ## _ASBOX echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *) $as_unset $ac_var ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo cat <<\_ASBOX ## ----------------- ## ## Output variables. ## ## ----------------- ## _ASBOX echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then cat <<\_ASBOX ## ------------------- ## ## File substitutions. ## ## ------------------- ## _ASBOX echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then cat <<\_ASBOX ## ----------- ## ## confdefs.h. ## ## ----------- ## _ASBOX echo cat confdefs.h echo fi test "$ac_signal" != 0 && echo "$as_me: caught signal $ac_signal" echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer explicitly selected file to automatically selected ones. if test -n "$CONFIG_SITE"; then set x "$CONFIG_SITE" elif test "x$prefix" != xNONE; then set x "$prefix/share/config.site" "$prefix/etc/config.site" else set x "$ac_default_prefix/share/config.site" \ "$ac_default_prefix/etc/config.site" fi shift for ac_site_file do if test -r "$ac_site_file"; then { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special # files actually), so we avoid doing that. if test -f "$cache_file"; then { echo "$as_me:$LINENO: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { echo "$as_me:$LINENO: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_aux_dir= for ac_dir in .auto "$srcdir"/.auto; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in .auto \"$srcdir\"/.auto" >&5 echo "$as_me: error: cannot find install-sh or install.sh in .auto \"$srcdir\"/.auto" >&2;} { (exit 1); exit 1; }; } fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. am__api_version='1.10' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in ./ | .// | /cC/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi done done ;; esac done IFS=$as_save_IFS fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { echo "$as_me:$LINENO: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { echo "$as_me:$LINENO: checking whether build environment is sane" >&5 echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&5 echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&2;} { (exit 1); exit 1; }; } fi test "$2" = conftest.file ) then # Ok. : else { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! Check your system clock" >&5 echo "$as_me: error: newly created file is older than distributed files! Check your system clock" >&2;} { (exit 1); exit 1; }; } fi { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. echo might interpret backslashes. # By default was `s,x,x', remove it if useless. cat <<\_ACEOF >conftest.sed s/[\\$]/&&/g;s/;s,x,x,$// _ACEOF program_transform_name=`echo $program_transform_name | sed -f conftest.sed` rm -f conftest.sed # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi { echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } if test -z "$MKDIR_P"; then if test "${ac_cv_path_mkdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. test -d ./--version && rmdir ./--version MKDIR_P="$ac_install_sh -d" fi fi { echo "$as_me:$LINENO: result: $MKDIR_P" >&5 echo "${ECHO_T}$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { echo "$as_me:$LINENO: result: $AWK" >&5 echo "${ECHO_T}$AWK" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$AWK" && break done { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } SET_MAKE= else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='ftgl' VERSION='2.1.3~rc5' # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. AMTAR=${AMTAR-"${am_missing_run}tar"} am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' ac_config_headers="$ac_config_headers config.h" DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi { echo "$as_me:$LINENO: result: $_am_result" >&5 echo "${ECHO_T}$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} { (exit 1); exit 1; }; } { echo "$as_me:$LINENO: checking build system type" >&5 echo $ECHO_N "checking build system type... $ECHO_C" >&6; } if test "${ac_cv_build+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} { (exit 1); exit 1; }; } fi { echo "$as_me:$LINENO: result: $ac_cv_build" >&5 echo "${ECHO_T}$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 echo "$as_me: error: invalid value of canonical build" >&2;} { (exit 1); exit 1; }; };; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { echo "$as_me:$LINENO: checking host system type" >&5 echo $ECHO_N "checking host system type... $ECHO_C" >&6; } if test "${ac_cv_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} { (exit 1); exit 1; }; } fi fi { echo "$as_me:$LINENO: result: $ac_cv_host" >&5 echo "${ECHO_T}$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 echo "$as_me: error: invalid value of canonical host" >&2;} { (exit 1); exit 1; }; };; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac if test "$build" = "$host" ; then case "$build" in *-*-irix*) if test -z "$CXX" ; then CXX=CC fi if test -z "$CC" ; then CC=cc fi if test x$CXX = xCC -a -z "$CXXFLAGS" ; then # It might be worthwhile to move this out of here, say # EXTRA_CXXFLAGS. Forcing -n32 might cause trouble, too. CXXFLAGS="-LANG:std -n32 -woff 1201 -O3" fi ;; esac fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { echo "$as_me:$LINENO: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CXX="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C++ compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { echo "$as_me:$LINENO: checking for C++ compiler default output file name" >&5 echo $ECHO_N "checking for C++ compiler default output file name... $ECHO_C" >&6; } ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # # List of possible output files, starting from the most likely. # The algorithm is not robust to junk in `.', hence go to wildcards (a.*) # only as a last resort. b.out is created by i960 compilers. ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' # # The IRIX 6 linker writes into existing files which may not be # executable, retaining their permissions. Remove them first so a # subsequent execution test works. ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { (ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link_default") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi { echo "$as_me:$LINENO: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6; } if test -z "$ac_file"; then echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: C++ compiler cannot create executables See \`config.log' for more details." >&5 echo "$as_me: error: C++ compiler cannot create executables See \`config.log' for more details." >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { echo "$as_me:$LINENO: checking whether the C++ compiler works" >&5 echo $ECHO_N "checking whether the C++ compiler works... $ECHO_C" >&6; } # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { echo "$as_me:$LINENO: error: cannot run C++ compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&5 echo "$as_me: error: cannot run C++ compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi fi fi { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } rm -f a.out a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6; } { echo "$as_me:$LINENO: checking for suffix of executables" >&5 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT { echo "$as_me:$LINENO: checking for suffix of object files" >&5 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; } if test "${ac_cv_cxx_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; } GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cxx_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CXXFLAGS="" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CXX" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi LT_MAJOR="2" LT_MINOR="1" LT_MICRO="3" LT_VERSION="$LT_MAJOR:$LT_MINOR:$LT_MICRO" # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi # Check whether --enable-static was given. if test "${enable_static+set}" = set; then enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CFLAGS="" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_c89=$ac_arg else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { echo "$as_me:$LINENO: result: none needed" >&5 echo "${ECHO_T}none needed" >&6; } ;; xno) { echo "$as_me:$LINENO: result: unsupported" >&5 echo "${ECHO_T}unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; esac ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi { echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6; } if test "${lt_cv_path_SED+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$lt_ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$lt_ac_prog$ac_exec_ext"; }; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done fi SED=$lt_cv_path_SED { echo "$as_me:$LINENO: result: $SED" >&5 echo "${ECHO_T}$SED" >&6; } { echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } if test "${ac_cv_path_GREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Extract the first word of "grep ggrep" to use in msg output if test -z "$GREP"; then set dummy grep ggrep; ac_prog_name=$2 if test "${ac_cv_path_GREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break ac_count=`expr $ac_count + 1` if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS fi GREP="$ac_cv_path_GREP" if test -z "$GREP"; then { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} { (exit 1); exit 1; }; } fi else ac_cv_path_GREP=$GREP fi fi { echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 echo "${ECHO_T}$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { echo "$as_me:$LINENO: checking for egrep" >&5 echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else # Extract the first word of "egrep" to use in msg output if test -z "$EGREP"; then set dummy egrep; ac_prog_name=$2 if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break ac_count=`expr $ac_count + 1` if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS fi EGREP="$ac_cv_path_EGREP" if test -z "$EGREP"; then { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} { (exit 1); exit 1; }; } fi else ac_cv_path_EGREP=$EGREP fi fi fi { echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { echo "$as_me:$LINENO: checking for ld used by $CC" >&5 echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } else { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 echo "${ECHO_T}$LD" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } { echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6; } if test "${lt_cv_ld_reload_flag+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_ld_reload_flag='-r' fi { echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac { echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5 echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6; } if test "${lt_cv_path_NM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi fi { echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 echo "${ECHO_T}$lt_cv_path_NM" >&6; } NM="$lt_cv_path_NM" { echo "$as_me:$LINENO: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else { echo "$as_me:$LINENO: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6; } fi { echo "$as_me:$LINENO: checking how to recognize dependent libraries" >&5 echo $ECHO_N "checking how to recognize dependent libraries... $ECHO_C" >&6; } if test "${lt_cv_deplibs_check_method+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux* | k*bsd*-gnu) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac fi { echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6; } file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line 4871 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" { echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6; } if test "${lt_cv_cc_needs_belf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_cv_cc_needs_belf=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6; } if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if test "${ac_cv_prog_CPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { echo "$as_me:$LINENO: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { echo "$as_me:$LINENO: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_header_stdc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF rm -f conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_Header=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in dlfcn.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------- ## ## Report this to sam@zoy.org ## ## -------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6; } if test -z "$CXXCPP"; then if test "${ac_cv_prog_CXXCPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then break fi done ac_cv_prog_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi { echo "$as_me:$LINENO: result: $CXXCPP" >&5 echo "${ECHO_T}$CXXCPP" >&6; } ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu fi ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$F77"; then ac_cv_prog_F77="$F77" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_F77="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi F77=$ac_cv_prog_F77 if test -n "$F77"; then { echo "$as_me:$LINENO: result: $F77" >&5 echo "${ECHO_T}$F77" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$F77" && break done fi if test -z "$F77"; then ac_ct_F77=$F77 for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_F77"; then ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_F77="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_F77=$ac_cv_prog_ac_ct_F77 if test -n "$ac_ct_F77"; then { echo "$as_me:$LINENO: result: $ac_ct_F77" >&5 echo "${ECHO_T}$ac_ct_F77" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$ac_ct_F77" && break done if test "x$ac_ct_F77" = x; then F77="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac F77=$ac_ct_F77 fi fi # Provide some information about the compiler. echo "$as_me:$LINENO: checking for Fortran 77 compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } rm -f a.out # If we don't use `.F' as extension, the preprocessor is not run on the # input file. (Note that this only needs to work for GNU compilers.) ac_save_ext=$ac_ext ac_ext=F { echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5 echo $ECHO_N "checking whether we are using the GNU Fortran 77 compiler... $ECHO_C" >&6; } if test "${ac_cv_f77_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF program main #ifndef __GNUC__ choke me #endif end _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_f77_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_f77_compiler_gnu=$ac_compiler_gnu fi { echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6; } ac_ext=$ac_save_ext ac_test_FFLAGS=${FFLAGS+set} ac_save_FFLAGS=$FFLAGS FFLAGS= { echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5 echo $ECHO_N "checking whether $F77 accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_f77_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else FFLAGS=-g cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_f77_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_f77_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_f77_g=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5 echo "${ECHO_T}$ac_cv_prog_f77_g" >&6; } if test "$ac_test_FFLAGS" = set; then FFLAGS=$ac_save_FFLAGS elif test $ac_cv_prog_f77_g = yes; then if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-g -O2" else FFLAGS="-g" fi else if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-O2" else FFLAGS= fi fi G77=`test $ac_compiler_gnu = yes && echo yes` ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! # find the maximum length of command line arguments { echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6; } if test "${lt_cv_sys_max_cmd_len+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} while (test "X"`$SHELL $0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then { echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6; } else { echo "$as_me:$LINENO: result: none" >&5 echo "${ECHO_T}none" >&6; } fi # Check for command to grab the raw symbol name followed by C symbol from nm. { echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6; } if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32*) symcode='[ABCDGISTW]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; linux* | k*bsd*-gnu) if test "$host_cpu" = ia64; then symcode='[ABCDGIRSTW]' lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Now try to grab the symbols. nlist=conftest.nm if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5 (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { echo "$as_me:$LINENO: result: failed" >&5 echo "${ECHO_T}failed" >&6; } else { echo "$as_me:$LINENO: result: ok" >&5 echo "${ECHO_T}ok" >&6; } fi { echo "$as_me:$LINENO: checking for objdir" >&5 echo $ECHO_N "checking for objdir... $ECHO_C" >&6; } if test "${lt_cv_objdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 echo "${ECHO_T}$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e 1s/^X//' sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AR="${ac_tool_prefix}ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { echo "$as_me:$LINENO: result: $AR" >&5 echo "${ECHO_T}$AR" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_AR="ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 echo "${ECHO_T}$ac_ct_AR" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi else AR="$ac_cv_prog_AR" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { echo "$as_me:$LINENO: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_RANLIB="ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6; } if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { echo "$as_me:$LINENO: checking for file" >&5 echo $ECHO_N "checking for file... $ECHO_C" >&6; } if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_DSYMUTIL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { echo "$as_me:$LINENO: result: $DSYMUTIL" >&5 echo "${ECHO_T}$DSYMUTIL" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { echo "$as_me:$LINENO: result: $ac_ct_DSYMUTIL" >&5 echo "${ECHO_T}$ac_ct_DSYMUTIL" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_NMEDIT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { echo "$as_me:$LINENO: result: $NMEDIT" >&5 echo "${ECHO_T}$NMEDIT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_NMEDIT="nmedit" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { echo "$as_me:$LINENO: result: $ac_ct_NMEDIT" >&5 echo "${ECHO_T}$ac_ct_NMEDIT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi { echo "$as_me:$LINENO: checking for -single_module linker flag" >&5 echo $ECHO_N "checking for -single_module linker flag... $ECHO_C" >&6; } if test "${lt_cv_apple_cc_single_mod+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. echo "int foo(void){return 1;}" > conftest.c $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib ${wl}-single_module conftest.c if test -f libconftest.dylib; then lt_cv_apple_cc_single_mod=yes rm -rf libconftest.dylib* fi rm conftest.c fi fi { echo "$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod" >&5 echo "${ECHO_T}$lt_cv_apple_cc_single_mod" >&6; } { echo "$as_me:$LINENO: checking for -exported_symbols_list linker flag" >&5 echo $ECHO_N "checking for -exported_symbols_list linker flag... $ECHO_C" >&6; } if test "${lt_cv_ld_exported_symbols_list+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_cv_ld_exported_symbols_list=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { echo "$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list" >&5 echo "${ECHO_T}$lt_cv_ld_exported_symbols_list" >&6; } case $host_os in rhapsody* | darwin1.[0123]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[012]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms="~$NMEDIT -s \$output_objdir/\${libname}-symbols.expsym \${lib}" fi if test "$DSYMUTIL" != ":"; then _lt_dsymutil="~$DSYMUTIL \$lib || :" else _lt_dsymutil= fi ;; esac enable_dlopen=no enable_win32_dll=no # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Check whether --with-pic was given. if test "${with_pic+set}" = set; then withval=$with_pic; pic_mode="$withval" else pic_mode=default fi test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= lt_save_CC="$CC" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm -r conftest* lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag=' -fno-builtin' { echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:7456: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:7460: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= { echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; *) lt_prog_compiler_pic='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic='-qnocommon' lt_prog_compiler_wl='-Wl,' ;; esac ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; linux* | k*bsd*-gnu) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Sun\ F*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; esac ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi { echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 echo "${ECHO_T}$lt_prog_compiler_pic" >&6; } # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_pic_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:7746: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:7750: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_pic_works" >&6; } if test x"$lt_cv_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_static_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $rm -r conftest* LDFLAGS="$save_LDFLAGS" fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_static_works" >&6; } if test x"$lt_cv_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_c_o+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:7850: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:7854: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6; } if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } runpath_var= allow_undefined_flag= enable_shared_with_static_runtimes=no archive_cmds= archive_expsym_cmds= old_archive_From_new_cmds= old_archive_from_expsyms_cmds= export_dynamic_flag_spec= whole_archive_flag_spec= thread_safe_flag_spec= hardcode_libdir_flag_spec= hardcode_libdir_flag_spec_ld= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no hardcode_shlibpath_var=unsupported link_all_deplibs=unknown hardcode_automatic=no module_cmds= module_expsym_cmds= always_export_symbols=no export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | k*bsd*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; *) tmp_sharedflag='-shared' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi link_all_deplibs=no else ld_shlibs=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_libdir_separator=':' link_all_deplibs=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # see comment about different semantics on the GNU ld section ld_shlibs=no ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported whole_archive_flag_spec='' link_all_deplibs=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs=no ;; esac fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; freebsd1*) ld_shlibs=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld='+b $libdir' hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld='-rpath $libdir' fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: link_all_deplibs=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac fi { echo "$as_me:$LINENO: result: $ld_shlibs" >&5 echo "${ECHO_T}$ld_shlibs" >&6; } test "$ld_shlibs" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } $rm conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc=no else archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* { echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 echo "${ECHO_T}$archive_cmds_need_lc" >&6; } ;; esac fi ;; esac { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$lt_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e 's/;/ /g'` else lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`echo $lt_tmp_lt_search_path_spec | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` sys_lib_search_path_spec=`echo $lt_search_path_spec` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[3-9]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" fi sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" fi sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || \ test -n "$runpath_var" || \ test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { echo "$as_me:$LINENO: result: $hardcode_action" >&5 echo "${ECHO_T}$hardcode_action" >&6; } if test "$hardcode_action" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi striplib= old_striplib= { echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi ;; *) { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } ;; esac fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) { echo "$as_me:$LINENO: checking for shl_load" >&5 echo $ECHO_N "checking for shl_load... $ECHO_C" >&6; } if test "${ac_cv_func_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define shl_load to an innocuous variant, in case declares shl_load. For example, HP-UX 11i declares gettimeofday. */ #define shl_load innocuous_shl_load /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shl_load (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef shl_load /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_shl_load || defined __stub___shl_load choke me #endif int main () { return shl_load (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_shl_load=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 echo "${ECHO_T}$ac_cv_func_shl_load" >&6; } if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; } if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_dld_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; } if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" else { echo "$as_me:$LINENO: checking for dlopen" >&5 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; } if test "${ac_cv_func_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define dlopen to an innocuous variant, in case declares dlopen. For example, HP-UX 11i declares gettimeofday. */ #define dlopen innocuous_dlopen /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef dlopen /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_dlopen || defined __stub___dlopen choke me #endif int main () { return dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_dlopen=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 echo "${ECHO_T}$ac_cv_func_dlopen" >&6; } if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else { echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6; } if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_svld_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6; } if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else { echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6; } if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_dld_dld_link=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; } if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" { echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6; } if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); } EOF if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 echo "${ECHO_T}$lt_cv_dlopen_self" >&6; } if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6; } if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); } EOF if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi # Report which library types will actually be built { echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6; } { echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6; } { echo "$as_me:$LINENO: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { echo "$as_me:$LINENO: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6; } # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler \ CC \ LD \ lt_prog_compiler_wl \ lt_prog_compiler_pic \ lt_prog_compiler_static \ lt_prog_compiler_no_builtin_flag \ export_dynamic_flag_spec \ thread_safe_flag_spec \ whole_archive_flag_spec \ enable_shared_with_static_runtimes \ old_archive_cmds \ old_archive_from_new_cmds \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ compiler_lib_search_dirs \ archive_cmds \ archive_expsym_cmds \ postinstall_cmds \ postuninstall_cmds \ old_archive_from_expsyms_cmds \ allow_undefined_flag \ no_undefined_flag \ export_symbols_cmds \ hardcode_libdir_flag_spec \ hardcode_libdir_flag_spec_ld \ hardcode_libdir_separator \ hardcode_automatic \ module_cmds \ module_expsym_cmds \ lt_cv_prog_compiler_c_o \ fix_srcfile_path \ exclude_expsyms \ include_expsyms; do case $var in old_archive_cmds | \ old_archive_from_new_cmds | \ archive_cmds | \ archive_expsym_cmds | \ module_cmds | \ module_expsym_cmds | \ old_archive_from_expsyms_cmds | \ export_symbols_cmds | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="${ofile}T" trap "$rm \"$cfgfile\"; exit 1" 1 2 15 $rm -f "$cfgfile" { echo "$as_me:$LINENO: creating $ofile" >&5 echo "$as_me: creating $ofile" >&6;} cat <<__EOF__ >> "$cfgfile" #! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler # Is the compiler the GNU C compiler? with_gcc=$GCC # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps # The directories searched by this compiler when creating a shared # library compiler_lib_search_dirs=$lt_compiler_lib_search_dirs # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # ### END LIBTOOL CONFIG __EOF__ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" # Check whether --with-tags was given. if test "${with_tags+set}" = set; then withval=$with_tags; tagnames="$withval" fi if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not exist" >&5 echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not look like a libtool script" >&5 echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;} else { echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} fi fi if test -z "$LTCFLAGS"; then eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in "") ;; *) { { echo "$as_me:$LINENO: error: invalid tag name: $tagname" >&5 echo "$as_me: error: invalid tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then { { echo "$as_me:$LINENO: error: tag name \"$tagname\" already exists" >&5 echo "$as_me: error: tag name \"$tagname\" already exists" >&2;} { (exit 1); exit 1; }; } fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_flag_spec_ld_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported hardcode_automatic_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= compiler_lib_search_dirs_CXX= # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o objext_CXX=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm -r conftest* # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC compiler_CXX=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { echo "$as_me:$LINENO: checking for ld used by $CC" >&5 echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } else { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 echo "${ECHO_T}$LD" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } { echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_CXX= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_CXX='' hardcode_direct_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes if test "$GXX" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_CXX=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_CXX=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_CXX='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_CXX=' ${wl}-bernotok' allow_undefined_flag_CXX=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' archive_cmds_need_lc_CXX=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi ;; darwin* | rhapsody*) archive_cmds_need_lc_CXX=no hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported whole_archive_flag_spec_CXX='' link_all_deplibs_CXX=yes allow_undefined_flag_CXX="$_lt_dar_allow_undefined" if test "$GXX" = yes ; then output_verbose_link_cmd='echo' archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" if test "$lt_cv_apple_cc_single_mod" != "yes"; then archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_CXX='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs_CXX=no ;; esac fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd[12]*) # C++ shared libraries reported to be fairly broken before switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; gnu*) ;; hpux9*) hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='${wl}-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) archive_cmds_CXX='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[-]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then archive_cmds_CXX='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) ;; *) export_dynamic_flag_spec_CXX='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; *) hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; interix[3-9]*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: ;; linux* | k*bsd*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' hardcode_libdir_flag_spec_CXX='${wl}--rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc*) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' hardcode_libdir_flag_spec_CXX='-R$libdir' whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; openbsd2*) # C++ shared libraries are fairly broken ld_shlibs_CXX=no ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' export_dynamic_flag_spec_CXX='${wl}-E' whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd='echo' else ld_shlibs_CXX=no fi ;; osf3*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' ;; esac link_all_deplibs_CXX=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then no_undefined_flag_CXX=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_CXX='${wl}-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. # So that behaviour is only enabled if SCOABSPATH is set to a # non-empty value in the environment. Most likely only useful for # creating official distributions of packages. # This is a hack until libtool officially supports absolute path # names for shared libraries. no_undefined_flag_CXX='${wl}-z,text' allow_undefined_flag_CXX='${wl}-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes export_dynamic_flag_spec_CXX='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac { echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6; } test "$ld_shlibs_CXX" = no && can_build_shared=no GCC_CXX="$GXX" LD_CXX="$LD" cat > conftest.$ac_ext <&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no # The `*' in the case matches for architectures that use `case' in # $output_verbose_cmd can trigger glob expansion during the loop # eval without this substitution. output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"` for p in `eval $output_verbose_link_cmd`; do case $p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" \ || test $p = "-R"; then prev=$p continue else prev= fi if test "$pre_test_object_deps_done" = no; then case $p in -L* | -R*) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX="${prev}${p}" else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$postdeps_CXX"; then postdeps_CXX="${prev}${p}" else postdeps_CXX="${postdeps_CXX} ${prev}${p}" fi fi ;; *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$predep_objects_CXX"; then predep_objects_CXX="$p" else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX="$p" else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $rm -f confest.$objext compiler_lib_search_dirs_CXX= if test -n "$compiler_lib_search_path_CXX"; then compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi # PORTME: override above test on systems where it is broken case $host_os in interix[3-9]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. predep_objects_CXX= postdep_objects_CXX= postdeps_CXX= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then postdeps_CXX='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then postdeps_CXX='-library=Cstd -library=Crun' fi ;; esac ;; esac case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= { echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_CXX=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix[4-9]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_CXX='-qnocommon' lt_prog_compiler_wl_CXX='-Wl,' ;; esac ;; dgux*) case $cc_basename in ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; icpc* | ecpc*) # Intel C++ lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fpic' lt_prog_compiler_static_CXX='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' ;; esac ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi { echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_CXX" >&6; } # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:12728: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:12732: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_CXX=yes fi fi $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_CXX" >&6; } if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_static_works_CXX=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works_CXX=yes fi else lt_cv_prog_compiler_static_works_CXX=yes fi fi $rm -r conftest* LDFLAGS="$save_LDFLAGS" fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_CXX" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_static_works_CXX" >&6; } if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then : else lt_prog_compiler_static_CXX= fi { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_CXX=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:12832: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:12836: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6; } if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix[4-9]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX="$ltdll_cmds" ;; cygwin* | mingw*) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' ;; linux* | k*bsd*-gnu) link_all_deplibs_CXX=no ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' { echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6; } test "$ld_shlibs_CXX" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } $rm conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_CXX pic_flag=$lt_prog_compiler_pic_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_CXX=no else archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5 echo "${ECHO_T}$archive_cmds_need_lc_CXX" >&6; } ;; esac fi ;; esac { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[3-9]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" fi sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" fi sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || \ test -n "$runpath_var_CXX" || \ test "X$hardcode_automatic_CXX" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_CXX" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, CXX)" != no && test "$hardcode_minus_L_CXX" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi { echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5 echo "${ECHO_T}$hardcode_action_CXX" >&6; } if test "$hardcode_action_CXX" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_CXX \ CC_CXX \ LD_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_static_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ export_dynamic_flag_spec_CXX \ thread_safe_flag_spec_CXX \ whole_archive_flag_spec_CXX \ enable_shared_with_static_runtimes_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX \ compiler_lib_search_dirs_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ postinstall_cmds_CXX \ postuninstall_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ export_symbols_cmds_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_flag_spec_ld_CXX \ hardcode_libdir_separator_CXX \ hardcode_automatic_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ lt_cv_prog_compiler_c_o_CXX \ fix_srcfile_path_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX; do case $var in old_archive_cmds_CXX | \ old_archive_from_new_cmds_CXX | \ archive_cmds_CXX | \ archive_expsym_cmds_CXX | \ module_cmds_CXX | \ module_expsym_cmds_CXX | \ old_archive_from_expsyms_cmds_CXX | \ export_symbols_cmds_CXX | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU C compiler? with_gcc=$GCC_CXX # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_CXX # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_CXX # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_CXX old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_CXX # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_CXX # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_CXX # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_CXX # The directories searched by this compiler when creating a shared # library compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_CXX # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_CXX # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_CXX # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu archive_cmds_need_lc_F77=no allow_undefined_flag_F77= always_export_symbols_F77=no archive_expsym_cmds_F77= export_dynamic_flag_spec_F77= hardcode_direct_F77=no hardcode_libdir_flag_spec_F77= hardcode_libdir_flag_spec_ld_F77= hardcode_libdir_separator_F77= hardcode_minus_L_F77=no hardcode_automatic_F77=no module_cmds_F77= module_expsym_cmds_F77= link_all_deplibs_F77=unknown old_archive_cmds_F77=$old_archive_cmds no_undefined_flag_F77= whole_archive_flag_spec_F77= enable_shared_with_static_runtimes_F77=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o objext_F77=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm -r conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${F77-"f77"} compiler=$CC compiler_F77=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` { echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6; } { echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6; } { echo "$as_me:$LINENO: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { echo "$as_me:$LINENO: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6; } GCC_F77="$G77" LD_F77="$LD" lt_prog_compiler_wl_F77= lt_prog_compiler_pic_F77= lt_prog_compiler_static_F77= { echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } if test "$GCC" = yes; then lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_static_F77='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_F77='-m68020 -resident32 -malways-restore-a4' ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_F77='-fno-common' ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_F77=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_F77=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_F77='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' else lt_prog_compiler_static_F77='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_F77='-qnocommon' lt_prog_compiler_wl_F77='-Wl,' ;; esac ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_F77='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_F77='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_F77='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_F77='-non_shared' ;; newsos6) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; linux* | k*bsd*-gnu) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-fpic' lt_prog_compiler_static_F77='-Bstatic' ;; ccc*) lt_prog_compiler_wl_F77='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' lt_prog_compiler_wl_F77='-Wl,' ;; *Sun\ F*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' lt_prog_compiler_wl_F77='' ;; esac ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_F77='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; rdos*) lt_prog_compiler_static_F77='-non_shared' ;; solaris*) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl_F77='-Qoption ld ';; *) lt_prog_compiler_wl_F77='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl_F77='-Qoption ld ' lt_prog_compiler_pic_F77='-PIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_F77='-Kconform_pic' lt_prog_compiler_static_F77='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; unicos*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_can_build_shared_F77=no ;; uts4*) lt_prog_compiler_pic_F77='-pic' lt_prog_compiler_static_F77='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_F77=no ;; esac fi { echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_F77" >&6; } # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_F77"; then { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_pic_works_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_pic_works_F77=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_F77" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:14430: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:14434: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_F77=yes fi fi $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_F77" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_F77" >&6; } if test x"$lt_cv_prog_compiler_pic_works_F77" = xyes; then case $lt_prog_compiler_pic_F77 in "" | " "*) ;; *) lt_prog_compiler_pic_F77=" $lt_prog_compiler_pic_F77" ;; esac else lt_prog_compiler_pic_F77= lt_prog_compiler_can_build_shared_F77=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_F77= ;; *) lt_prog_compiler_pic_F77="$lt_prog_compiler_pic_F77" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\" { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_static_works_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_static_works_F77=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works_F77=yes fi else lt_cv_prog_compiler_static_works_F77=yes fi fi $rm -r conftest* LDFLAGS="$save_LDFLAGS" fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_F77" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_static_works_F77" >&6; } if test x"$lt_cv_prog_compiler_static_works_F77" = xyes; then : else lt_prog_compiler_static_F77= fi { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_F77=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:14534: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:14538: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_F77=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_F77" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_F77" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6; } if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } runpath_var= allow_undefined_flag_F77= enable_shared_with_static_runtimes_F77=no archive_cmds_F77= archive_expsym_cmds_F77= old_archive_From_new_cmds_F77= old_archive_from_expsyms_cmds_F77= export_dynamic_flag_spec_F77= whole_archive_flag_spec_F77= thread_safe_flag_spec_F77= hardcode_libdir_flag_spec_F77= hardcode_libdir_flag_spec_ld_F77= hardcode_libdir_separator_F77= hardcode_direct_F77=no hardcode_minus_L_F77=no hardcode_shlibpath_var_F77=unsupported link_all_deplibs_F77=unknown hardcode_automatic_F77=no module_cmds_F77= module_expsym_cmds_F77= always_export_symbols_F77=no export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_F77= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_F77='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs_F77=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_F77='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_F77='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_F77="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_F77= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_F77=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs_F77=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_F77=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_F77='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_F77=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, F77) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_F77='-L$libdir' allow_undefined_flag_F77=unsupported always_export_symbols_F77=no enable_shared_with_static_runtimes_F77=yes export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_F77=no fi ;; interix[3-9]*) hardcode_direct_F77=no hardcode_shlibpath_var_F77=no hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_F77='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | k*bsd*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec_F77='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; *) tmp_sharedflag='-shared' ;; esac archive_cmds_F77='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds_F77='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi link_all_deplibs_F77=no else ld_shlibs_F77=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs_F77=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs_F77=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac ;; sunos4*) archive_cmds_F77='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac if test "$ld_shlibs_F77" = no; then runpath_var= hardcode_libdir_flag_spec_F77= export_dynamic_flag_spec_F77= whole_archive_flag_spec_F77= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_F77=unsupported always_export_symbols_F77=yes archive_expsym_cmds_F77='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_F77=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_F77=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_F77='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_F77='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_F77='' hardcode_direct_F77=yes hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_F77=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_F77=yes hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_libdir_separator_F77= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_F77=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_F77='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_f77_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_F77="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_F77='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_F77="-z nodefs" archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_f77_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_F77=' ${wl}-bernotok' allow_undefined_flag_F77=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_F77='$convenience' archive_cmds_need_lc_F77=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes # see comment about different semantics on the GNU ld section ld_shlibs_F77=no ;; bsdi[45]*) export_dynamic_flag_spec_F77=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_F77=' ' allow_undefined_flag_F77=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds_F77='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_F77='lib -OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path_F77='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_F77=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_F77='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_F77='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_F77=no hardcode_direct_F77=no hardcode_automatic_F77=yes hardcode_shlibpath_var_F77=unsupported whole_archive_flag_spec_F77='' link_all_deplibs_F77=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds_F77="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds_F77="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds_F77="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds_F77="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_F77='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs_F77=no ;; esac fi ;; dgux*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; freebsd1*) ld_shlibs_F77=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds_F77='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_F77='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_F77='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes export_dynamic_flag_spec_F77='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_F77='+b $libdir' hardcode_direct_F77=no hardcode_shlibpath_var_F77=no ;; *) hardcode_direct_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_F77='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld_F77='-rpath $libdir' fi hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: link_all_deplibs_F77=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_F77='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; newsos6) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_shlibpath_var_F77=no ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-R$libdir' ;; *) archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs_F77=no fi ;; os2*) hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes allow_undefined_flag_F77=unsupported archive_cmds_F77='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds_F77='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_F77='-rpath $libdir' fi hardcode_libdir_separator_F77=: ;; solaris*) no_undefined_flag_F77=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds_F77='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_shlibpath_var_F77=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec_F77='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs_F77=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_F77='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; sysv4) case $host_vendor in sni) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_F77='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_F77='$CC -r -o $output$reload_objs' hardcode_direct_F77=no ;; motorola) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_F77=no ;; sysv4.3*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no export_dynamic_flag_spec_F77='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_F77=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_F77='${wl}-z,text' archive_cmds_need_lc_F77=no hardcode_shlibpath_var_F77=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_F77='${wl}-z,text' allow_undefined_flag_F77='${wl}-z,nodefs' archive_cmds_need_lc_F77=no hardcode_shlibpath_var_F77=no hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes export_dynamic_flag_spec_F77='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; *) ld_shlibs_F77=no ;; esac fi { echo "$as_me:$LINENO: result: $ld_shlibs_F77" >&5 echo "${ECHO_T}$ld_shlibs_F77" >&6; } test "$ld_shlibs_F77" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_F77" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_F77=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_F77 in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } $rm conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_F77 pic_flag=$lt_prog_compiler_pic_F77 compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_F77 allow_undefined_flag_F77= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_F77=no else archive_cmds_need_lc_F77=yes fi allow_undefined_flag_F77=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_F77" >&5 echo "${ECHO_T}$archive_cmds_need_lc_F77" >&6; } ;; esac fi ;; esac { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[3-9]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" fi sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" fi sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } hardcode_action_F77= if test -n "$hardcode_libdir_flag_spec_F77" || \ test -n "$runpath_var_F77" || \ test "X$hardcode_automatic_F77" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_F77" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, F77)" != no && test "$hardcode_minus_L_F77" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_F77=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_F77=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_F77=unsupported fi { echo "$as_me:$LINENO: result: $hardcode_action_F77" >&5 echo "${ECHO_T}$hardcode_action_F77" >&6; } if test "$hardcode_action_F77" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_F77 \ CC_F77 \ LD_F77 \ lt_prog_compiler_wl_F77 \ lt_prog_compiler_pic_F77 \ lt_prog_compiler_static_F77 \ lt_prog_compiler_no_builtin_flag_F77 \ export_dynamic_flag_spec_F77 \ thread_safe_flag_spec_F77 \ whole_archive_flag_spec_F77 \ enable_shared_with_static_runtimes_F77 \ old_archive_cmds_F77 \ old_archive_from_new_cmds_F77 \ predep_objects_F77 \ postdep_objects_F77 \ predeps_F77 \ postdeps_F77 \ compiler_lib_search_path_F77 \ compiler_lib_search_dirs_F77 \ archive_cmds_F77 \ archive_expsym_cmds_F77 \ postinstall_cmds_F77 \ postuninstall_cmds_F77 \ old_archive_from_expsyms_cmds_F77 \ allow_undefined_flag_F77 \ no_undefined_flag_F77 \ export_symbols_cmds_F77 \ hardcode_libdir_flag_spec_F77 \ hardcode_libdir_flag_spec_ld_F77 \ hardcode_libdir_separator_F77 \ hardcode_automatic_F77 \ module_cmds_F77 \ module_expsym_cmds_F77 \ lt_cv_prog_compiler_c_o_F77 \ fix_srcfile_path_F77 \ exclude_expsyms_F77 \ include_expsyms_F77; do case $var in old_archive_cmds_F77 | \ old_archive_from_new_cmds_F77 | \ archive_cmds_F77 | \ archive_expsym_cmds_F77 | \ module_cmds_F77 | \ module_expsym_cmds_F77 | \ old_archive_from_expsyms_cmds_F77 | \ export_symbols_cmds_F77 | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_F77 # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_F77 # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_F77 # Is the compiler the GNU C compiler? with_gcc=$GCC_F77 # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_F77 # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_F77 # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_F77 pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77 # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_F77 # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_F77 # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_F77 # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_F77 # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_F77 # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_F77 old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_F77 # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_F77 # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_F77 archive_expsym_cmds=$lt_archive_expsym_cmds_F77 postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_F77 module_expsym_cmds=$lt_module_expsym_cmds_F77 # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_F77 # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_F77 # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_F77 # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_F77 # The directories searched by this compiler when creating a shared # library compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_F77 # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_F77 # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_F77 # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_F77 # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_F77 # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_F77 # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_F77 # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_F77 # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_F77 # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_F77 # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_F77 # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_F77 # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_F77 # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_F77 # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_F77 # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_F77 # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_F77 # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o objext_GCJ=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm -r conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${GCJ-"gcj"} compiler=$CC compiler_GCJ=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # GCJ did not exist at the time GCC didn't implicitly link libc in. archive_cmds_need_lc_GCJ=no old_archive_cmds_GCJ=$old_archive_cmds lt_prog_compiler_no_builtin_flag_GCJ= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag_GCJ=' -fno-builtin' { echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:16754: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:16758: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag_GCJ="$lt_prog_compiler_no_builtin_flag_GCJ -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl_GCJ= lt_prog_compiler_pic_GCJ= lt_prog_compiler_static_GCJ= { echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } if test "$GCC" = yes; then lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_static_GCJ='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_GCJ='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_GCJ='-m68020 -resident32 -malways-restore-a4' ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_GCJ='-fno-common' ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_GCJ=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_GCJ=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_GCJ='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_GCJ='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_GCJ='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_GCJ='-Bstatic' else lt_prog_compiler_static_GCJ='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_GCJ='-qnocommon' lt_prog_compiler_wl_GCJ='-Wl,' ;; esac ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_GCJ='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_GCJ='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_GCJ='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_GCJ='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_GCJ='-non_shared' ;; newsos6) lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; linux* | k*bsd*-gnu) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-fpic' lt_prog_compiler_static_GCJ='-Bstatic' ;; ccc*) lt_prog_compiler_wl_GCJ='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_GCJ='-non_shared' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' lt_prog_compiler_wl_GCJ='-Wl,' ;; *Sun\ F*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' lt_prog_compiler_wl_GCJ='' ;; esac ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_GCJ='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_GCJ='-non_shared' ;; rdos*) lt_prog_compiler_static_GCJ='-non_shared' ;; solaris*) lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl_GCJ='-Qoption ld ';; *) lt_prog_compiler_wl_GCJ='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl_GCJ='-Qoption ld ' lt_prog_compiler_pic_GCJ='-PIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_GCJ='-Kconform_pic' lt_prog_compiler_static_GCJ='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; unicos*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_can_build_shared_GCJ=no ;; uts4*) lt_prog_compiler_pic_GCJ='-pic' lt_prog_compiler_static_GCJ='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_GCJ=no ;; esac fi { echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_GCJ" >&6; } # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_GCJ"; then { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_pic_works_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_pic_works_GCJ=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_GCJ" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:17044: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:17048: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_GCJ=yes fi fi $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_GCJ" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_GCJ" >&6; } if test x"$lt_cv_prog_compiler_pic_works_GCJ" = xyes; then case $lt_prog_compiler_pic_GCJ in "" | " "*) ;; *) lt_prog_compiler_pic_GCJ=" $lt_prog_compiler_pic_GCJ" ;; esac else lt_prog_compiler_pic_GCJ= lt_prog_compiler_can_build_shared_GCJ=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_GCJ= ;; *) lt_prog_compiler_pic_GCJ="$lt_prog_compiler_pic_GCJ" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_GCJ eval lt_tmp_static_flag=\"$lt_prog_compiler_static_GCJ\" { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_static_works_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_static_works_GCJ=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works_GCJ=yes fi else lt_cv_prog_compiler_static_works_GCJ=yes fi fi $rm -r conftest* LDFLAGS="$save_LDFLAGS" fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_GCJ" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_static_works_GCJ" >&6; } if test x"$lt_cv_prog_compiler_static_works_GCJ" = xyes; then : else lt_prog_compiler_static_GCJ= fi { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_c_o_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_GCJ=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:17148: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:17152: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_GCJ=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_GCJ" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_GCJ" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6; } if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } runpath_var= allow_undefined_flag_GCJ= enable_shared_with_static_runtimes_GCJ=no archive_cmds_GCJ= archive_expsym_cmds_GCJ= old_archive_From_new_cmds_GCJ= old_archive_from_expsyms_cmds_GCJ= export_dynamic_flag_spec_GCJ= whole_archive_flag_spec_GCJ= thread_safe_flag_spec_GCJ= hardcode_libdir_flag_spec_GCJ= hardcode_libdir_flag_spec_ld_GCJ= hardcode_libdir_separator_GCJ= hardcode_direct_GCJ=no hardcode_minus_L_GCJ=no hardcode_shlibpath_var_GCJ=unsupported link_all_deplibs_GCJ=unknown hardcode_automatic_GCJ=no module_cmds_GCJ= module_expsym_cmds_GCJ= always_export_symbols_GCJ=no export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_GCJ= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_GCJ='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs_GCJ=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_GCJ='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_GCJ='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_GCJ="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_GCJ= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_GCJ=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs_GCJ=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_GCJ=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_GCJ='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_GCJ=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, GCJ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_GCJ='-L$libdir' allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=no enable_shared_with_static_runtimes_GCJ=yes export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_GCJ='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_GCJ=no fi ;; interix[3-9]*) hardcode_direct_GCJ=no hardcode_shlibpath_var_GCJ=no hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' export_dynamic_flag_spec_GCJ='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_GCJ='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_GCJ='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | k*bsd*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec_GCJ='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; *) tmp_sharedflag='-shared' ;; esac archive_cmds_GCJ='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds_GCJ='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi link_all_deplibs_GCJ=no else ld_shlibs_GCJ=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_GCJ='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs_GCJ=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs_GCJ=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; esac ;; sunos4*) archive_cmds_GCJ='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; esac if test "$ld_shlibs_GCJ" = no; then runpath_var= hardcode_libdir_flag_spec_GCJ= export_dynamic_flag_spec_GCJ= whole_archive_flag_spec_GCJ= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=yes archive_expsym_cmds_GCJ='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_GCJ=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_GCJ=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_GCJ='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_GCJ='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_GCJ='' hardcode_direct_GCJ=yes hardcode_libdir_separator_GCJ=':' link_all_deplibs_GCJ=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_GCJ=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_GCJ=yes hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_libdir_separator_GCJ= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_GCJ=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_GCJ='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_GCJ="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_GCJ='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_GCJ="-z nodefs" archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_GCJ=' ${wl}-bernotok' allow_undefined_flag_GCJ=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_GCJ='$convenience' archive_cmds_need_lc_GCJ=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes # see comment about different semantics on the GNU ld section ld_shlibs_GCJ=no ;; bsdi[45]*) export_dynamic_flag_spec_GCJ=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_GCJ=' ' allow_undefined_flag_GCJ=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_GCJ='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds_GCJ='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_GCJ='lib -OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path_GCJ='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_GCJ=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_GCJ='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_GCJ='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_GCJ=no hardcode_direct_GCJ=no hardcode_automatic_GCJ=yes hardcode_shlibpath_var_GCJ=unsupported whole_archive_flag_spec_GCJ='' link_all_deplibs_GCJ=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds_GCJ="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds_GCJ="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds_GCJ="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds_GCJ="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_GCJ='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs_GCJ=no ;; esac fi ;; dgux*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_shlibpath_var_GCJ=no ;; freebsd1*) ld_shlibs_GCJ=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds_GCJ='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_GCJ='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_GCJ='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_GCJ='+b $libdir' hardcode_direct_GCJ=no hardcode_shlibpath_var_GCJ=no ;; *) hardcode_direct_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_GCJ='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld_GCJ='-rpath $libdir' fi hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: link_all_deplibs_GCJ=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_GCJ='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; newsos6) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_shlibpath_var_GCJ=no ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' export_dynamic_flag_spec_GCJ='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' ;; *) archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs_GCJ=no fi ;; os2*) hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes allow_undefined_flag_GCJ=unsupported archive_cmds_GCJ='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds_GCJ='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_GCJ='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_GCJ='-rpath $libdir' fi hardcode_libdir_separator_GCJ=: ;; solaris*) no_undefined_flag_GCJ=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds_GCJ='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds_GCJ='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_shlibpath_var_GCJ=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec_GCJ='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec_GCJ='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs_GCJ=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_GCJ='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; sysv4) case $host_vendor in sni) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_GCJ='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_GCJ='$CC -r -o $output$reload_objs' hardcode_direct_GCJ=no ;; motorola) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_GCJ=no ;; sysv4.3*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no export_dynamic_flag_spec_GCJ='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_GCJ=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_GCJ='${wl}-z,text' archive_cmds_need_lc_GCJ=no hardcode_shlibpath_var_GCJ=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_GCJ='${wl}-z,text' allow_undefined_flag_GCJ='${wl}-z,nodefs' archive_cmds_need_lc_GCJ=no hardcode_shlibpath_var_GCJ=no hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_GCJ=':' link_all_deplibs_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_shlibpath_var_GCJ=no ;; *) ld_shlibs_GCJ=no ;; esac fi { echo "$as_me:$LINENO: result: $ld_shlibs_GCJ" >&5 echo "${ECHO_T}$ld_shlibs_GCJ" >&6; } test "$ld_shlibs_GCJ" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_GCJ" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_GCJ=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_GCJ in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } $rm conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_GCJ pic_flag=$lt_prog_compiler_pic_GCJ compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_GCJ allow_undefined_flag_GCJ= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_GCJ=no else archive_cmds_need_lc_GCJ=yes fi allow_undefined_flag_GCJ=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_GCJ" >&5 echo "${ECHO_T}$archive_cmds_need_lc_GCJ" >&6; } ;; esac fi ;; esac { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[3-9]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" fi sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" fi sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } hardcode_action_GCJ= if test -n "$hardcode_libdir_flag_spec_GCJ" || \ test -n "$runpath_var_GCJ" || \ test "X$hardcode_automatic_GCJ" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_GCJ" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, GCJ)" != no && test "$hardcode_minus_L_GCJ" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_GCJ=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_GCJ=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_GCJ=unsupported fi { echo "$as_me:$LINENO: result: $hardcode_action_GCJ" >&5 echo "${ECHO_T}$hardcode_action_GCJ" >&6; } if test "$hardcode_action_GCJ" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_GCJ \ CC_GCJ \ LD_GCJ \ lt_prog_compiler_wl_GCJ \ lt_prog_compiler_pic_GCJ \ lt_prog_compiler_static_GCJ \ lt_prog_compiler_no_builtin_flag_GCJ \ export_dynamic_flag_spec_GCJ \ thread_safe_flag_spec_GCJ \ whole_archive_flag_spec_GCJ \ enable_shared_with_static_runtimes_GCJ \ old_archive_cmds_GCJ \ old_archive_from_new_cmds_GCJ \ predep_objects_GCJ \ postdep_objects_GCJ \ predeps_GCJ \ postdeps_GCJ \ compiler_lib_search_path_GCJ \ compiler_lib_search_dirs_GCJ \ archive_cmds_GCJ \ archive_expsym_cmds_GCJ \ postinstall_cmds_GCJ \ postuninstall_cmds_GCJ \ old_archive_from_expsyms_cmds_GCJ \ allow_undefined_flag_GCJ \ no_undefined_flag_GCJ \ export_symbols_cmds_GCJ \ hardcode_libdir_flag_spec_GCJ \ hardcode_libdir_flag_spec_ld_GCJ \ hardcode_libdir_separator_GCJ \ hardcode_automatic_GCJ \ module_cmds_GCJ \ module_expsym_cmds_GCJ \ lt_cv_prog_compiler_c_o_GCJ \ fix_srcfile_path_GCJ \ exclude_expsyms_GCJ \ include_expsyms_GCJ; do case $var in old_archive_cmds_GCJ | \ old_archive_from_new_cmds_GCJ | \ archive_cmds_GCJ | \ archive_expsym_cmds_GCJ | \ module_cmds_GCJ | \ module_expsym_cmds_GCJ | \ old_archive_from_expsyms_cmds_GCJ | \ export_symbols_cmds_GCJ | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_GCJ # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_GCJ # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_GCJ # Is the compiler the GNU C compiler? with_gcc=$GCC_GCJ # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_GCJ # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_GCJ # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_GCJ pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_GCJ # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_GCJ # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_GCJ # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_GCJ # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_GCJ # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_GCJ # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_GCJ old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_GCJ # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_GCJ # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_GCJ archive_expsym_cmds=$lt_archive_expsym_cmds_GCJ postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_GCJ module_expsym_cmds=$lt_module_expsym_cmds_GCJ # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_GCJ # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_GCJ # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_GCJ # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_GCJ # The directories searched by this compiler when creating a shared # library compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_GCJ # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_GCJ # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_GCJ # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_GCJ # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_GCJ # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_GCJ # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_GCJ # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_GCJ # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_GCJ # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_GCJ # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_GCJ # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_GCJ # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_GCJ # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_GCJ # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_GCJ # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_GCJ # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_GCJ # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" else tagname="" fi ;; RC) # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o objext_RC=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm -r conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${RC-"windres"} compiler=$CC compiler_RC=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` lt_cv_prog_compiler_c_o_RC=yes # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_RC \ CC_RC \ LD_RC \ lt_prog_compiler_wl_RC \ lt_prog_compiler_pic_RC \ lt_prog_compiler_static_RC \ lt_prog_compiler_no_builtin_flag_RC \ export_dynamic_flag_spec_RC \ thread_safe_flag_spec_RC \ whole_archive_flag_spec_RC \ enable_shared_with_static_runtimes_RC \ old_archive_cmds_RC \ old_archive_from_new_cmds_RC \ predep_objects_RC \ postdep_objects_RC \ predeps_RC \ postdeps_RC \ compiler_lib_search_path_RC \ compiler_lib_search_dirs_RC \ archive_cmds_RC \ archive_expsym_cmds_RC \ postinstall_cmds_RC \ postuninstall_cmds_RC \ old_archive_from_expsyms_cmds_RC \ allow_undefined_flag_RC \ no_undefined_flag_RC \ export_symbols_cmds_RC \ hardcode_libdir_flag_spec_RC \ hardcode_libdir_flag_spec_ld_RC \ hardcode_libdir_separator_RC \ hardcode_automatic_RC \ module_cmds_RC \ module_expsym_cmds_RC \ lt_cv_prog_compiler_c_o_RC \ fix_srcfile_path_RC \ exclude_expsyms_RC \ include_expsyms_RC; do case $var in old_archive_cmds_RC | \ old_archive_from_new_cmds_RC | \ archive_cmds_RC | \ archive_expsym_cmds_RC | \ module_cmds_RC | \ module_expsym_cmds_RC | \ old_archive_from_expsyms_cmds_RC | \ export_symbols_cmds_RC | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_RC # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_RC # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_RC # Is the compiler the GNU C compiler? with_gcc=$GCC_RC # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_RC # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_RC # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_RC pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_RC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_RC # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_RC # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_RC # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_RC # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_RC old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_RC # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_RC # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_RC archive_expsym_cmds=$lt_archive_expsym_cmds_RC postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_RC module_expsym_cmds=$lt_module_expsym_cmds_RC # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_RC # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_RC # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_RC # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_RC # The directories searched by this compiler when creating a shared # library compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_RC # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_RC # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_RC # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_RC # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_RC # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_RC # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_RC # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_RC # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_RC # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_RC # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_RC # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_RC # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_RC # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_RC # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_RC # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_RC # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_RC # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" ;; *) { { echo "$as_me:$LINENO: error: Unsupported tag name: $tagname" >&5 echo "$as_me: error: Unsupported tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" { { echo "$as_me:$LINENO: error: unable to update list of available tagged configurations." >&5 echo "$as_me: error: unable to update list of available tagged configurations." >&2;} { (exit 1); exit 1; }; } fi fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' # Prevent multiple expansion # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in ./ | .// | /cC/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi done done ;; esac done IFS=$as_save_IFS fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { echo "$as_me:$LINENO: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' # Checks for typedefs, structures, and compiler characteristics. if test "x$CC" != xcc; then { echo "$as_me:$LINENO: checking whether $CC and cc understand -c and -o together" >&5 echo $ECHO_N "checking whether $CC and cc understand -c and -o together... $ECHO_C" >&6; } else { echo "$as_me:$LINENO: checking whether cc understands -c and -o together" >&5 echo $ECHO_N "checking whether cc understands -c and -o together... $ECHO_C" >&6; } fi set dummy $CC; ac_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # We do the test twice because some compilers refuse to overwrite an # existing .o file with -o, though they will create one. ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' rm -f conftest2.* if { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -f conftest2.$ac_objext && { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then eval ac_cv_prog_cc_${ac_cc}_c_o=yes if test "x$CC" != xcc; then # Test first that cc exists at all. if { ac_try='cc -c conftest.$ac_ext >&5' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5' rm -f conftest2.* if { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -f conftest2.$ac_objext && { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # cc works too. : else # cc exists but doesn't like -o. eval ac_cv_prog_cc_${ac_cc}_c_o=no fi fi fi else eval ac_cv_prog_cc_${ac_cc}_c_o=no fi rm -f core conftest* fi if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } cat >>confdefs.h <<\_ACEOF #define NO_MINUS_C_MINUS_O 1 _ACEOF fi # FIXME: we rely on the cache variable name because # there is no other way. set dummy $CC ac_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" != yes"; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi # Checks for header files. { echo "$as_me:$LINENO: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_header_stdc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF rm -f conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF fi if test "${ac_cv_header_stdlib_h+set}" = set; then { echo "$as_me:$LINENO: checking for stdlib.h" >&5 echo $ECHO_N "checking for stdlib.h... $ECHO_C" >&6; } if test "${ac_cv_header_stdlib_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi { echo "$as_me:$LINENO: result: $ac_cv_header_stdlib_h" >&5 echo "${ECHO_T}$ac_cv_header_stdlib_h" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking stdlib.h usability" >&5 echo $ECHO_N "checking stdlib.h usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking stdlib.h presence" >&5 echo $ECHO_N "checking stdlib.h presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: stdlib.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: stdlib.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: stdlib.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: stdlib.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: stdlib.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: stdlib.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: stdlib.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: stdlib.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: stdlib.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: stdlib.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: stdlib.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: stdlib.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: stdlib.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: stdlib.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: stdlib.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: stdlib.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------- ## ## Report this to sam@zoy.org ## ## -------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for stdlib.h" >&5 echo $ECHO_N "checking for stdlib.h... $ECHO_C" >&6; } if test "${ac_cv_header_stdlib_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_stdlib_h=$ac_header_preproc fi { echo "$as_me:$LINENO: result: $ac_cv_header_stdlib_h" >&5 echo "${ECHO_T}$ac_cv_header_stdlib_h" >&6; } fi # Check for system functions for ac_func in wcsdup do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$ac_func || defined __stub___$ac_func choke me #endif int main () { return $ac_func (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ac_res=`eval echo '${'$as_ac_var'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done for ac_func in strndup do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$ac_func || defined __stub___$ac_func choke me #endif int main () { return $ac_func (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ac_res=`eval echo '${'$as_ac_var'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done # Checks for libraries. { echo "$as_me:$LINENO: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6; } # Check whether --with-x was given. if test "${with_x+set}" = set; then withval=$with_x; fi # $have_x is `yes', `no', `disabled', or empty when we do not yet know. if test "x$with_x" = xno; then # The user explicitly disabled X. have_x=disabled else case $x_includes,$x_libraries in #( *\'*) { { echo "$as_me:$LINENO: error: Cannot use X directory names containing '" >&5 echo "$as_me: error: Cannot use X directory names containing '" >&2;} { (exit 1); exit 1; }; };; #( *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # One or both of the vars are not set, and there is no cached value. ac_x_includes=no ac_x_libraries=no rm -f -r conftest.dir if mkdir conftest.dir; then cd conftest.dir cat >Imakefile <<'_ACEOF' incroot: @echo incroot='${INCROOT}' usrlibdir: @echo usrlibdir='${USRLIBDIR}' libdir: @echo libdir='${LIBDIR}' _ACEOF if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then # GNU make sometimes prints "make[1]: Entering...", which would confuse us. for ac_var in incroot usrlibdir libdir; do eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" done # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. for ac_extension in a so sl; do if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" && test -f "$ac_im_libdir/libX11.$ac_extension"; then ac_im_usrlibdir=$ac_im_libdir; break fi done # Screen out bogus values from the imake configuration. They are # bogus both because they are the default anyway, and because # using them would break gcc on systems where it needs fixed includes. case $ac_im_incroot in /usr/include) ac_x_includes= ;; *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; esac case $ac_im_usrlibdir in /usr/lib | /lib) ;; *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; esac fi cd .. rm -f -r conftest.dir fi # Standard set of common directories for X headers. # Check X11 before X11Rn because it is often a symlink to the current release. ac_x_header_dirs=' /usr/X11/include /usr/X11R6/include /usr/X11R5/include /usr/X11R4/include /usr/include/X11 /usr/include/X11R6 /usr/include/X11R5 /usr/include/X11R4 /usr/local/X11/include /usr/local/X11R6/include /usr/local/X11R5/include /usr/local/X11R4/include /usr/local/include/X11 /usr/local/include/X11R6 /usr/local/include/X11R5 /usr/local/include/X11R4 /usr/X386/include /usr/x386/include /usr/XFree86/include/X11 /usr/include /usr/local/include /usr/unsupported/include /usr/athena/include /usr/local/x11r5/include /usr/lpp/Xamples/include /usr/openwin/include /usr/openwin/share/include' if test "$ac_x_includes" = no; then # Guess where to find include files, by looking for Xlib.h. # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # We can compile using X headers with no special include directory. ac_x_includes= else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 for ac_dir in $ac_x_header_dirs; do if test -r "$ac_dir/X11/Xlib.h"; then ac_x_includes=$ac_dir break fi done fi rm -f conftest.err conftest.$ac_ext fi # $ac_x_includes = no if test "$ac_x_libraries" = no; then # Check for the libraries. # See if we find them without any special options. # Don't add to $LIBS permanently. ac_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { XrmInitialize () ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. ac_x_libraries= else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 LIBS=$ac_save_LIBS for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` do # Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl; do if test -r "$ac_dir/libX11.$ac_extension"; then ac_x_libraries=$ac_dir break 2 fi done done fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi # $ac_x_libraries = no case $ac_x_includes,$ac_x_libraries in #( no,* | *,no | *\'*) # Didn't find X, or a directory has "'" in its name. ac_cv_have_x="have_x=no";; #( *) # Record where we found X for the cache. ac_cv_have_x="have_x=yes\ ac_x_includes='$ac_x_includes'\ ac_x_libraries='$ac_x_libraries'" esac fi ;; #( *) have_x=yes;; esac eval "$ac_cv_have_x" fi # $with_x != no if test "$have_x" != yes; then { echo "$as_me:$LINENO: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6; } no_x=yes else # If each of the values was on the command line, it overrides each guess. test "x$x_includes" = xNONE && x_includes=$ac_x_includes test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes\ ac_x_includes='$x_includes'\ ac_x_libraries='$x_libraries'" { echo "$as_me:$LINENO: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6; } fi # Get the cflags and libraries from the freetype-config script # # Check whether --with-ft-prefix was given. if test "${with_ft_prefix+set}" = set; then withval=$with_ft_prefix; ft_config_prefix="$withval" else ft_config_prefix="" fi # Check whether --with-ft-exec-prefix was given. if test "${with_ft_exec_prefix+set}" = set; then withval=$with_ft_exec_prefix; ft_config_exec_prefix="$withval" else ft_config_exec_prefix="" fi # Check whether --enable-freetypetest was given. if test "${enable_freetypetest+set}" = set; then enableval=$enable_freetypetest; else enable_fttest=yes fi if test x$ft_config_exec_prefix != x ; then ft_config_args="$ft_config_args --exec-prefix=$ft_config_exec_prefix" if test x${FT2_CONFIG+set} != xset ; then FT2_CONFIG=$ft_config_exec_prefix/bin/freetype-config fi fi if test x$ft_config_prefix != x ; then ft_config_args="$ft_config_args --prefix=$ft_config_prefix" if test x${FT2_CONFIG+set} != xset ; then FT2_CONFIG=$ft_config_prefix/bin/freetype-config fi fi # Extract the first word of "freetype-config", so it can be a program name with args. set dummy freetype-config; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_FT2_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $FT2_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_FT2_CONFIG="$FT2_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_FT2_CONFIG="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_FT2_CONFIG" && ac_cv_path_FT2_CONFIG="no" ;; esac fi FT2_CONFIG=$ac_cv_path_FT2_CONFIG if test -n "$FT2_CONFIG"; then { echo "$as_me:$LINENO: result: $FT2_CONFIG" >&5 echo "${ECHO_T}$FT2_CONFIG" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi min_ft_version=9.0.3 { echo "$as_me:$LINENO: checking for FreeType -- version >= $min_ft_version" >&5 echo $ECHO_N "checking for FreeType -- version >= $min_ft_version... $ECHO_C" >&6; } no_ft="" if test "$FT2_CONFIG" = "no" ; then no_ft=yes else FT2_CFLAGS=`$FT2_CONFIG $ft_config_args --cflags` FT2_LIBS=`$FT2_CONFIG $ft_config_args --libs` ft_config_major_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` ft_config_minor_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` ft_config_micro_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` ft_min_major_version=`echo $min_ft_version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` ft_min_minor_version=`echo $min_ft_version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` ft_min_micro_version=`echo $min_ft_version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` if test x$enable_fttest = xyes ; then ft_config_is_lt="" if test $ft_config_major_version -lt $ft_min_major_version ; then ft_config_is_lt=yes else if test $ft_config_major_version -eq $ft_min_major_version ; then if test $ft_config_minor_version -lt $ft_min_minor_version ; then ft_config_is_lt=yes else if test $ft_config_minor_version -eq $ft_min_minor_version ; then if test $ft_config_micro_version -lt $ft_min_micro_version ; then ft_config_is_lt=yes fi fi fi fi fi if test x$ft_config_is_lt = xyes ; then no_ft=yes else ac_save_CPPFLAGS="$CPPFLAGS" ac_save_LIBS="$LIBS" CPPFLAGS="$CPPFLAGS $FT2_CFLAGS" LIBS="$FT2_LIBS $LIBS" # # Sanity checks for the results of freetype-config to some extent. # if test "$cross_compiling" = yes; then echo $ECHO_N "cross compiling; assuming OK... $ECHO_C" else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include FT_FREETYPE_H #include #include int main() { FT_Library library; FT_Error error; error = FT_Init_FreeType(&library); if (error) return 1; else { FT_Done_FreeType(library); return 0; } } _ACEOF rm -f conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) no_ft=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi CPPFLAGS="$ac_save_CPPFLAGS" LIBS="$ac_save_LIBS" fi # test $ft_config_version -lt $ft_min_version fi # test x$enable_fttest = xyes fi # test "$FT2_CONFIG" = "no" if test x$no_ft = x ; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } : else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } if test "$FT2_CONFIG" = "no" ; then # AC_MSG_WARN([ # The freetype-config script installed by FreeType 2 could not be found. # If FreeType 2 was installed in PREFIX, make sure PREFIX/bin is in # your path, or set the FT2_CONFIG environment variable to the # full path to freetype-config. # ]) : else if test x$ft_config_is_lt = xyes ; then { echo "$as_me:$LINENO: WARNING: Your installed version of the FreeType 2 library is too old. If you have different versions of FreeType 2, make sure that correct values for --with-ft-prefix or --with-ft-exec-prefix are used, or set the FT2_CONFIG environment variable to the full path to freetype-config. " >&5 echo "$as_me: WARNING: Your installed version of the FreeType 2 library is too old. If you have different versions of FreeType 2, make sure that correct values for --with-ft-prefix or --with-ft-exec-prefix are used, or set the FT2_CONFIG environment variable to the full path to freetype-config. " >&2;} else { echo "$as_me:$LINENO: WARNING: The FreeType test program failed to run. If your system uses shared libraries and they are installed outside the normal system library path, make sure the variable LD_LIBRARY_PATH (or whatever is appropriate for your system) is correctly set. " >&5 echo "$as_me: WARNING: The FreeType test program failed to run. If your system uses shared libraries and they are installed outside the normal system library path, make sure the variable LD_LIBRARY_PATH (or whatever is appropriate for your system) is correctly set. " >&2;} fi fi FT2_CFLAGS="" FT2_LIBS="" { { echo "$as_me:$LINENO: error: FreeType2 is required to compile this library" >&5 echo "$as_me: error: FreeType2 is required to compile this library" >&2;} { (exit 1); exit 1; }; } fi if test "$no_x" = yes; then # Not all programs may use this symbol, but it does not hurt to define it. cat >>confdefs.h <<\_ACEOF #define X_DISPLAY_MISSING 1 _ACEOF X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= else if test -n "$x_includes"; then X_CFLAGS="$X_CFLAGS -I$x_includes" fi # It would also be nice to do this for all -L options, not just this one. if test -n "$x_libraries"; then X_LIBS="$X_LIBS -L$x_libraries" # For Solaris; some versions of Sun CC require a space after -R and # others require no space. Words are not sufficient . . . . { echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6; } ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" ac_xsave_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } X_LIBS="$X_LIBS -R$x_libraries" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 LIBS="$ac_xsave_LIBS -R $x_libraries" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } X_LIBS="$X_LIBS -R $x_libraries" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { echo "$as_me:$LINENO: result: neither works" >&5 echo "${ECHO_T}neither works" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext ac_c_werror_flag=$ac_xsave_c_werror_flag LIBS=$ac_xsave_LIBS fi # Check for system-dependent libraries X programs must link with. # Do this before checking for the system-independent R6 libraries # (-lICE), since we may need -lsocket or whatever for X linking. if test "$ISC" = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet" else # Martyn Johnson says this is needed for Ultrix, if the X # libraries were built with DECnet support. And Karl Berry says # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char XOpenDisplay (); int main () { return XOpenDisplay (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6; } if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dnet_ntoa (); int main () { return dnet_ntoa (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_dnet_dnet_ntoa=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dnet_dnet_ntoa=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6; } if test $ac_cv_lib_dnet_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then { echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet_stub" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6; } if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dnet_ntoa (); int main () { return dnet_ntoa (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dnet_stub_dnet_ntoa=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" fi fi fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_xsave_LIBS" # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT, # to get the SysV transport functions. # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4) # needs -lnsl. # The nsl library prevents programs from opening the X display # on Irix 5.2, according to T.E. Dickey. # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. { echo "$as_me:$LINENO: checking for gethostbyname" >&5 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6; } if test "${ac_cv_func_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define gethostbyname to an innocuous variant, in case declares gethostbyname. For example, HP-UX 11i declares gettimeofday. */ #define gethostbyname innocuous_gethostbyname /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef gethostbyname /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gethostbyname (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_gethostbyname || defined __stub___gethostbyname choke me #endif int main () { return gethostbyname (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_gethostbyname=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_gethostbyname=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6; } if test $ac_cv_func_gethostbyname = no; then { echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6; } if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gethostbyname (); int main () { return gethostbyname (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_nsl_gethostbyname=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_nsl_gethostbyname=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6; } if test $ac_cv_lib_nsl_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi if test $ac_cv_lib_nsl_gethostbyname = no; then { echo "$as_me:$LINENO: checking for gethostbyname in -lbsd" >&5 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6; } if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gethostbyname (); int main () { return gethostbyname (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_bsd_gethostbyname=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_bsd_gethostbyname=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6; } if test $ac_cv_lib_bsd_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" fi fi fi # lieder@skyler.mavd.honeywell.com says without -lsocket, # socket/setsockopt and other routines are undefined under SCO ODT # 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary # on later versions), says Simon Leinen: it contains gethostby* # variants that don't use the name server (or something). -lsocket # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. { echo "$as_me:$LINENO: checking for connect" >&5 echo $ECHO_N "checking for connect... $ECHO_C" >&6; } if test "${ac_cv_func_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define connect to an innocuous variant, in case declares connect. For example, HP-UX 11i declares gettimeofday. */ #define connect innocuous_connect /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef connect /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char connect (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_connect || defined __stub___connect choke me #endif int main () { return connect (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_connect=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_connect=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5 echo "${ECHO_T}$ac_cv_func_connect" >&6; } if test $ac_cv_func_connect = no; then { echo "$as_me:$LINENO: checking for connect in -lsocket" >&5 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6; } if test "${ac_cv_lib_socket_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char connect (); int main () { return connect (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_socket_connect=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_socket_connect=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6; } if test $ac_cv_lib_socket_connect = yes; then X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" fi fi # Guillermo Gomez says -lposix is necessary on A/UX. { echo "$as_me:$LINENO: checking for remove" >&5 echo $ECHO_N "checking for remove... $ECHO_C" >&6; } if test "${ac_cv_func_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define remove to an innocuous variant, in case declares remove. For example, HP-UX 11i declares gettimeofday. */ #define remove innocuous_remove /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef remove /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char remove (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_remove || defined __stub___remove choke me #endif int main () { return remove (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_remove=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_remove=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_remove" >&5 echo "${ECHO_T}$ac_cv_func_remove" >&6; } if test $ac_cv_func_remove = no; then { echo "$as_me:$LINENO: checking for remove in -lposix" >&5 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6; } if test "${ac_cv_lib_posix_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char remove (); int main () { return remove (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_posix_remove=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_posix_remove=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_posix_remove" >&5 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6; } if test $ac_cv_lib_posix_remove = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. { echo "$as_me:$LINENO: checking for shmat" >&5 echo $ECHO_N "checking for shmat... $ECHO_C" >&6; } if test "${ac_cv_func_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define shmat to an innocuous variant, in case declares shmat. For example, HP-UX 11i declares gettimeofday. */ #define shmat innocuous_shmat /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef shmat /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shmat (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_shmat || defined __stub___shmat choke me #endif int main () { return shmat (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_shmat=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_shmat=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_shmat" >&5 echo "${ECHO_T}$ac_cv_func_shmat" >&6; } if test $ac_cv_func_shmat = no; then { echo "$as_me:$LINENO: checking for shmat in -lipc" >&5 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6; } if test "${ac_cv_lib_ipc_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shmat (); int main () { return shmat (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_ipc_shmat=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_ipc_shmat=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_ipc_shmat" >&5 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6; } if test $ac_cv_lib_ipc_shmat = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" fi fi fi # Check for libraries that X11R6 Xt/Xaw programs need. ac_save_LDFLAGS=$LDFLAGS test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries" # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to # check for ICE first), but we must link in the order -lSM -lICE or # we get undefined symbols. So assume we have SM if we have ICE. # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry { echo "$as_me:$LINENO: checking for IceConnectionNumber in -lICE" >&5 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6; } if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char IceConnectionNumber (); int main () { return IceConnectionNumber (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_ICE_IceConnectionNumber=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_ICE_IceConnectionNumber=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6; } if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" fi LDFLAGS=$ac_save_LDFLAGS fi # Check whether --with---with-gl-inc was given. if test "${with___with_gl_inc+set}" = set; then withval=$with___with_gl_inc; fi # Check whether --with---with-gl-lib was given. if test "${with___with_gl_lib+set}" = set; then withval=$with___with_gl_lib; fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu GL_SAVE_CPPFLAGS="$CPPFLAGS" GL_SAVE_LIBS="$LIBS" if test "x$no_x" != xyes ; then GL_CFLAGS="$X_CFLAGS" GL_X_LIBS="$X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu $X_EXTRA_LIBS" fi if test "x$with_gl_inc" != "xnone" ; then if test -d "$with_gl_inc" ; then GL_CFLAGS="-I$with_gl_inc" else GL_CFLAGS="$with_gl_inc" fi else GL_CFLAGS= fi CPPFLAGS="$GL_CFLAGS" if test "${ac_cv_header_GL_gl_h+set}" = set; then { echo "$as_me:$LINENO: checking for GL/gl.h" >&5 echo $ECHO_N "checking for GL/gl.h... $ECHO_C" >&6; } if test "${ac_cv_header_GL_gl_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi { echo "$as_me:$LINENO: result: $ac_cv_header_GL_gl_h" >&5 echo "${ECHO_T}$ac_cv_header_GL_gl_h" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking GL/gl.h usability" >&5 echo $ECHO_N "checking GL/gl.h usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking GL/gl.h presence" >&5 echo $ECHO_N "checking GL/gl.h presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: GL/gl.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: GL/gl.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: GL/gl.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: GL/gl.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: GL/gl.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: GL/gl.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: GL/gl.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: GL/gl.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: GL/gl.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: GL/gl.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: GL/gl.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: GL/gl.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: GL/gl.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: GL/gl.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: GL/gl.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: GL/gl.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------- ## ## Report this to sam@zoy.org ## ## -------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for GL/gl.h" >&5 echo $ECHO_N "checking for GL/gl.h... $ECHO_C" >&6; } if test "${ac_cv_header_GL_gl_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_GL_gl_h=$ac_header_preproc fi { echo "$as_me:$LINENO: result: $ac_cv_header_GL_gl_h" >&5 echo "${ECHO_T}$ac_cv_header_GL_gl_h" >&6; } fi if test $ac_cv_header_GL_gl_h = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_GL_GL_H 1 _ACEOF else if test "${ac_cv_header_OpenGL_gl_h+set}" = set; then { echo "$as_me:$LINENO: checking for OpenGL/gl.h" >&5 echo $ECHO_N "checking for OpenGL/gl.h... $ECHO_C" >&6; } if test "${ac_cv_header_OpenGL_gl_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi { echo "$as_me:$LINENO: result: $ac_cv_header_OpenGL_gl_h" >&5 echo "${ECHO_T}$ac_cv_header_OpenGL_gl_h" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking OpenGL/gl.h usability" >&5 echo $ECHO_N "checking OpenGL/gl.h usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking OpenGL/gl.h presence" >&5 echo $ECHO_N "checking OpenGL/gl.h presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: OpenGL/gl.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: OpenGL/gl.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: OpenGL/gl.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: OpenGL/gl.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: OpenGL/gl.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: OpenGL/gl.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: OpenGL/gl.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: OpenGL/gl.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: OpenGL/gl.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: OpenGL/gl.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: OpenGL/gl.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: OpenGL/gl.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: OpenGL/gl.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: OpenGL/gl.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: OpenGL/gl.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: OpenGL/gl.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------- ## ## Report this to sam@zoy.org ## ## -------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for OpenGL/gl.h" >&5 echo $ECHO_N "checking for OpenGL/gl.h... $ECHO_C" >&6; } if test "${ac_cv_header_OpenGL_gl_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_OpenGL_gl_h=$ac_header_preproc fi { echo "$as_me:$LINENO: result: $ac_cv_header_OpenGL_gl_h" >&5 echo "${ECHO_T}$ac_cv_header_OpenGL_gl_h" >&6; } fi if test $ac_cv_header_OpenGL_gl_h = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_OPENGL_GL_H 1 _ACEOF else { { echo "$as_me:$LINENO: error: GL/gl.h or OpenGL/gl.h is needed, please specify its location with --with-gl-inc. If this still fails, please contact henryj@paradise.net.nz, include the string FTGL somewhere in the subject line and provide a copy of the config.log file that was left behind." >&5 echo "$as_me: error: GL/gl.h or OpenGL/gl.h is needed, please specify its location with --with-gl-inc. If this still fails, please contact henryj@paradise.net.nz, include the string FTGL somewhere in the subject line and provide a copy of the config.log file that was left behind." >&2;} { (exit 1); exit 1; }; } fi fi { echo "$as_me:$LINENO: checking for OpenGL framework (Darwin-specific)" >&5 echo $ECHO_N "checking for OpenGL framework (Darwin-specific)... $ECHO_C" >&6; } FRAMEWORK_OPENGL="" PRELIBS="$LIBS" LIBS="$LIBS -Xlinker -framework -Xlinker OpenGL" # -Xlinker is used because libtool is busted prior to 1.6 wrt frameworks cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { glBegin(GL_POINTS) ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then FRAMEWORK_OPENGL="-Xlinker -framework -Xlinker OpenGL" ; ac_cv_search_glBegin="-Xlinker -framework -Xlinker OpenGL" ; { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext with_gl_lib="$FRAMEWORK_OPENGL" LIBS="$PRELIBS" { echo "$as_me:$LINENO: checking for GL library" >&5 echo $ECHO_N "checking for GL library... $ECHO_C" >&6; } if test "x$with_gl_lib" != "x" ; then if test -d "$with_gl_lib" ; then LIBS="-L$with_gl_lib -lGL" else LIBS="$with_gl_lib" fi else LIBS="-lGL" fi cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char glBegin (); int main () { return glBegin (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then HAVE_GL=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 HAVE_GL=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test "x$HAVE_GL" = xno ; then if test "x$GL_X_LIBS" != x ; then LIBS="-lGL $GL_X_LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char glBegin (); int main () { return glBegin (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then HAVE_GL=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 HAVE_GL=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi fi if test "x$HAVE_GL" = xyes ; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } GL_LIBS=$LIBS else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } { { echo "$as_me:$LINENO: error: GL library could not be found, please specify its location with --with-gl-lib. If this still fails, please contact henryj@paradise.net.nz, include the string FTGL somewhere in the subject line and provide a copy of the config.log file that was left behind." >&5 echo "$as_me: error: GL library could not be found, please specify its location with --with-gl-lib. If this still fails, please contact henryj@paradise.net.nz, include the string FTGL somewhere in the subject line and provide a copy of the config.log file that was left behind." >&2;} { (exit 1); exit 1; }; } fi if test "${ac_cv_header_GL_glu_h+set}" = set; then { echo "$as_me:$LINENO: checking for GL/glu.h" >&5 echo $ECHO_N "checking for GL/glu.h... $ECHO_C" >&6; } if test "${ac_cv_header_GL_glu_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi { echo "$as_me:$LINENO: result: $ac_cv_header_GL_glu_h" >&5 echo "${ECHO_T}$ac_cv_header_GL_glu_h" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking GL/glu.h usability" >&5 echo $ECHO_N "checking GL/glu.h usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking GL/glu.h presence" >&5 echo $ECHO_N "checking GL/glu.h presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: GL/glu.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: GL/glu.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: GL/glu.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: GL/glu.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: GL/glu.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: GL/glu.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: GL/glu.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: GL/glu.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: GL/glu.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: GL/glu.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: GL/glu.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: GL/glu.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: GL/glu.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: GL/glu.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: GL/glu.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: GL/glu.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------- ## ## Report this to sam@zoy.org ## ## -------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for GL/glu.h" >&5 echo $ECHO_N "checking for GL/glu.h... $ECHO_C" >&6; } if test "${ac_cv_header_GL_glu_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_GL_glu_h=$ac_header_preproc fi { echo "$as_me:$LINENO: result: $ac_cv_header_GL_glu_h" >&5 echo "${ECHO_T}$ac_cv_header_GL_glu_h" >&6; } fi if test $ac_cv_header_GL_glu_h = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_GL_GLU_H 1 _ACEOF else if test "${ac_cv_header_OpenGL_glu_h+set}" = set; then { echo "$as_me:$LINENO: checking for OpenGL/glu.h" >&5 echo $ECHO_N "checking for OpenGL/glu.h... $ECHO_C" >&6; } if test "${ac_cv_header_OpenGL_glu_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi { echo "$as_me:$LINENO: result: $ac_cv_header_OpenGL_glu_h" >&5 echo "${ECHO_T}$ac_cv_header_OpenGL_glu_h" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking OpenGL/glu.h usability" >&5 echo $ECHO_N "checking OpenGL/glu.h usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking OpenGL/glu.h presence" >&5 echo $ECHO_N "checking OpenGL/glu.h presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: OpenGL/glu.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: OpenGL/glu.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: OpenGL/glu.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: OpenGL/glu.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: OpenGL/glu.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: OpenGL/glu.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: OpenGL/glu.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: OpenGL/glu.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: OpenGL/glu.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: OpenGL/glu.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: OpenGL/glu.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: OpenGL/glu.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: OpenGL/glu.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: OpenGL/glu.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: OpenGL/glu.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: OpenGL/glu.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------- ## ## Report this to sam@zoy.org ## ## -------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for OpenGL/glu.h" >&5 echo $ECHO_N "checking for OpenGL/glu.h... $ECHO_C" >&6; } if test "${ac_cv_header_OpenGL_glu_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_OpenGL_glu_h=$ac_header_preproc fi { echo "$as_me:$LINENO: result: $ac_cv_header_OpenGL_glu_h" >&5 echo "${ECHO_T}$ac_cv_header_OpenGL_glu_h" >&6; } fi if test $ac_cv_header_OpenGL_glu_h = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_OPENGL_GLU_H 1 _ACEOF else { { echo "$as_me:$LINENO: error: GL/glu.h or OpenGL/glu.h is needed, please specify its location with --with-gl-inc. If this still fails, please contact henryj@paradise.net.nz, include the string FTGL somewhere in the subject line and provide a copy of the config.log file that was left behind." >&5 echo "$as_me: error: GL/glu.h or OpenGL/glu.h is needed, please specify its location with --with-gl-inc. If this still fails, please contact henryj@paradise.net.nz, include the string FTGL somewhere in the subject line and provide a copy of the config.log file that was left behind." >&2;} { (exit 1); exit 1; }; } fi fi { echo "$as_me:$LINENO: checking for GLU version >= 1.2" >&5 echo $ECHO_N "checking for GLU version >= 1.2... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef HAVE_GL_GLU_H # include #endif #ifdef HAVE_OPENGL_GLU_H # include #endif int main () { #if !defined(GLU_VERSION_1_2) #error GLU too old #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } { { echo "$as_me:$LINENO: error: GLU >= 1.2 is needed to compile this library" >&5 echo "$as_me: error: GLU >= 1.2 is needed to compile this library" >&2;} { (exit 1); exit 1; }; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test "x$FRAMEWORK_OPENGL" = "x" ; then { echo "$as_me:$LINENO: checking for GLU library" >&5 echo $ECHO_N "checking for GLU library... $ECHO_C" >&6; } LIBS="-lGLU $GL_LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gluNewTess (); int main () { return gluNewTess (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then HAVE_GLU=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 HAVE_GLU=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test "x$HAVE_GLU" = xno ; then if test "x$GL_X_LIBS" != x ; then LIBS="-lGLU $GL_LIBS $GL_X_LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gluNewTess (); int main () { return gluNewTess (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then HAVE_GLU=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 HAVE_GLU=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi fi if test "x$HAVE_GLU" = xyes ; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } GL_LIBS="$LIBS" else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } { { echo "$as_me:$LINENO: error: GLU library could not be found, please specify its location with --with-gl-lib. If this still fails, please contact henryj@paradise.net.nz, include the string FTGL somewhere in the subject line and provide a copy of the config.log file that was left behind." >&5 echo "$as_me: error: GLU library could not be found, please specify its location with --with-gl-lib. If this still fails, please contact henryj@paradise.net.nz, include the string FTGL somewhere in the subject line and provide a copy of the config.log file that was left behind." >&2;} { (exit 1); exit 1; }; } fi fi CPPFLAGS="$GL_SAVE_CPPFLAGS" LIBS="$GL_SAVE_LIBS" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu GL_X_LIBS="" # Check whether --with---with-glut-inc was given. if test "${with___with_glut_inc+set}" = set; then withval=$with___with_glut_inc; fi # Check whether --with---with-glut-lib was given. if test "${with___with_glut_lib+set}" = set; then withval=$with___with_glut_lib; fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu GLUT_SAVE_CPPFLAGS="$CPPFLAGS" GLUT_SAVE_LIBS="$LIBS" if test "$no_x" != "yes"; then GLUT_CFLAGS="$X_CFLAGS" GLUT_X_LIBS="$X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu $X_EXTRA_LIBS" fi if test "$with_glut_inc" != "none"; then if test -d "$with_glut_inc"; then GLUT_CFLAGS="-I$with_glut_inc" else GLUT_CFLAGS="$with_glut_inc" fi else GLUT_CFLAGS="" fi # Check for GLUT headers CPPFLAGS="$GLUT_CFLAGS" for ac_header in GL/glut.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------- ## ## Report this to sam@zoy.org ## ## -------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF ac_cv_have_glut=yes else for ac_header in GLUT/glut.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------- ## ## Report this to sam@zoy.org ## ## -------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF ac_cv_have_glut=yes else ac_cv_have_glut=no fi done fi done # Check for GLUT libraries if test "$ac_cv_have_glut" = "yes"; then { echo "$as_me:$LINENO: checking for GLUT library" >&5 echo $ECHO_N "checking for GLUT library... $ECHO_C" >&6; } if test "$with_glut_lib" != ""; then if test -d "$with_glut_lib"; then LIBS="-L$with_glut_lib -lglut" else LIBS="$with_glut_lib" fi else LIBS="-lglut" fi cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char glutInit (); int main () { return glutInit (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_have_glut=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_have_glut=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test "$ac_cv_have_glut" = "no"; then # Try again with the GL libs LIBS="-lglut $GL_LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char glutInit (); int main () { return glutInit (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_have_glut=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_have_glut=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi if test "$ac_cv_have_glut" = "no" && test "$GLUT_X_LIBS" != ""; then # Try again with the GL and X11 libs LIBS="-lglut $GL_LIBS $GLUT_X_LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char glutInit (); int main () { return glutInit (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_have_glut=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_have_glut=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi if test "$ac_cv_have_glut" = "no"; then # Try again with GLUT framework LIBS="-Xlinker -framework -Xlinker OpenGL -Xlinker -framework -Xlinker GLUT" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char glutInit (); int main () { return glutInit (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_have_glut=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_have_glut=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi if test "$ac_cv_have_glut" = "yes"; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } GLUT_LIBS="$LIBS" else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test "$ac_cv_have_glut" = "no"; then { echo "$as_me:$LINENO: WARNING: GLUT headers not available, example program won't be compiled." >&5 echo "$as_me: WARNING: GLUT headers not available, example program won't be compiled." >&2;} fi if test "$ac_cv_have_glut" = "yes"; then HAVE_GLUT_TRUE= HAVE_GLUT_FALSE='#' else HAVE_GLUT_TRUE='#' HAVE_GLUT_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CPPFLAGS="$GLUT_SAVE_CPPFLAGS" LIBS="$GLUT_SAVE_LIBS" GLUT_X_CFLAGS= GLUT_X_LIBS= { echo "$as_me:$LINENO: checking for a TrueType font on the system" >&5 echo $ECHO_N "checking for a TrueType font on the system... $ECHO_C" >&6; } FONT_FILE="`fc-match -sv serif 2>/dev/null| sed -ne 's/.*\file:[^"]*"\([^"]*\)".*/\1/p' | sed q`" if test "$FONT_FILE" = ""; then for font in \ DejaVuSerif.ttf VeraSe.ttf DejaVuSans.ttf Vera.ttf \ times.ttf Times.ttf arial.ttf Arial.ttf; do for dir in \ /usr/share/fonts \ /usr/share/fonts/truetype \ /usr/share/fonts/truetype/ttf-dejavu \ /usr/share/fonts/truetype/ttf-bitstream-vera \ /usr/share/fonts/TTF \ /usr/share/fonts/TTF/dejavu \ /usr/share/fonts/dejavu \ /usr/share/fonts/ttf-dejavu \ /usr/share/fonts/ttf-bitstream-vera \ /usr/X11R6/lib/X11/fonts \ /usr/X11R6/lib/X11/fonts/TTF; do if test -f "$dir/$font"; then FONT_FILE="$dir/$font"; break; fi done if test "$FONT_FILE" != no; then break; fi done fi if test "$FONT_FILE" != ""; then cat >>confdefs.h <<_ACEOF #define FONT_FILE "$FONT_FILE" _ACEOF fi { echo "$as_me:$LINENO: result: $FONT_FILE" >&5 echo "${ECHO_T}$FONT_FILE" >&6; } if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { echo "$as_me:$LINENO: checking for CPPUNIT" >&5 echo $ECHO_N "checking for CPPUNIT... $ECHO_C" >&6; } if test -n "$PKG_CONFIG"; then if test -n "$CPPUNIT_CFLAGS"; then pkg_cv_CPPUNIT_CFLAGS="$CPPUNIT_CFLAGS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"cppunit\"") >&5 ($PKG_CONFIG --exists --print-errors "cppunit") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_CPPUNIT_CFLAGS=`$PKG_CONFIG --cflags "cppunit" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test -n "$PKG_CONFIG"; then if test -n "$CPPUNIT_LIBS"; then pkg_cv_CPPUNIT_LIBS="$CPPUNIT_LIBS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"cppunit\"") >&5 ($PKG_CONFIG --exists --print-errors "cppunit") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_CPPUNIT_LIBS=`$PKG_CONFIG --libs "cppunit" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test $pkg_failed = yes; then if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CPPUNIT_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "cppunit"` else CPPUNIT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "cppunit"` fi # Put the nasty error message in config.log where it belongs echo "$CPPUNIT_PKG_ERRORS" >&5 CPPUNIT="no" elif test $pkg_failed = untried; then CPPUNIT="no" else CPPUNIT_CFLAGS=$pkg_cv_CPPUNIT_CFLAGS CPPUNIT_LIBS=$pkg_cv_CPPUNIT_LIBS { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } CPPUNIT="yes" fi { echo "$as_me:$LINENO: result: $CPPUNIT" >&5 echo "${ECHO_T}$CPPUNIT" >&6; } if test "x$CPPUNIT" != "xno"; then HAVE_CPPUNIT_TRUE= HAVE_CPPUNIT_FALSE='#' else HAVE_CPPUNIT_TRUE='#' HAVE_CPPUNIT_FALSE= fi CPPFLAGS="$CPPFLAGS -I\${top_srcdir}/src" # Warning flags CPPFLAGS="${CPPFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wshadow -Wsign-compare" CFLAGS="${CFLAGS} -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs" # Build HTML documentatin? # Extract the first word of "doxygen", so it can be a program name with args. set dummy doxygen; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_DOXYGEN+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $DOXYGEN in [\\/]* | ?:[\\/]*) ac_cv_path_DOXYGEN="$DOXYGEN" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_DOXYGEN="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_DOXYGEN" && ac_cv_path_DOXYGEN="no" ;; esac fi DOXYGEN=$ac_cv_path_DOXYGEN if test -n "$DOXYGEN"; then { echo "$as_me:$LINENO: result: $DOXYGEN" >&5 echo "${ECHO_T}$DOXYGEN" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$DOXYGEN" != "xno"; then HAVE_DOXYGEN_TRUE= HAVE_DOXYGEN_FALSE='#' else HAVE_DOXYGEN_TRUE='#' HAVE_DOXYGEN_FALSE= fi # Build PDF documentation? # Extract the first word of "pdflatex", so it can be a program name with args. set dummy pdflatex; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_LATEX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $LATEX in [\\/]* | ?:[\\/]*) ac_cv_path_LATEX="$LATEX" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_LATEX="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_LATEX" && ac_cv_path_LATEX="no" ;; esac fi LATEX=$ac_cv_path_LATEX if test -n "$LATEX"; then { echo "$as_me:$LINENO: result: $LATEX" >&5 echo "${ECHO_T}$LATEX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi # Extract the first word of "kpsewhich", so it can be a program name with args. set dummy kpsewhich; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_KPSEWHICH+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $KPSEWHICH in [\\/]* | ?:[\\/]*) ac_cv_path_KPSEWHICH="$KPSEWHICH" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_KPSEWHICH="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_KPSEWHICH" && ac_cv_path_KPSEWHICH="no" ;; esac fi KPSEWHICH=$ac_cv_path_KPSEWHICH if test -n "$KPSEWHICH"; then { echo "$as_me:$LINENO: result: $KPSEWHICH" >&5 echo "${ECHO_T}$KPSEWHICH" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi # Extract the first word of "dvips", so it can be a program name with args. set dummy dvips; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_DVIPS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $DVIPS in [\\/]* | ?:[\\/]*) ac_cv_path_DVIPS="$DVIPS" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_DVIPS="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_DVIPS" && ac_cv_path_DVIPS="no" ;; esac fi DVIPS=$ac_cv_path_DVIPS if test -n "$DVIPS"; then { echo "$as_me:$LINENO: result: $DVIPS" >&5 echo "${ECHO_T}$DVIPS" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi # Extract the first word of "convert", so it can be a program name with args. set dummy convert; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_CONVERT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $CONVERT in [\\/]* | ?:[\\/]*) ac_cv_path_CONVERT="$CONVERT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_CONVERT="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_CONVERT" && ac_cv_path_CONVERT="no" ;; esac fi CONVERT=$ac_cv_path_CONVERT if test -n "$CONVERT"; then { echo "$as_me:$LINENO: result: $CONVERT" >&5 echo "${ECHO_T}$CONVERT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi # Extract the first word of "epstopdf", so it can be a program name with args. set dummy epstopdf; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_EPSTOPDF+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $EPSTOPDF in [\\/]* | ?:[\\/]*) ac_cv_path_EPSTOPDF="$EPSTOPDF" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_EPSTOPDF="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_EPSTOPDF" && ac_cv_path_EPSTOPDF="no" ;; esac fi EPSTOPDF=$ac_cv_path_EPSTOPDF if test -n "$EPSTOPDF"; then { echo "$as_me:$LINENO: result: $EPSTOPDF" >&5 echo "${ECHO_T}$EPSTOPDF" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "${DVIPS}" = "no" -o "${KPSEWHICH}" = "no" -o "${EPSTOPDF}" = "no" \ -o "${CONVERT}" = "no"; then LATEX="no" fi if test "x${LATEX}" != "xno"; then { echo "$as_me:$LINENO: checking for a4.sty and a4wide.sty" >&5 echo $ECHO_N "checking for a4.sty and a4wide.sty... $ECHO_C" >&6; } if "${KPSEWHICH}" a4.sty >/dev/null 2>&1; then if "${KPSEWHICH}" a4wide.sty >/dev/null 2>&1; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else LATEX="no" { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi else LATEX="no" { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test "x${LATEX}" != "xno"; then HAVE_LATEX_TRUE= HAVE_LATEX_FALSE='#' else HAVE_LATEX_TRUE='#' HAVE_LATEX_FALSE= fi ac_config_files="$ac_config_files ftgl.pc" ac_config_files="$ac_config_files Makefile demo/Makefile docs/Makefile docs/doxygen.cfg msvc/Makefile src/Makefile test/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *) $as_unset $ac_var ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes (double-quote # substitution turns \\\\ into \\, and sed turns \\ into \). sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then test "x$cache_file" != "x/dev/null" && { echo "$as_me:$LINENO: updating cache $cache_file" >&5 echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file else { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${HAVE_GLUT_TRUE}" && test -z "${HAVE_GLUT_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"HAVE_GLUT\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"HAVE_GLUT\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${HAVE_CPPUNIT_TRUE}" && test -z "${HAVE_CPPUNIT_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"HAVE_CPPUNIT\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"HAVE_CPPUNIT\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${HAVE_DOXYGEN_TRUE}" && test -z "${HAVE_DOXYGEN_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"HAVE_DOXYGEN\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"HAVE_DOXYGEN\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${HAVE_LATEX_TRUE}" && test -z "${HAVE_LATEX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"HAVE_LATEX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"HAVE_LATEX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # PATH needs CR # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) as_nl=' ' IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. case $0 in *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi # Work around bugs in pre-3.0 UWIN ksh. for as_var in ENV MAIL MAILPATH do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi # Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # CDPATH. $as_unset CDPATH as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line after each line using $LINENO; the second 'sed' # does the real work. The second script uses 'N' to pair each # line-number line with the line containing $LINENO, and appends # trailing '-' during substitution so that $LINENO is not a special # case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # scripts with optimization help from Paolo Bonzini. Blame Lee # E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in -n*) case `echo 'x\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. *) ECHO_C='\c';; esac;; *) ECHO_N='-n';; esac if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir fi echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 # Save the log message, to keep $[0] and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by FTGL $as_me 2.1.3~rc5, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ac_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ FTGL config.status 2.1.3~rc5 configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2006 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # If no file are specified by the user, then we need to provide default # value. By we need to know if files were specified by the user. ac_need_defaults=: while test $# != 0 do case $1 in --*=*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) echo "$ac_cs_version"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift CONFIG_FILES="$CONFIG_FILES $ac_optarg" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header { echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; };; --help | --hel | -h ) echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) { echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *) ac_config_targets="$ac_config_targets $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF if \$ac_cs_recheck; then echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 CONFIG_SHELL=$SHELL export CONFIG_SHELL exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "ftgl.pc") CONFIG_FILES="$CONFIG_FILES ftgl.pc" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "demo/Makefile") CONFIG_FILES="$CONFIG_FILES demo/Makefile" ;; "docs/Makefile") CONFIG_FILES="$CONFIG_FILES docs/Makefile" ;; "docs/doxygen.cfg") CONFIG_FILES="$CONFIG_FILES docs/doxygen.cfg" ;; "msvc/Makefile") CONFIG_FILES="$CONFIG_FILES msvc/Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= trap 'exit_status=$? { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status ' 0 trap '{ (exit 1); exit 1; }' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || { echo "$me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } # # Set up the sed scripts for CONFIG_FILES section. # # No need to generate the scripts if there are no CONFIG_FILES. # This happens for instance when ./config.status config.h if test -n "$CONFIG_FILES"; then _ACEOF ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF SHELL!$SHELL$ac_delim PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim PACKAGE_NAME!$PACKAGE_NAME$ac_delim PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim PACKAGE_STRING!$PACKAGE_STRING$ac_delim PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim exec_prefix!$exec_prefix$ac_delim prefix!$prefix$ac_delim program_transform_name!$program_transform_name$ac_delim bindir!$bindir$ac_delim sbindir!$sbindir$ac_delim libexecdir!$libexecdir$ac_delim datarootdir!$datarootdir$ac_delim datadir!$datadir$ac_delim sysconfdir!$sysconfdir$ac_delim sharedstatedir!$sharedstatedir$ac_delim localstatedir!$localstatedir$ac_delim includedir!$includedir$ac_delim oldincludedir!$oldincludedir$ac_delim docdir!$docdir$ac_delim infodir!$infodir$ac_delim htmldir!$htmldir$ac_delim dvidir!$dvidir$ac_delim pdfdir!$pdfdir$ac_delim psdir!$psdir$ac_delim libdir!$libdir$ac_delim localedir!$localedir$ac_delim mandir!$mandir$ac_delim DEFS!$DEFS$ac_delim ECHO_C!$ECHO_C$ac_delim ECHO_N!$ECHO_N$ac_delim ECHO_T!$ECHO_T$ac_delim LIBS!$LIBS$ac_delim build_alias!$build_alias$ac_delim host_alias!$host_alias$ac_delim target_alias!$target_alias$ac_delim INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim INSTALL_DATA!$INSTALL_DATA$ac_delim am__isrc!$am__isrc$ac_delim CYGPATH_W!$CYGPATH_W$ac_delim PACKAGE!$PACKAGE$ac_delim VERSION!$VERSION$ac_delim ACLOCAL!$ACLOCAL$ac_delim AUTOCONF!$AUTOCONF$ac_delim AUTOMAKE!$AUTOMAKE$ac_delim AUTOHEADER!$AUTOHEADER$ac_delim MAKEINFO!$MAKEINFO$ac_delim install_sh!$install_sh$ac_delim STRIP!$STRIP$ac_delim INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim mkdir_p!$mkdir_p$ac_delim AWK!$AWK$ac_delim SET_MAKE!$SET_MAKE$ac_delim am__leading_dot!$am__leading_dot$ac_delim AMTAR!$AMTAR$ac_delim am__tar!$am__tar$ac_delim am__untar!$am__untar$ac_delim build!$build$ac_delim build_cpu!$build_cpu$ac_delim build_vendor!$build_vendor$ac_delim build_os!$build_os$ac_delim host!$host$ac_delim host_cpu!$host_cpu$ac_delim host_vendor!$host_vendor$ac_delim host_os!$host_os$ac_delim CXX!$CXX$ac_delim CXXFLAGS!$CXXFLAGS$ac_delim LDFLAGS!$LDFLAGS$ac_delim CPPFLAGS!$CPPFLAGS$ac_delim ac_ct_CXX!$ac_ct_CXX$ac_delim EXEEXT!$EXEEXT$ac_delim OBJEXT!$OBJEXT$ac_delim DEPDIR!$DEPDIR$ac_delim am__include!$am__include$ac_delim am__quote!$am__quote$ac_delim AMDEP_TRUE!$AMDEP_TRUE$ac_delim AMDEP_FALSE!$AMDEP_FALSE$ac_delim AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim CXXDEPMODE!$CXXDEPMODE$ac_delim am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim LT_MAJOR!$LT_MAJOR$ac_delim LT_MINOR!$LT_MINOR$ac_delim LT_MICRO!$LT_MICRO$ac_delim LT_VERSION!$LT_VERSION$ac_delim CC!$CC$ac_delim CFLAGS!$CFLAGS$ac_delim ac_ct_CC!$ac_ct_CC$ac_delim CCDEPMODE!$CCDEPMODE$ac_delim am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim SED!$SED$ac_delim GREP!$GREP$ac_delim EGREP!$EGREP$ac_delim LN_S!$LN_S$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` if test -n "$ac_eof"; then ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ac_eof=`expr $ac_eof + 1` fi cat >>$CONFIG_STATUS <<_ACEOF cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof /@[a-zA-Z_][a-zA-Z_0-9]*@/!b _ACEOF sed ' s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g s/^/s,@/; s/!/@,|#_!!_#|/ :n t n s/'"$ac_delim"'$/,g/; t s/$/\\/; p N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF CEOF$ac_eof _ACEOF ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF ECHO!$ECHO$ac_delim AR!$AR$ac_delim RANLIB!$RANLIB$ac_delim DSYMUTIL!$DSYMUTIL$ac_delim NMEDIT!$NMEDIT$ac_delim CPP!$CPP$ac_delim CXXCPP!$CXXCPP$ac_delim F77!$F77$ac_delim FFLAGS!$FFLAGS$ac_delim ac_ct_F77!$ac_ct_F77$ac_delim LIBTOOL!$LIBTOOL$ac_delim XMKMF!$XMKMF$ac_delim FT2_CONFIG!$FT2_CONFIG$ac_delim FT2_CFLAGS!$FT2_CFLAGS$ac_delim FT2_LIBS!$FT2_LIBS$ac_delim X_CFLAGS!$X_CFLAGS$ac_delim X_PRE_LIBS!$X_PRE_LIBS$ac_delim X_LIBS!$X_LIBS$ac_delim X_EXTRA_LIBS!$X_EXTRA_LIBS$ac_delim FRAMEWORK_OPENGL!$FRAMEWORK_OPENGL$ac_delim GL_CFLAGS!$GL_CFLAGS$ac_delim GL_LIBS!$GL_LIBS$ac_delim HAVE_GLUT_TRUE!$HAVE_GLUT_TRUE$ac_delim HAVE_GLUT_FALSE!$HAVE_GLUT_FALSE$ac_delim GLUT_CFLAGS!$GLUT_CFLAGS$ac_delim GLUT_LIBS!$GLUT_LIBS$ac_delim PKG_CONFIG!$PKG_CONFIG$ac_delim CPPUNIT_CFLAGS!$CPPUNIT_CFLAGS$ac_delim CPPUNIT_LIBS!$CPPUNIT_LIBS$ac_delim HAVE_CPPUNIT_TRUE!$HAVE_CPPUNIT_TRUE$ac_delim HAVE_CPPUNIT_FALSE!$HAVE_CPPUNIT_FALSE$ac_delim DOXYGEN!$DOXYGEN$ac_delim HAVE_DOXYGEN_TRUE!$HAVE_DOXYGEN_TRUE$ac_delim HAVE_DOXYGEN_FALSE!$HAVE_DOXYGEN_FALSE$ac_delim LATEX!$LATEX$ac_delim KPSEWHICH!$KPSEWHICH$ac_delim DVIPS!$DVIPS$ac_delim CONVERT!$CONVERT$ac_delim EPSTOPDF!$EPSTOPDF$ac_delim HAVE_LATEX_TRUE!$HAVE_LATEX_TRUE$ac_delim HAVE_LATEX_FALSE!$HAVE_LATEX_FALSE$ac_delim LIBOBJS!$LIBOBJS$ac_delim LTLIBOBJS!$LTLIBOBJS$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 43; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` if test -n "$ac_eof"; then ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ac_eof=`expr $ac_eof + 1` fi cat >>$CONFIG_STATUS <<_ACEOF cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end _ACEOF sed ' s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g s/^/s,@/; s/!/@,|#_!!_#|/ :n t n s/'"$ac_delim"'$/,g/; t s/$/\\/; p N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF :end s/|#_!!_#|//g CEOF$ac_eof _ACEOF # VPATH may cause trouble with some makes, so we remove $(srcdir), # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=/{ s/:*\$(srcdir):*/:/ s/:*\${srcdir}:*/:/ s/:*@srcdir@:*/:/ s/^\([^=]*=[ ]*\):*/\1/ s/:*$// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF fi # test -n "$CONFIG_FILES" for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 echo "$as_me: error: Invalid tag $ac_tag." >&2;} { (exit 1); exit 1; }; };; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 echo "$as_me: error: cannot find input file: $ac_f" >&2;} { (exit 1); exit 1; }; };; esac ac_file_inputs="$ac_file_inputs $ac_f" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input="Generated from "`IFS=: echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} fi case $ac_tag in *:-:* | *:-) cat >"$tmp/stdin";; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` { as_dir="$ac_dir" case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= case `sed -n '/datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p ' $ac_file_inputs` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF sed "$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s&@configure_input@&$configure_input&;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined." >&5 echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined." >&2;} rm -f "$tmp/stdin" case $ac_file in -) cat "$tmp/out"; rm -f "$tmp/out";; *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; esac ;; :H) # # CONFIG_HEADER # _ACEOF # Transform confdefs.h into a sed script `conftest.defines', that # substitutes the proper values into config.h.in to produce config.h. rm -f conftest.defines conftest.tail # First, append a space to every undef/define line, to ease matching. echo 's/$/ /' >conftest.defines # Then, protect against being on the right side of a sed subst, or in # an unquoted here document, in config.status. If some macros were # called several times there might be several #defines for the same # symbol, which is useless. But do not sort them, since the last # AC_DEFINE must be honored. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where # NAME is the cpp macro being defined, VALUE is the value it is being given. # PARAMS is the parameter list in the macro definition--in most cases, it's # just an empty string. ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' ac_dB='\\)[ (].*,\\1define\\2' ac_dC=' ' ac_dD=' ,' uniq confdefs.h | sed -n ' t rset :rset s/^[ ]*#[ ]*define[ ][ ]*// t ok d :ok s/[\\&,]/\\&/g s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p ' >>conftest.defines # Remove the space that was appended to ease matching. # Then replace #undef with comments. This is necessary, for # example, in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. # (The regexp can be short, since the line contains either #define or #undef.) echo 's/ $// s,^[ #]*u.*,/* & */,' >>conftest.defines # Break up conftest.defines: ac_max_sed_lines=50 # First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" # Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" # Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" # et cetera. ac_in='$ac_file_inputs' ac_out='"$tmp/out1"' ac_nxt='"$tmp/out2"' while : do # Write a here document: cat >>$CONFIG_STATUS <<_ACEOF # First, check the format of the line: cat >"\$tmp/defines.sed" <<\\CEOF /^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def /^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def b :def _ACEOF sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS echo 'CEOF sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail grep . conftest.tail >/dev/null || break rm -f conftest.defines mv conftest.tail conftest.defines done rm -f conftest.defines conftest.tail echo "ac_result=$ac_in" >>$CONFIG_STATUS cat >>$CONFIG_STATUS <<\_ACEOF if test x"$ac_file" != x-; then echo "/* $configure_input */" >"$tmp/config.h" cat "$ac_result" >>"$tmp/config.h" if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else rm -f $ac_file mv "$tmp/config.h" $ac_file fi else echo "/* $configure_input */" cat "$ac_result" fi rm -f "$tmp/out12" # Compute $ac_file's index in $config_headers. _am_arg=$ac_file _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` { as_dir=$dirpart/$fdir case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ;; esac done # for ac_tag { (exit 0); exit 0; } _ACEOF chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || { (exit 1); exit 1; } fi prefix=`eval "echo $prefix"` prefix=`eval "echo $prefix"` bindir=`eval "echo $bindir"` bindir=`eval "echo $bindir"` sysconfdir=`eval "echo $sysconfdir"` sysconfdir=`eval "echo $sysconfdir"` mandir=`eval "echo $mandir"` mandir=`eval "echo $mandir"` datadir=`eval "echo $datadir"` datadir=`eval "echo $datadir"` { echo "$as_me:$LINENO: result: Done." >&5 echo "${ECHO_T}Done." >&6; } { echo "$as_me:$LINENO: result: " >&5 echo "${ECHO_T}" >&6; } { echo "$as_me:$LINENO: result: FTGL configured with the following settings:" >&5 echo "${ECHO_T}FTGL configured with the following settings:" >&6; } { echo "$as_me:$LINENO: result: " >&5 echo "${ECHO_T}" >&6; } { echo "$as_me:$LINENO: result: Prefix: ${prefix}" >&5 echo "${ECHO_T} Prefix: ${prefix}" >&6; } { echo "$as_me:$LINENO: result: Binaries: ${bindir}" >&5 echo "${ECHO_T} Binaries: ${bindir}" >&6; } { echo "$as_me:$LINENO: result: Configuration files: ${sysconfdir}" >&5 echo "${ECHO_T}Configuration files: ${sysconfdir}" >&6; } { echo "$as_me:$LINENO: result: Data files: ${datadir}" >&5 echo "${ECHO_T} Data files: ${datadir}" >&6; } { echo "$as_me:$LINENO: result: " >&5 echo "${ECHO_T}" >&6; } { echo "$as_me:$LINENO: result: CC = ${CC}" >&5 echo "${ECHO_T}CC = ${CC}" >&6; } { echo "$as_me:$LINENO: result: CXX = ${CXX}" >&5 echo "${ECHO_T}CXX = ${CXX}" >&6; } if test "x$CFLAGS" != "x" ; then { echo "$as_me:$LINENO: result: CFLAGS = ${CFLAGS}" >&5 echo "${ECHO_T}CFLAGS = ${CFLAGS}" >&6; } fi if test "x$CXXFLAGS" != "x" ; then { echo "$as_me:$LINENO: result: CXXFLAGS = ${CXXFLAGS}" >&5 echo "${ECHO_T}CXXFLAGS = ${CXXFLAGS}" >&6; } fi if test "x$CPPFLAGS" != "x" ; then { echo "$as_me:$LINENO: result: CPPFLAGS = ${CPPFLAGS}" >&5 echo "${ECHO_T}CPPFLAGS = ${CPPFLAGS}" >&6; } fi if test "x$LDFLAGS" != "x" ; then { echo "$as_me:$LINENO: result: LDFLAGS = ${LDFLAGS}" >&5 echo "${ECHO_T}LDFLAGS = ${LDFLAGS}" >&6; } fi if test "x$LIBS" != "x" ; then { echo "$as_me:$LINENO: result: LIBS = ${LIBS}" >&5 echo "${ECHO_T}LIBS = ${LIBS}" >&6; } fi { echo "$as_me:$LINENO: result: " >&5 echo "${ECHO_T}" >&6; } { echo "$as_me:$LINENO: result: ---" >&5 echo "${ECHO_T}---" >&6; } { echo "$as_me:$LINENO: result: $0 complete, type 'make' to begin building" >&5 echo "${ECHO_T}$0 complete, type 'make' to begin building" >&6; } { echo "$as_me:$LINENO: result: " >&5 echo "${ECHO_T}" >&6; } # Local Variables: # tab-width: 8 # mode: autoconf # sh-indentation: 2 # sh-basic-offset: 2 # indent-tabs-mode: t # End: # ex: shiftwidth=2 tabstop=8 ftgl-2.1.3~rc5/msvc/0000777000175000017500000000000011024234670011235 500000000000000ftgl-2.1.3~rc5/msvc/Makefile.in0000644000175000017500000002310711024231635013217 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = msvc DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/cxx.m4 $(top_srcdir)/m4/font.m4 \ $(top_srcdir)/m4/freetype2.m4 $(top_srcdir)/m4/gl.m4 \ $(top_srcdir)/m4/glut.m4 $(top_srcdir)/m4/pkg.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CONVERT = @CONVERT@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CPPUNIT_CFLAGS = @CPPUNIT_CFLAGS@ CPPUNIT_LIBS = @CPPUNIT_LIBS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DOXYGEN = @DOXYGEN@ DSYMUTIL = @DSYMUTIL@ DVIPS = @DVIPS@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EPSTOPDF = @EPSTOPDF@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FRAMEWORK_OPENGL = @FRAMEWORK_OPENGL@ FT2_CFLAGS = @FT2_CFLAGS@ FT2_CONFIG = @FT2_CONFIG@ FT2_LIBS = @FT2_LIBS@ GLUT_CFLAGS = @GLUT_CFLAGS@ GLUT_LIBS = @GLUT_LIBS@ GL_CFLAGS = @GL_CFLAGS@ GL_LIBS = @GL_LIBS@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ KPSEWHICH = @KPSEWHICH@ LATEX = @LATEX@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_MAJOR = @LT_MAJOR@ LT_MICRO = @LT_MICRO@ LT_MINOR = @LT_MINOR@ LT_VERSION = @LT_VERSION@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = \ README.txt \ config.h \ $(vc71_files) \ $(vc8_files) \ $(NULL) vc71_files = \ vc71/ftgl.sln \ vc71/ftgl_dll.vcproj \ $(NULL) vc8_files = \ vc8/ftgl_static.vcproj \ vc8/unit_tests.vcproj \ vc8/ftgl.sln \ vc8/ftgl_demo.sln \ vc8/ftgl_dll.vcproj \ vc8/FTGLDemo.vcproj \ vc8/SimpleDemo.vcproj \ vc8/trackball.vcproj \ $(NULL) NULL = all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu msvc/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu msvc/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-exec-am: install-html: install-html-am install-info: install-info-am install-man: install-pdf: install-pdf-am install-ps: install-ps-am installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ftgl-2.1.3~rc5/msvc/config.h0000644000175000017500000000050311015336636012572 00000000000000// GLUT #define HAVE_GL_GLUT_H // M_PI and friends on VC #define _USE_MATH_DEFINES // quell spurious "'this': used in base member initializer list" warnings #ifdef _MSC_VER #pragma warning(disable: 4355) #endif // quell spurious portable-function deprecation warnings #define _CRT_SECURE_NO_DEPRECATE 1 #define _POSIX_ 1ftgl-2.1.3~rc5/msvc/vc8/0000777000175000017500000000000011024234670011735 500000000000000ftgl-2.1.3~rc5/msvc/vc8/ftgl_demo.sln0000644000175000017500000000631211014772525014336 00000000000000 Microsoft Visual Studio Solution File, Format Version 9.00 # Visual Studio 2005 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ftgl_static", "ftgl_static.vcproj", "{1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "trackball", "trackball.vcproj", "{6CEFDFC5-05FF-4C34-A53F-C49593E1936C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FTGLDemo", "FTGLDemo.vcproj", "{90173472-70E2-4B0B-AEBE-BCE4F68BE2C5}" ProjectSection(ProjectDependencies) = postProject {6CEFDFC5-05FF-4C34-A53F-C49593E1936C} = {6CEFDFC5-05FF-4C34-A53F-C49593E1936C} {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21} = {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SimpleDemo", "SimpleDemo.vcproj", "{F2E2D79C-F982-46C3-B33A-0982613DE6B0}" ProjectSection(ProjectDependencies) = postProject {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21} = {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21} {6CEFDFC5-05FF-4C34-A53F-C49593E1936C} = {6CEFDFC5-05FF-4C34-A53F-C49593E1936C} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CDemo", "CDemo.vcproj", "{F2E2D79C-F982-46C3-B33A-0982613DE6C0}" ProjectSection(ProjectDependencies) = postProject {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21} = {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21} EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21}.Debug|Win32.ActiveCfg = Debug|Win32 {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21}.Debug|Win32.Build.0 = Debug|Win32 {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21}.Release|Win32.ActiveCfg = Release|Win32 {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21}.Release|Win32.Build.0 = Release|Win32 {6CEFDFC5-05FF-4C34-A53F-C49593E1936C}.Debug|Win32.ActiveCfg = Debug|Win32 {6CEFDFC5-05FF-4C34-A53F-C49593E1936C}.Debug|Win32.Build.0 = Debug|Win32 {6CEFDFC5-05FF-4C34-A53F-C49593E1936C}.Release|Win32.ActiveCfg = Release|Win32 {6CEFDFC5-05FF-4C34-A53F-C49593E1936C}.Release|Win32.Build.0 = Release|Win32 {90173472-70E2-4B0B-AEBE-BCE4F68BE2C5}.Debug|Win32.ActiveCfg = Debug|Win32 {90173472-70E2-4B0B-AEBE-BCE4F68BE2C5}.Debug|Win32.Build.0 = Debug|Win32 {90173472-70E2-4B0B-AEBE-BCE4F68BE2C5}.Release|Win32.ActiveCfg = Release|Win32 {90173472-70E2-4B0B-AEBE-BCE4F68BE2C5}.Release|Win32.Build.0 = Release|Win32 {F2E2D79C-F982-46C3-B33A-0982613DE6B0}.Debug|Win32.ActiveCfg = Debug|Win32 {F2E2D79C-F982-46C3-B33A-0982613DE6B0}.Debug|Win32.Build.0 = Debug|Win32 {F2E2D79C-F982-46C3-B33A-0982613DE6B0}.Release|Win32.ActiveCfg = Release|Win32 {F2E2D79C-F982-46C3-B33A-0982613DE6B0}.Release|Win32.Build.0 = Release|Win32 {F2E2D79C-F982-46C3-B33A-0982613DE6C0}.Debug|Win32.ActiveCfg = Debug|Win32 {F2E2D79C-F982-46C3-B33A-0982613DE6C0}.Debug|Win32.Build.0 = Debug|Win32 {F2E2D79C-F982-46C3-B33A-0982613DE6C0}.Release|Win32.ActiveCfg = Release|Win32 {F2E2D79C-F982-46C3-B33A-0982613DE6C0}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal ftgl-2.1.3~rc5/msvc/vc8/FTGLDemo.vcproj0000644000175000017500000001057111015467246014452 00000000000000 ftgl-2.1.3~rc5/msvc/vc8/SimpleDemo.vcproj0000644000175000017500000001046411011547673015147 00000000000000 ftgl-2.1.3~rc5/msvc/vc8/ftgl.sln0000644000175000017500000000244111007776767013347 00000000000000 Microsoft Visual Studio Solution File, Format Version 9.00 # Visual Studio 2005 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ftgl_dll", "ftgl_dll.vcproj", "{F7946C68-319D-441A-A732-BC2A200A9112}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ftgl_static", "ftgl_static.vcproj", "{1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {F7946C68-319D-441A-A732-BC2A200A9112}.Debug|Win32.ActiveCfg = Debug|Win32 {F7946C68-319D-441A-A732-BC2A200A9112}.Debug|Win32.Build.0 = Debug|Win32 {F7946C68-319D-441A-A732-BC2A200A9112}.Release|Win32.ActiveCfg = Release|Win32 {F7946C68-319D-441A-A732-BC2A200A9112}.Release|Win32.Build.0 = Release|Win32 {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21}.Debug|Win32.ActiveCfg = Debug|Win32 {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21}.Debug|Win32.Build.0 = Debug|Win32 {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21}.Release|Win32.ActiveCfg = Release|Win32 {1D758EEA-59C3-46E4-BEF5-16DCCA8C0B21}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal ftgl-2.1.3~rc5/msvc/vc8/ftgl_dll.vcproj0000644000175000017500000002710211024162723014666 00000000000000 ftgl-2.1.3~rc5/msvc/vc8/ftgl_static.vcproj0000644000175000017500000002370011015467246015412 00000000000000 ftgl-2.1.3~rc5/msvc/vc8/unit_tests.vcproj0000644000175000017500000001732611007776767015333 00000000000000 ftgl-2.1.3~rc5/msvc/vc8/trackball.vcproj0000644000175000017500000000723511015467246015053 00000000000000 ftgl-2.1.3~rc5/msvc/vc71/0000777000175000017500000000000011024234670012015 500000000000000ftgl-2.1.3~rc5/msvc/vc71/ftgl.sln0000644000175000017500000000156411007776767013434 00000000000000Microsoft Visual Studio Solution File, Format Version 8.00 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ftgl_dll", "ftgl_dll.vcproj", "{205F86AE-57A2-403C-BBFD-FABD30B3DD15}" ProjectSection(ProjectDependencies) = postProject EndProjectSection EndProject Global GlobalSection(SolutionConfiguration) = preSolution Debug = Debug Release = Release EndGlobalSection GlobalSection(ProjectConfiguration) = postSolution {205F86AE-57A2-403C-BBFD-FABD30B3DD15}.Debug.ActiveCfg = Debug|Win32 {205F86AE-57A2-403C-BBFD-FABD30B3DD15}.Debug.Build.0 = Debug|Win32 {205F86AE-57A2-403C-BBFD-FABD30B3DD15}.Release.ActiveCfg = Release|Win32 {205F86AE-57A2-403C-BBFD-FABD30B3DD15}.Release.Build.0 = Release|Win32 EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution EndGlobalSection GlobalSection(ExtensibilityAddIns) = postSolution EndGlobalSection EndGlobal ftgl-2.1.3~rc5/msvc/vc71/ftgl_dll.vcproj0000644000175000017500000002270611024162723014753 00000000000000 ftgl-2.1.3~rc5/msvc/Makefile.am0000644000175000017500000000064011011547674013214 00000000000000 EXTRA_DIST = \ README.txt \ config.h \ $(vc71_files) \ $(vc8_files) \ $(NULL) vc71_files = \ vc71/ftgl.sln \ vc71/ftgl_dll.vcproj \ $(NULL) vc8_files = \ vc8/ftgl_static.vcproj \ vc8/unit_tests.vcproj \ vc8/ftgl.sln \ vc8/ftgl_demo.sln \ vc8/ftgl_dll.vcproj \ vc8/FTGLDemo.vcproj \ vc8/SimpleDemo.vcproj \ vc8/trackball.vcproj \ $(NULL) NULL = ftgl-2.1.3~rc5/msvc/README.txt0000644000175000017500000000163411007776767012676 00000000000000FTGL Version 2.0 FTGL on windows can be built a ether a dynamic link library (DLL) with export lib (lib) or a static library (lib). All files will be built in the build directory that will be created in this directory. FTGL requires the Freetype2 library (version 2.3.5 r). You will need to define the environment variable FREETYPE to contain the full path to your freetype2 sources. the VC8 dir contains projects for use with Visual C++ 2005 and 2008, and can build both the dynamic and static libs. the VC71 dir contains projects for use with Visual C++ 2003 and can only build a dynamic lib. To use FTGL in your own projects you will need to link against ether the static lib, or the DLL export lib All builds use the multithreaded runtimes. Your project will also need to include freetype2 and OpenGL. For instructions on using Freetype go to www.freetype.org For instructions on using OpenGL go to www.opengl.org ftgl-2.1.3~rc5/Makefile.am0000644000175000017500000000151711012103230012221 00000000000000 ACLOCAL_AMFLAGS = -I m4 SUBDIRS = src test demo docs DIST_SUBDIRS = $(SUBDIRS) msvc pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = ftgl.pc DISTCLEANFILES = ftgl.pc EXTRA_DIST = \ AUTHORS \ BUGS \ COPYING \ ChangeLog \ INSTALL \ NEWS \ README \ TODO \ autogen.sh \ configure.ac \ ftgl.pc.in \ m4 \ $(NULL) # Print out an informative summary. all-local: @$(ECHO) "Done." @$(ECHO) @if test "x$(MAKECMDGOALS)" = "xall-am" -o "x$(.TARGETS)" = "xall-am" -o "x$(MAKECMDGOALS)" = "x" -o "x$(.TARGETS)" = "x" ; then \ $(ECHO) "---" ;\ $(ECHO) "Run 'make install' to begin installation into $(prefix)" ;\ fi @$(ECHO) # Upload documentation DOC = docs/html docs/latex/ftgl.pdf HOST = ftgl.sf.net DIR = /home/groups/f/ft/ftgl/htdocs/ upload-doc: tar cz $(DOC) | ssh $(HOST) "cd $(DIR) && rm -Rf $(DOC) && tar xvz" NULL = ftgl-2.1.3~rc5/COPYING0000644000175000017500000000226711005631743011244 00000000000000FTGL Herewith is a license. Basically I want you to use this software and if you think this license is preventing you from doing so let me know. Copyright (C) 2001-3 Henry Maddocks Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.