Your message dated Wed, 16 Nov 2022 01:21:10 +0000
with message-id <[email protected]>
and subject line Bug#1024176: Removed package(s) from unstable
has caused the Debian Bug report #1010140,
regarding aqsis: FTBFS on arm{el,hf}
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1010140: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1010140
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: aqsis
Version: 1.8.2+git20210815-1
Severity: serious
Tags: ftbfs sid bookworm
Justification: fails to build from source (but built successfully in the past)
X-Debbugs-Cc: [email protected]

aqsis FTBFS on armel and armhf:

[ 34%] Building CXX object 
libs/tex/CMakeFiles/aqsis_tex.dir/filtering/occlusionsampler.cpp.o
cd /<<PKGBUILDDIR>>/obj-arm-linux-gnueabi/libs/tex && /usr/bin/c++ 
-DAQSIS_TEX_EXPORTS -DAQSIS_USE_PNG -DBOOST_ALL_NO_LIB 
-DBOOST_FILESYSTEM_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DUSE_OPENEXR 
-Daqsis_tex_EXPORTS -I/<<PKGBUILDDIR>>/include 
-I/<<PKGBUILDDIR>>/obj-arm-linux-gnueabi/include 
-I/<<PKGBUILDDIR>>/libs/tex/filtering -I/<<PKGBUILDDIR>>/libs/tex/io 
-I/<<PKGBUILDDIR>>/libs/tex/maketexture -I/usr/include/OpenEXR -g -O2 
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat 
-Werror=format-security -pipe -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -Wdate-time 
-D_FORTIFY_SOURCE=2 -fopenmp -fPIC -MD -MT 
libs/tex/CMakeFiles/aqsis_tex.dir/filtering/occlusionsampler.cpp.o -MF 
CMakeFiles/aqsis_tex.dir/filtering/occlusionsampler.cpp.o.d -o 
CMakeFiles/aqsis_tex.dir/filtering/occlusionsampler.cpp.o -c 
/<<PKGBUILDDIR>>/libs/tex/filtering/occlusionsampler.cpp
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In function ‘void 
Aqsis::glTranslate(const V3f&)’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:66:5: error: ‘glTranslatef’ was not 
declared in this scope; did you mean ‘glTranslate’?
   66 |     glTranslatef(v.x, v.y, v.z);
      |     ^~~~~~~~~~~~
      |     glTranslate
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In function ‘void 
Aqsis::glVertex(const V3f&)’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:71:5: error: ‘glVertex3f’ was not 
declared in this scope; did you mean ‘glVertex’?
   71 |     glVertex3f(v.x, v.y, v.z);
      |     ^~~~~~~~~~
      |     glVertex
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In function ‘void 
Aqsis::glVertex(const V2f&)’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:76:5: error: ‘glVertex2f’ was not 
declared in this scope; did you mean ‘glVertex’?
   76 |     glVertex2f(v.x, v.y);
      |     ^~~~~~~~~~
      |     glVertex
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In function ‘void 
Aqsis::glColor(const C3f&)’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:81:5: error: ‘glColor3f’ was not 
declared in this scope; did you mean ‘glColor’?
   81 |     glColor3f(c.x, c.y, c.z);
      |     ^~~~~~~~~
      |     glColor
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In function ‘void 
Aqsis::glLoadMatrix(const M44f&)’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:86:5: error: ‘glLoadMatrixf’ was not 
declared in this scope; did you mean ‘glLoadMatrix’?
   86 |     glLoadMatrixf((GLfloat*)m[0]);
      |     ^~~~~~~~~~~~~
      |     glLoadMatrix
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In function ‘void 
Aqsis::drawDisk(Imath_2_5::V3f, Imath_2_5::V3f, float)’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:308:5: error: ‘glPushMatrix’ was not 
declared in this scope; did you mean ‘glLoadMatrix’?
  308 |     glPushMatrix();
      |     ^~~~~~~~~~~~
      |     glLoadMatrix
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:311:5: error: ‘glScalef’ was not 
declared in this scope
  311 |     glScalef(r,r,r);
      |     ^~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:319:5: error: ‘glRotatef’ was not 
declared in this scope
  319 |     glRotatef(angle, v.x, v.y, v.z);
      |     ^~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:320:5: error: ‘glColor3f’ was not 
declared in this scope; did you mean ‘glColor’?
  320 |     glColor3f(1, 0, 0);
      |     ^~~~~~~~~
      |     glColor
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:321:5: error: ‘glBegin’ was not 
declared in this scope
  321 |     glBegin(GL_LINE_LOOP);
      |     ^~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:328:13: error: ‘glVertex3f’ was not 
declared in this scope; did you mean ‘glVertex’?
  328 |             glVertex3f(scale*cos(angle), scale*sin(angle), 0);
      |             ^~~~~~~~~~
      |             glVertex
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:330:5: error: ‘glEnd’ was not declared 
in this scope
  330 |     glEnd();
      |     ^~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:331:5: error: ‘glPopMatrix’ was not 
declared in this scope; did you mean ‘glLoadMatrix’?
  331 |     glPopMatrix();
      |     ^~~~~~~~~~~
      |     glLoadMatrix
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In function ‘void 
Aqsis::drawCubeEnvFace(Imath_2_5::V2f, GLubyte*, int)’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:436:55: error: ‘GL_CLAMP’ was not 
declared in this scope
  436 |     glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
      |                                                       ^~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:446:15: error: ‘GL_TEXTURE_ENV’ was 
not declared in this scope; did you mean ‘GL_TEXTURE_2D’?
  446 |     glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
      |               ^~~~~~~~~~~~~~
      |               GL_TEXTURE_2D
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:446:31: error: ‘GL_TEXTURE_ENV_MODE’ 
was not declared in this scope; did you mean ‘GL_TEXTURE_MIN_LOD’?
  446 |     glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
      |                               ^~~~~~~~~~~~~~~~~~~
      |                               GL_TEXTURE_MIN_LOD
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:446:5: error: ‘glTexEnvf’ was not 
declared in this scope
  446 |     glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
      |     ^~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:449:5: error: ‘glPushMatrix’ was not 
declared in this scope; did you mean ‘glLoadMatrix’?
  449 |     glPushMatrix();
      |     ^~~~~~~~~~~~
      |     glLoadMatrix
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:450:5: error: ‘glTranslatef’ was not 
declared in this scope; did you mean ‘glTranslate’?
  450 |     glTranslatef(p.x, p.y, 0);
      |     ^~~~~~~~~~~~
      |     glTranslate
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:451:5: error: ‘glBegin’ was not 
declared in this scope
  451 |     glBegin(GL_QUADS);
      |     ^~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:452:9: error: ‘glTexCoord2f’ was not 
declared in this scope
  452 |         glTexCoord2f(0, 0); glVertex2f(0, 0);
      |         ^~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:452:29: error: ‘glVertex2f’ was not 
declared in this scope; did you mean ‘glVertex’?
  452 |         glTexCoord2f(0, 0); glVertex2f(0, 0);
      |                             ^~~~~~~~~~
      |                             glVertex
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:456:5: error: ‘glEnd’ was not declared 
in this scope
  456 |     glEnd();
      |     ^~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:457:5: error: ‘glPopMatrix’ was not 
declared in this scope; did you mean ‘glLoadMatrix’?
  457 |     glPopMatrix();
      |     ^~~~~~~~~~~
      |     glLoadMatrix
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In function ‘void 
Aqsis::drawMicroBuf(const Aqsis::MicroBuf&)’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:512:18: error: ‘GL_PROJECTION’ was not 
declared in this scope; did you mean ‘GL_LOCATION’?
  512 |     glMatrixMode(GL_PROJECTION);
      |                  ^~~~~~~~~~~~~
      |                  GL_LOCATION
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:512:5: error: ‘glMatrixMode’ was not 
declared in this scope; did you mean ‘glMatrixPopEXT’?
  512 |     glMatrixMode(GL_PROJECTION);
      |     ^~~~~~~~~~~~
      |     glMatrixPopEXT
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:513:5: error: ‘glLoadIdentity’ was not 
declared in this scope
  513 |     glLoadIdentity();
      |     ^~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:514:18: error: ‘GL_MODELVIEW’ was not 
declared in this scope
  514 |     glMatrixMode(GL_MODELVIEW);
      |                  ^~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:516:5: error: ‘glTranslatef’ was not 
declared in this scope; did you mean ‘glTranslate’?
  516 |     glTranslatef(-1, -1, 0);
      |     ^~~~~~~~~~~~
      |     glTranslate
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:517:5: error: ‘glScalef’ was not 
declared in this scope
  517 |     glScalef(0.5f, 2.0f/3.0f, 1);
      |     ^~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In member function ‘virtual void 
Aqsis::PointView::paintGL()’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:648:18: error: ‘GL_PROJECTION’ was not 
declared in this scope; did you mean ‘GL_LOCATION’?
  648 |     glMatrixMode(GL_PROJECTION);
      |                  ^~~~~~~~~~~~~
      |                  GL_LOCATION
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:648:5: error: ‘glMatrixMode’ was not 
declared in this scope; did you mean ‘glMatrixPopEXT’?
  648 |     glMatrixMode(GL_PROJECTION);
      |     ^~~~~~~~~~~~
      |     glMatrixPopEXT
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:650:18: error: ‘GL_MODELVIEW’ was not 
declared in this scope
  650 |     glMatrixMode(GL_MODELVIEW);
      |                  ^~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:653:5: error: ‘glClearDepth’ was not 
declared in this scope; did you mean ‘glClearDepthf’?
  653 |     glClearDepth(1.0f);
      |     ^~~~~~~~~~~~
      |     glClearDepthf
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:684:22: error: ‘GL_VIEWPORT_BIT’ was 
not declared in this scope; did you mean ‘GL_VIEWPORT’?
  684 |         glPushAttrib(GL_VIEWPORT_BIT | GL_SCISSOR_BIT | GL_ENABLE_BIT);
      |                      ^~~~~~~~~~~~~~~
      |                      GL_VIEWPORT
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:684:40: error: ‘GL_SCISSOR_BIT’ was 
not declared in this scope; did you mean ‘GL_SCISSOR_BOX’?
  684 |         glPushAttrib(GL_VIEWPORT_BIT | GL_SCISSOR_BIT | GL_ENABLE_BIT);
      |                                        ^~~~~~~~~~~~~~
      |                                        GL_SCISSOR_BOX
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:684:57: error: ‘GL_ENABLE_BIT’ was not 
declared in this scope
  684 |         glPushAttrib(GL_VIEWPORT_BIT | GL_SCISSOR_BIT | GL_ENABLE_BIT);
      |                                                         ^~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:684:9: error: ‘glPushAttrib’ was not 
declared in this scope
  684 |         glPushAttrib(GL_VIEWPORT_BIT | GL_SCISSOR_BIT | GL_ENABLE_BIT);
      |         ^~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:685:9: error: ‘glPushMatrix’ was not 
declared in this scope; did you mean ‘glLoadMatrix’?
  685 |         glPushMatrix();
      |         ^~~~~~~~~~~~
      |         glLoadMatrix
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:698:9: error: ‘glPopMatrix’ was not 
declared in this scope; did you mean ‘glLoadMatrix’?
  698 |         glPopMatrix();
      |         ^~~~~~~~~~~
      |         glLoadMatrix
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:702:9: error: ‘glPopAttrib’ was not 
declared in this scope
  702 |         glPopAttrib();
      |         ^~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In member function ‘virtual void 
Aqsis::PointView::wheelEvent(QWheelEvent*)’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:736:60: warning: ‘int 
QWheelEvent::delta() const’ is deprecated: Use angleDelta() 
[-Wdeprecated-declarations]
  736 |     m_camera.mouseDrag(QPoint(0,0), QPoint(0, -event->delta()/2), true);
      |                                                ~~~~~~~~~~~~^~
In file included from /usr/include/arm-linux-gnueabi/qt5/QtGui/QKeyEvent:1,
                 from /<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:35:
/usr/include/arm-linux-gnueabi/qt5/QtGui/qevent.h:219:16: note: declared here
  219 |     inline int delta() const  { return qt4D; }
      |                ^~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In static member function ‘static 
void Aqsis::PointView::drawAxes()’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:783:14: error: ‘GL_LINE_SMOOTH’ was 
not declared in this scope; did you mean ‘GL_LINE_LOOP’?
  783 |     glEnable(GL_LINE_SMOOTH);
      |              ^~~~~~~~~~~~~~
      |              GL_LINE_LOOP
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:785:5: error: ‘glColor3f’ was not 
declared in this scope; did you mean ‘glColor’?
  785 |     glColor3f(1.0, 0.0, 0.0);
      |     ^~~~~~~~~
      |     glColor
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:786:5: error: ‘glBegin’ was not 
declared in this scope
  786 |     glBegin(GL_LINES);
      |     ^~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:787:9: error: ‘glVertex3f’ was not 
declared in this scope; did you mean ‘glVertex’?
  787 |         glVertex3f(0, 0, 0);
      |         ^~~~~~~~~~
      |         glVertex
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:789:5: error: ‘glEnd’ was not declared 
in this scope
  789 |     glEnd();
      |     ^~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In member function ‘void 
Aqsis::PointView::drawCursor(const V3f&) const’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:807:5: error: ‘glColor3f’ was not 
declared in this scope; did you mean ‘glColor’?
  807 |     glColor3f(1,1,1);
      |     ^~~~~~~~~
      |     glColor
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:808:5: error: ‘glPointSize’ was not 
declared in this scope
  808 |     glPointSize(10);
      |     ^~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:809:5: error: ‘glBegin’ was not 
declared in this scope
  809 |     glBegin(GL_POINTS);
      |     ^~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:811:5: error: ‘glEnd’ was not declared 
in this scope
  811 |     glEnd();
      |     ^~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:821:18: error: ‘GL_ENABLE_BIT’ was not 
declared in this scope
  821 |     glPushAttrib(GL_ENABLE_BIT);
      |                  ^~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:821:5: error: ‘glPushAttrib’ was not 
declared in this scope
  821 |     glPushAttrib(GL_ENABLE_BIT);
      |     ^~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:824:18: error: ‘GL_PROJECTION’ was not 
declared in this scope; did you mean ‘GL_LOCATION’?
  824 |     glMatrixMode(GL_PROJECTION);
      |                  ^~~~~~~~~~~~~
      |                  GL_LOCATION
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:824:5: error: ‘glMatrixMode’ was not 
declared in this scope; did you mean ‘glMatrixPopEXT’?
  824 |     glMatrixMode(GL_PROJECTION);
      |     ^~~~~~~~~~~~
      |     glMatrixPopEXT
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:825:5: error: ‘glPushMatrix’ was not 
declared in this scope; did you mean ‘glLoadMatrix’?
  825 |     glPushMatrix();
      |     ^~~~~~~~~~~~
      |     glLoadMatrix
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:826:5: error: ‘glLoadIdentity’ was not 
declared in this scope
  826 |     glLoadIdentity();
      |     ^~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:827:5: error: ‘glOrtho’ was not 
declared in this scope
  827 |     glOrtho(0,width(), 0,height(), 0, 1);
      |     ^~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:828:18: error: ‘GL_MODELVIEW’ was not 
declared in this scope
  828 |     glMatrixMode(GL_MODELVIEW);
      |                  ^~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:834:14: error: ‘GL_LINE_SMOOTH’ was 
not declared in this scope; did you mean ‘GL_LINE_LOOP’?
  834 |     glEnable(GL_LINE_SMOOTH);
      |              ^~~~~~~~~~~~~~
      |              GL_LINE_LOOP
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:844:5: error: ‘glTranslatef’ was not 
declared in this scope; did you mean ‘glTranslate’?
  844 |     glTranslatef(p2.x, p2.y, 0);
      |     ^~~~~~~~~~~~
      |     glTranslate
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:856:5: error: ‘glRotatef’ was not 
declared in this scope
  856 |     glRotatef(45,0,0,1);
      |     ^~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:868:5: error: ‘glPopMatrix’ was not 
declared in this scope; did you mean ‘glLoadMatrix’?
  868 |     glPopMatrix();
      |     ^~~~~~~~~~~
      |     glLoadMatrix
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:872:5: error: ‘glPopAttrib’ was not 
declared in this scope
  872 |     glPopAttrib();
      |     ^~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp: In static member function ‘static 
void Aqsis::PointView::drawPoints(const Aqsis::PointArrayModel&, 
Aqsis::PointView::VisMode, bool)’:
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:886:23: error: ‘GL_COLOR_MATERIAL’ was 
not declared in this scope
  886 |             glDisable(GL_COLOR_MATERIAL);
      |                       ^~~~~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:887:23: error: ‘GL_LIGHTING’ was not 
declared in this scope; did you mean ‘GL_LIGHTEN’?
  887 |             glDisable(GL_LIGHTING);
      |                       ^~~~~~~~~~~
      |                       GL_LIGHTEN
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:889:13: error: ‘glPointSize’ was not 
declared in this scope
  889 |             glPointSize(1);
      |             ^~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:890:13: error: ‘glColor3f’ was not 
declared in this scope; did you mean ‘glColor’?
  890 |             glColor3f(1,1,1);
      |             ^~~~~~~~~
      |             glColor
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:898:13: error: ‘glEnableClientState’ 
was not declared in this scope
  898 |             glEnableClientState(GL_VERTEX_ARRAY);
      |             ^~~~~~~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:899:13: error: ‘glVertexPointer’ was 
not declared in this scope; did you mean ‘glGetPointerv’?
  899 |             glVertexPointer(3, GL_FLOAT, 3*sizeof(float),
      |             ^~~~~~~~~~~~~~~
      |             glGetPointerv
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:904:37: error: ‘GL_COLOR_ARRAY’ was 
not declared in this scope; did you mean ‘GL_COLORBURN’?
  904 |                 glEnableClientState(GL_COLOR_ARRAY);
      |                                     ^~~~~~~~~~~~~~
      |                                     GL_COLORBURN
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:905:17: error: ‘glColorPointer’ was 
not declared in this scope
  905 |                 glColorPointer(3, GL_FLOAT, 3*sizeof(float), col);
      |                 ^~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:908:13: error: ‘glDisableClientState’ 
was not declared in this scope
  908 |             glDisableClientState(GL_VERTEX_ARRAY);
      |             ^~~~~~~~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:909:34: error: ‘GL_COLOR_ARRAY’ was 
not declared in this scope; did you mean ‘GL_COLORBURN’?
  909 |             glDisableClientState(GL_COLOR_ARRAY);
      |                                  ^~~~~~~~~~~~~~
      |                                  GL_COLORBURN
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:915:26: error: ‘GL_SMOOTH’ was not 
declared in this scope; did you mean ‘GL_SHORT’?
  915 |             glShadeModel(GL_SMOOTH);
      |                          ^~~~~~~~~
      |                          GL_SHORT
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:915:13: error: ‘glShadeModel’ was not 
declared in this scope
  915 |             glShadeModel(GL_SMOOTH);
      |             ^~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:918:52: error: 
‘GL_AMBIENT_AND_DIFFUSE’ was not declared in this scope
  918 |                 glColorMaterial(GL_FRONT_AND_BACK, 
GL_AMBIENT_AND_DIFFUSE);
      |                                                    
^~~~~~~~~~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:918:17: error: ‘glColorMaterial’ was 
not declared in this scope; did you mean ‘glColorMaski’?
  918 |                 glColorMaterial(GL_FRONT_AND_BACK, 
GL_AMBIENT_AND_DIFFUSE);
      |                 ^~~~~~~~~~~~~~~
      |                 glColorMaski
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:919:26: error: ‘GL_COLOR_MATERIAL’ was 
not declared in this scope
  919 |                 glEnable(GL_COLOR_MATERIAL);
      |                          ^~~~~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:924:27: error: ‘GL_LIGHT0’ was not 
declared in this scope; did you mean ‘GL_LIGHTEN’?
  924 |                 glLightfv(GL_LIGHT0, GL_POSITION, lightPos);
      |                           ^~~~~~~~~
      |                           GL_LIGHTEN
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:924:38: error: ‘GL_POSITION’ was not 
declared in this scope; did you mean ‘GL_LOCATION’?
  924 |                 glLightfv(GL_LIGHT0, GL_POSITION, lightPos);
      |                                      ^~~~~~~~~~~
      |                                      GL_LOCATION
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:924:17: error: ‘glLightfv’ was not 
declared in this scope
  924 |                 glLightfv(GL_LIGHT0, GL_POSITION, lightPos);
      |                 ^~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:925:38: error: ‘GL_DIFFUSE’ was not 
declared in this scope
  925 |                 glLightfv(GL_LIGHT0, GL_DIFFUSE, whiteCol);
      |                                      ^~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:929:32: error: 
‘GL_LIGHT_MODEL_AMBIENT’ was not declared in this scope
  929 |                 glLightModelfv(GL_LIGHT_MODEL_AMBIENT, ambientCol);
      |                                ^~~~~~~~~~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:929:17: error: ‘glLightModelfv’ was 
not declared in this scope
  929 |                 glLightModelfv(GL_LIGHT_MODEL_AMBIENT, ambientCol);
      |                 ^~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:946:27: error: ‘glGenLists’ was not 
declared in this scope
  946 |             GLuint disk = glGenLists(1);
      |                           ^~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:947:29: error: ‘GL_COMPILE’ was not 
declared in this scope
  947 |             glNewList(disk, GL_COMPILE);
      |                             ^~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:947:13: error: ‘glNewList’ was not 
declared in this scope
  947 |             glNewList(disk, GL_COMPILE);
      |             ^~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:948:17: error: ‘glBegin’ was not 
declared in this scope
  948 |                 glBegin(GL_TRIANGLE_FAN);
      |                 ^~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:952:17: error: ‘glVertex3f’ was not 
declared in this scope; did you mean ‘glVertex’?
  952 |                 glVertex3f(0,0,0);
      |                 ^~~~~~~~~~
      |                 glVertex
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:958:17: error: ‘glEnd’ was not 
declared in this scope
  958 |                 glEnd();
      |                 ^~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:964:13: error: ‘glEndList’ was not 
declared in this scope
  964 |             glEndList();
      |             ^~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:970:26: error: ‘GL_LIGHTING’ was not 
declared in this scope; did you mean ‘GL_LIGHTEN’?
  970 |                 glEnable(GL_LIGHTING);
      |                          ^~~~~~~~~~~
      |                          GL_LIGHTEN
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:982:21: error: ‘glPointSize’ was not 
declared in this scope
  982 |                     glPointSize(1);
      |                     ^~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:988:17: error: ‘glPushMatrix’ was not 
declared in this scope; did you mean ‘glLoadMatrix’?
  988 |                 glPushMatrix();
      |                 ^~~~~~~~~~~~
      |                 glLoadMatrix
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:991:17: error: ‘glScalef’ was not 
declared in this scope; did you mean ‘locale’?
  991 |                 glScalef(*r, *r, *r);
      |                 ^~~~~~~~
      |                 locale
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:1003:21: error: ‘glRotatef’ was not 
declared in this scope
 1003 |                     glRotatef(angle, v.x, v.y, v.z);
      |                     ^~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:1006:17: error: ‘glCallList’ was not 
declared in this scope
 1006 |                 glCallList(disk);
      |                 ^~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:1007:17: error: ‘glPopMatrix’ was not 
declared in this scope; did you mean ‘glLoadMatrix’?
 1007 |                 glPopMatrix();
      |                 ^~~~~~~~~~~
      |                 glLoadMatrix
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:1009:13: error: ‘glDeleteLists’ was 
not declared in this scope
 1009 |             glDeleteLists(disk, 1);
      |             ^~~~~~~~~~~~~
/<<PKGBUILDDIR>>/tools/ptview/ptview.cpp:1011:27: error: ‘GL_LIGHTING’ was not 
declared in this scope; did you mean ‘GL_LIGHTEN’?
 1011 |                 glDisable(GL_LIGHTING);
      |                           ^~~~~~~~~~~
      |                           GL_LIGHTEN
make[3]: *** [tools/ptview/CMakeFiles/ptview.dir/build.make:367: 
tools/ptview/CMakeFiles/ptview.dir/ptview.cpp.o] Error 1


See
https://buildd.debian.org/status/fetch.php?pkg=aqsis&arch=armel&ver=1.8.2%2Bgit20210815-1&stamp=1646531345&raw=0

Cheers
-- 
Sebastian Ramacher

--- End Message ---
--- Begin Message ---
Version: 1.8.2+git20210815-1+rm

Dear submitter,

as the package aqsis has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1024176

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)

--- End Message ---

Reply via email to