search for: lib_obj

Displaying 8 results from an estimated 8 matches for "lib_obj".

2002 May 29
0
Need help compiling on HPUX 11.00 for 2.2.4
...S = $(srcdir)/script/smbtar QUOTAOBJS=smbd/noquotas.o ###################################################################### # object file lists ###################################################################### TDBBASE_OBJ = tdb/tdb.o tdb/spinlock.o TDB_OBJ = $(TDBBASE_OBJ) tdb/tdbutil.o LIB_OBJ = lib/charcnv.o lib/charset.o lib/debug.o lib/fault.o \ lib/getsmbpass.o lib/interface.o lib/kanji.o lib/md4.o \ lib/interfaces.o lib/pidfile.o lib/replace.o \ lib/signal.o lib/system.o lib/time.o \ lib/ufc.o lib/genrand.o lib/username.o lib/util_getent.o lib/access...
2002 May 28
0
link errors compiling 2.2.4 on HP-UX 11.00
...S = $(srcdir)/script/smbtar QUOTAOBJS=smbd/noquotas.o ###################################################################### # object file lists ###################################################################### TDBBASE_OBJ = tdb/tdb.o tdb/spinlock.o TDB_OBJ = $(TDBBASE_OBJ) tdb/tdbutil.o LIB_OBJ = lib/charcnv.o lib/charset.o lib/debug.o lib/fault.o \ lib/getsmbpass.o lib/interface.o lib/kanji.o lib/md4.o \ lib/interfaces.o lib/pidfile.o lib/replace.o \ lib/signal.o lib/system.o lib/time.o \ lib/ufc.o lib/genrand.o lib/username.o lib/util_getent.o lib/access...
2015 Sep 14
11
[PATCH 0/4] efi: Makefile improvement
From: Sylvain Gault <sylvain.gault at gmail.com> These few patches contain a few improvement about the Makefiles for EFI. Mainly, to rebuild the files when needed, and only when needed. The three shell scripts efi/{check,build,clean}-gnu-efi.sh disappeared and are now integrated as makefile recipes. You'll notice an argument ARFLAGS=rvU to the recursive make calls to gnu-efi. This is
2007 May 03
0
Problem of displying contents of shares
..._ALL+= $(SRC_RPC_PARSE) $(SRC_LIB_SHAREDSMB) OBJ_LIB_SHAREDSMB=$(SRC_LIB_SHAREDSMB:.c=.o) OBJ_SMBD= $(SMBD_SRC_ALL:.c=.o) OBJ_NMBD= $(NMBD_SRC_ALL:.c=.o) POPT_OBJ= $(SRC_POPT:.c=.o) VERSION_OBJ = lib/version.o WBCOMMON_OBJ = nsswitch/wb_common.o TDB_OBJ=tdb/spinlock.o tdb/tdbutil.o tdb/tdb.o LIB_OBJ= $(VERSION_OBJ) lib/charcnv.o lib/debug.o lib/fault.o lib/interface.o lib/md4.o \ lib/interfaces.o lib/pidfile.o lib/signal.o lib/system.o lib/time.o \ lib/genrand.o lib/username.o lib/util_pw.o lib/smbrun.o \ lib/bitmap.o lib/crc32.o lib/dprintf.o lib/xfile.o lib/wins_srv.o \ lib/util_str.o li...
2017 Jun 30
4
[PATCH v2 0/4] Allow cross-building of syslinux
Hi together, this is the second version of my cross-compilation patch serie. I'm sending it in the hope to get an honest review, and possibly see the patches integrated upstream. Those patches allow to build syslinux using a toolchain different from the host one by explicitely using the host toolchain for the utilities that are required at build-time / on the build machine. I am using the
2019 Feb 06
4
syslinux-6.04-pre2
On Wed, 2019-02-06 at 11:34 -0800, H. Peter Anvin wrote: > On 2/6/19 9:17 AM, Joakim Tjernlund via Syslinux wrote: > > On Wed, 2019-02-06 at 16:00 +0100, Joakim Tjernlund wrote: > > > On Tue, 2019-02-05 at 14:07 -0800, H. Peter Anvin via Syslinux wrote: > > > > CAUTION: This email originated from outside of the organization. Do not click links or open attachments
2006 Oct 17
0
[PATCH] Fixes for linking on Solaris
...kefile @@ -55,7 +55,7 @@ libxutil.so.$(MAJOR): libxutil.so.$(MAJO ln -sf $^ $@ libxutil.so.$(MAJOR).$(MINOR): $(PIC_OBJS) - $(CC) $(CFLAGS) -Wl,-soname -Wl,libxutil.so.$(MAJOR) -shared -o $@ $^ + $(CC) $(CFLAGS) $(SONAME_LDFLAG) -Wl,libxutil.so.$(MAJOR) $(SHLIB_FLAGS) -o $@ $^ libxutil.a: $(LIB_OBJS) $(AR) rc $@ $^ diff --git a/tools/xenstat/libxenstat/Makefile b/tools/xenstat/libxenstat/Makefile --- a/tools/xenstat/libxenstat/Makefile +++ b/tools/xenstat/libxenstat/Makefile @@ -30,7 +30,7 @@ SHLIB=src/libxenstat.so.$(MAJOR).$(MINOR SHLIB=src/libxenstat.so.$(MAJOR).$(MINOR) SHLIB_LINKS=sr...
2015 Sep 24
0
[PATCH] com32/disk: add UEFI support
...gt;bps); + free(rb); + return ret ? -1 : 0; +} diff --git a/efi/Makefile b/efi/Makefile index bbf23f2..0c18d14 100644 --- a/efi/Makefile +++ b/efi/Makefile @@ -42,6 +42,7 @@ CORE_OBJS += $(addprefix $(OBJ)/../core/, \ fs/pxe/ftp.o fs/pxe/ftp_readdir.o fs/pxe/http.o fs/pxe/http_readdir.o) LIB_OBJS = $(addprefix $(objdir)/com32/lib/,$(CORELIBOBJS)) \ + $(addprefix $(objdir)/com32/lib/,$(LIBOTHER_OBJS)) \ $(LIBEFI) CSRC = $(wildcard $(SRC)/*.c) diff --git a/efi/check-gnu-efi.sh b/efi/check-gnu-efi.sh index 7d99e9a..67fe67d 100755 --- a/efi/check-gnu-efi.sh +++ b/efi/check-gnu-efi.sh @@ -...