search for: lib_src

Displaying 9 results from an estimated 9 matches for "lib_src".

2014 Apr 13
2
Adding an external library to Xapian
The outputs: config.log : http://pastebin.com/tEBiCgcb lib_src: http://pastebin.com/mm7K7pFc On Sun, Apr 13, 2014 at 11:36 PM, James Aylett <james-xapian at tartarus.org>wrote: > On 13 Apr 2014, at 19:03, Siddhant Mutha <siddhantmutha at gmail.com> wrote: > > > Oh, no no. It was a typo in the mail. We did the same thing you > ment...
2014 Apr 13
2
Adding an external library to Xapian
Oh, no no. It was a typo in the mail. We did the same thing you mentioned. *Siddhant Mutha* Undergraduate Student Department of Computer Science and Engineering IIT Madras Chennai http://www.siddhantmutha.com/ <http:/www.siddhantmutha.com/> On Sun, Apr 13, 2014 at 11:31 PM, James Aylett <james-xapian at tartarus.org>wrote: > On 13 Apr 2014, at 18:56, Pallavi Gudipati
2014 Apr 13
2
Adding an external library to Xapian
Hi We are writing a new module which needs to be added to the Xapian source. For this, what modifications are to be made to the Makefile? The two modules we are writing will be in the 'include' and 'api' folders. Cheers *Siddhant Mutha* Undergraduate Student Department of Computer Science and Engineering IIT Madras Chennai http://www.siddhantmutha.com/
2008 Jul 04
1
cvs command failure on 5.2
...er at sushi lane]$ for i in CVS/*; do echo $i; cat $i; echo ""; done CVS/Entries /Makefile.template/1.2/Thu Oct 6 19:06:14 2005//TDEV_608 /makefile.include/2.6/Wed Dec 6 21:58:01 2006//TDEV_608 D/bin//// D/cron_jobs//// D/devices//// D/doc//// D/drivers//// D/include//// D/lanecon//// D/lib_src//// D/main//// D/parser//// D/sim//// D/tcautil//// D/viewcon//// D/webmon//// /Makefile/1.2/Fri Jul 4 23:22:10 2008//TDEV_608 CVS/Repository linuxlane/lane CVS/Root khan:/home/stage/CVS CVS/Tag TDEV_608 (Khan is our main file server, and it's running a Linux that's even older than FC1...
2014 Apr 13
2
Adding an external library to Xapian
...' and 'api' > folders. > > I believe (from a quick inspection of the build system) that: > > * add new external API headers (ie ones that get installed for library > users) to xapianinclude_HEADERS in include/Makefile.mk > > * sources in api/ should be added to lib_src in api/Makefile.mk > > * headers in api/ (which won't be installed for library users) should be > added to noinst_HEADERS in api/Makefile.mk > > That should be enough, providing you're in maintainer mode, which will be > true if you've built from a git checkout. >...
2013 Oct 26
2
[PATCH] 1. changes for vdiskadm on illumos based platform
...mk CFLAGS += -Wno-unknown-pragmas -I$(XEN_ROOT)/tools/libfsimage/common/ -DFSIMAGE_FSDIR=\"$(FSDIR)\" CFLAGS += -Werror -D_GNU_SOURCE +# need for build illumos ZFS +CFLAGS += -Wno-parentheses +CFLAGS += -Wno-unused +# end LDFLAGS += -L../common/ PIC_OBJS := $(patsubst %.c,%.opic,$(LIB_SRCS-y)) -FSDIR = $(LIBDIR)/fs +FSDIR-y = $(LIBDIR)/fs/$(FS) +FSDIR-$(CONFIG_SunOS)-x86_64 = $(PREFIX)/lib/fs/$(FS)/64 +FSDIR-$(CONFIG_SunOS)-x86_32 = $(PREFIX)/lib/fs/$(FS)/ +FSDIR-$(CONFIG_SunOS) = $(FSDIR-$(CONFIG_SunOS)-$(XEN_TARGET_ARCH)) +FSDIR = $(FSDIR-y) FSLIB = fsimage.so @@ -15,11 +23...
2014 Apr 13
2
Adding an external library to Xapian
...+++ xapian-core-1.2.17/Makefile.am 2014-04-13 14:47:21.000000000 +0530 @@ -125,10 +125,11 @@ m4datadir = $(datadir)/aclocal dist_m4data_DATA = m4-macros/xapian.m4 +wordnet = -L/usr/local/WordNet-3.0/lib/ -lWN libxapian_la = libxapian.la lib_LTLIBRARIES = libxapian.la libxapian_la_SOURCES = $(lib_src) -libxapian_la_LIBADD = $(XAPIAN_LIBS) +libxapian_la_LIBADD = $(wordnet) $(XAPIAN_LIBS) libxapian_la_LDFLAGS = \ $(XAPIAN_LDFLAGS) -no-undefined -version-info $(LIBRARY_VERSION_INFO)
2014 Apr 13
2
Adding an external library to Xapian
My code is not on Github. I am using the tarball as of now. The following it the error that occurred: http://pastebin.com/cVJrjUZX On Sun, Apr 13, 2014 at 8:16 PM, James Aylett <james-xapian at tartarus.org>wrote: > On 13 Apr 2014, at 15:37, Pallavi Gudipati <pallavigudipati at gmail.com> > wrote: > > > A linker error is encountered even after following the above
2012 Jun 20
9
[PATCH 0 of 1 v2] tools: honour --libdir when it is passed to ./configure
I''ve removed all the LIBLEAF bits in this version, but kept passing the libfsimage plugin location via compiler command line. If there''s a better way to do this, I''m certainly open to it. But looking at it further today I think this isn''t too horrible. Matt