From graphviz-interest Thu Oct 31 17:43:58 2013 From: Kevin Funk Date: Thu, 31 Oct 2013 17:43:58 +0000 To: graphviz-interest Subject: Re: [graphviz-interest] Website / Issue tracker problems Message-Id: <2592879.yMBEbfdZNb () kerberos> X-MARC-Message: https://marc.info/?l=graphviz-interest&m=138324144201872 MIME-Version: 1 Content-Type: multipart/mixed; boundary="--nextPart1832224.l41aGosFFC" This is a multi-part message in MIME format. --nextPart1832224.l41aGosFFC Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Am Donnerstag, 31. Oktober 2013, 12:55:05 schrieb Emden R. Gansner: > I have updated the issue tracker entry page to make it clear that only a > single account is necessary, and to tell the user where to go to create > one. > Thanks for the suggestion. > > The email problem probably relates to our recent move. Many pieces are still > not working. I see that your account was created, so you might try logging > in and entering the bug. If that still fails, send me the info and I'll > enter it. Please include the following information: > > Title: [brief description of the problem] > Submitter: [your name and email address, e.g., John Doe > ] Subsys: [what part of graphviz has the bug: dot, > neato, twopi, circo, fdp, output generation, libgraph, libagraph, grappa, > dotty/lneato/lefty, tcl/tk tools, build/installation, other] > Version: [graphviz version, e.g., 1.8.6] > System: [hardware/OS/OS version you are using, e.g., x86-Linux-RedHat > 7.2] Severity: [how bad: critical, major, minor, cosmetic] > Problem: [a full description of the problem] > Input: [input graph in dot format; if the graph is large, see below.] > Comments: [any additional or unrelated comments] > > Thanks. > > Emden Hey again, I don't have a password to login, password recovery doesn't work as well. Same issue :) So to the actual problem: Title: Building gvedit fails with undefined references Submitter: Kevin Funk Version: Git @ LAST_LIBGRAPH-0-g0e305a3 System: (K)Ubuntu 13.10 Problem: Output from 'make': CXX gvedit-moc_csettings.o CXX gvedit-moc_imageviewer.o CXX gvedit-qrc_mdi.o CXX gvedit-moc_mdichild.o CXX gvedit-moc_mainwindow.o CXXLD gvedit csettings.cpp:294: error: undefined reference to 'agclose' csettings.cpp:316: error: undefined reference to 'agsetfile' csettings.cpp:322: error: undefined reference to 'agmemread' csettings.cpp:329: error: undefined reference to 'agerrors' csettings.cpp:337: error: undefined reference to 'agattr' csettings.cpp:330: error: undefined reference to 'agclose' csettings.cpp:476: error: undefined reference to 'agreseterrors' csettings.cpp:476: error: undefined reference to 'agreseterrors' mainwindow.cpp:88: error: undefined reference to 'agseterrf' collect2: error: ld returned 1 exit status Proposed patch: See attached file. Worksforme. Greets -- Kevin Funk --nextPart1832224.l41aGosFFC Content-Disposition: attachment; filename="0001-Link-gvedit-to-graph-library.patch" Content-Transfer-Encoding: 7Bit Content-Type: text/x-patch; charset="utf-8"; name="0001-Link-gvedit-to-graph-library.patch" From be028a26f5d1969d7657271bc2359cd2ad43f5c3 Mon Sep 17 00:00:00 2001 From: Kevin Funk Date: Thu, 31 Oct 2013 18:42:35 +0100 Subject: [PATCH] Link gvedit to graph library --- cmd/gvedit/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/gvedit/Makefile.am b/cmd/gvedit/Makefile.am index 3467f0c..2637c2e 100644 --- a/cmd/gvedit/Makefile.am +++ b/cmd/gvedit/Makefile.am @@ -35,6 +35,7 @@ gvedit_CPPFLAGS = \ -DGVEDIT_DATADIR=\""$(pkgdatadir)/gvedit"\" gvedit_LDADD = \ + $(top_builddir)/lib/$(GRAPH)/lib$(GRAPH).la \ $(top_builddir)/lib/gvc/libgvc.la \ $(QTGUI_LIBS) \ $(QTCORE_LIBS) \ -- 1.8.3.2 --nextPart1832224.l41aGosFFC Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ graphviz-interest@lists.research.att.com http://lists.research.att.com/mailman/listinfo/graphviz-interest --nextPart1832224.l41aGosFFC--