Strange error messages

Поиск
Список
Период
Сортировка
От Guillaume Lelarge
Тема Strange error messages
Дата
Msg-id 45B11A66.8020406@lelarge.info
обсуждение исходный текст
Список pgadmin-hackers
Hi all,

I keep getting these error messages when I compile pgAdmin from scratch :

src/Makefile.am:43: SUN_CC does not appear in AM_CONDITIONAL
src/Makefile.am:49: SUN_CXX does not appear in AM_CONDITIONAL
xtra/pgagent/Makefile.am:33: SUN_CC does not appear in AM_CONDITIONAL
xtra/pgagent/Makefile.am:39: SUN_CXX does not appear in AM_CONDITIONAL

If I delete the offending lines in src/Makefile.am and
xtra/pgagent/Makefile.am, it simply works. I don't think this is really
the good way to fix this but I don't find another way to do it.

Regards.


--
Guillaume.
<!-- http://abs.traduc.org/
     http://lfs.traduc.org/
     http://docs.postgresqlfr.org/ -->
Index: pgadmin/Makefile.am
===================================================================
--- pgadmin/Makefile.am    (révision 5875)
+++ pgadmin/Makefile.am    (copie de travail)
@@ -40,18 +40,6 @@
 include $(srcdir)/ui/module.mk
 include $(srcdir)/utils/module.mk

-if SUN_CC
-  __CFLAGS=""
-else
-  __CFLAGS=-Wall
-endif
-
-if SUN_CXX
-  __CXXFLAGS=""
-else
-  __CXXFLAGS=-Wall -Wno-non-virtual-dtor
-endif
-
 if !APPBUNDLE

 nobase_dist_pkgdata_DATA = $(TMP_ui)
Index: xtra/pgagent/Makefile.am
===================================================================
--- xtra/pgagent/Makefile.am    (révision 5875)
+++ xtra/pgagent/Makefile.am    (copie de travail)
@@ -28,18 +28,6 @@
         $(srcdir)/include/misc.h \
         $(srcdir)/include/pgAgent.h

-if SUN_CC
-  __CFLAGS=""
-else
-  __CFLAGS=-Wall
-endif
-
-if SUN_CXX
-  __CXXFLAGS=""
-else
-  __CXXFLAGS=-Wall -Wno-non-virtual-dtor
-endif
-
 if !APPBUNDLE

 AM_CXXFLAGS = -DDATA_DIR=\"$(pkgdatadir)/\" $(__CXXFLAGS) -I$(srcdir)/include

В списке pgadmin-hackers по дате отправления:

Предыдущее
От: svn@pgadmin.org
Дата:
Сообщение: SVN Commit by dpage: r5879 - in branches/REL-1_6_0_PATCHES/pgadmin3: . src/frm
Следующее
От: "Dave Page"
Дата:
Сообщение: Re: Strange error messages