Обсуждение: FW: cron: sh /usr/local/src/pgadmin3/pkg/src/build-tarball;sh /usr/local/src/pgadmin3/pkg/slackware/build-snapshot 91

Поиск
Список
Период
Сортировка
Did someone break something?

Regards, Dave


-----Original Message-----
From: root@developer.pgadmin.org [mailto:root@developer.pgadmin.org]
Sent: Mon 7/12/2004 1:03 AM
To: root@developer.pgadmin.org
Subject: cron: sh /usr/local/src/pgadmin3/pkg/src/build-tarball;sh /usr/local/src/pgadmin3/pkg/slackware/build-snapshot
91

if g++ -DHAVE_CONFIG_H -I. -I. -I..  -DDATA_DIR=\"/usr/share/pgadmin3/\" -Wall -g -I../src/include
-I../src/agent/include-I/usr/local/pgsql/include -DSSL -I/usr/local/lib/wx/include/gtk2ud-2.5 -D__WXDEBUG__ -D__WXGTK__
-D_FILE_OFFSET_BITS=64-D_LARGE_FILES -I/usr/local//include -DDATA_DIR=\"/usr/share/pgadmin3/\" -Wall -g
-I../src/include-I../src/agent/include -Wall -g -O0 -MT frmQuery.o -MD -MP -MF ".deps/frmQuery.Tpo" \ 
  -c -o frmQuery.o `test -f 'ui/frmQuery.cpp' || echo './'`ui/frmQuery.cpp; \
then mv -f ".deps/frmQuery.Tpo" ".deps/frmQuery.Po"; \
else rm -f ".deps/frmQuery.Tpo"; exit 1; \
fi
ui/frmQuery.cpp: In member function `void frmQuery::execQuery(const wxString&,
   int, bool, int, bool)':
ui/frmQuery.cpp:1004: `wxMilliSleep' undeclared (first use this function)
ui/frmQuery.cpp:1004: (Each undeclared identifier is reported only once for
   each function it appears in.)
make[2]: *** [frmQuery.o] Error 1
make[2]: Leaving directory `/usr/local/src/pgadmin3/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/pgadmin3'
make: *** [all] Error 2
/usr/bin/strip: src/pgadmin3: No such file or directory


Re: FW: cron: sh /usr/local/src/pgadmin3/pkg/src/build-tarball;sh

От
Andreas Pflug
Дата:
Dave Page wrote:

>Did someone break something?
>
>
>ui/frmQuery.cpp: In member function `void frmQuery::execQuery(const wxString&,
>   int, bool, int, bool)':
>ui/frmQuery.cpp:1004: `wxMilliSleep' undeclared (first use this function)
>

Previously wxUsleep was used, which is marked deprecated now; instead
wxMilliSleep should be used.
Seems this breaks with our old snapshot.

Regards,
Andreas