Displaying 20 results from an estimated 112 matches for "shlibext".
2007 Feb 28
2
VFS module and C++
...return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "mytest_vfs",
skel_op_tuples);
}
};
And my Makefile:
CC = gcc
CFLAGS = -g -O2
CPPFLAGS =
LDFLAGS =
LDSHFLAGS = -shared
INSTALLCMD = /usr/bin/install -c
SAMBA_SOURCE = ../../source
SHLIBEXT = so
OBJEXT = o
FLAGS = $(CFLAGS) -Iinclude -I$(SAMBA_SOURCE)/include
-I$(SAMBA_SOURCE)/popt -I$(SAMBA_SOURCE)/smbwrapper -I. $(CPPFLAGS)
-I$(SAMBA_SOURCE) -I/home/roman/ace/ACE_wrappers/TAO/tao -fPIC
prefix = /usr/local/samba
libdir = ${prefix}/lib
V...
2010 Aug 05
2
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...to get rid of using dllimport.
+ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
+LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
+ -L $(SharedDir)
+endif
LLVMLibsOptions += -lLLVM-$(LLVMVersion)
-LLVMLibsPaths += $(LibDir)/libLLVM-$(LLVMVersion)$(SHLIBEXT)
+LLVMLibsPaths += $(SharedDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
else
LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
LLVMLibsPaths += $(LLVM_CONFIG) \
@@ -1018,6 +1046,21 @@ ifeq ($(HOST_OS),Darwin)
LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeE...
2010 Aug 05
0
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
Hi Takumi,
> Any feedbacks are welcome.
> Have fun!
This seems to be pretty useful addition to LLVM on windows! And it
seems the only painless way to make plugins working, yay!
For me the patch looks pretty good. One minor thing: could you please
rename SharedDir => SharedLibDir
Thanks!
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg
2004 Oct 13
0
[LLVMdev] RESOLVED: [LLVMbugs] [Bug 451] Libtool does not create libNAME.$(SHLIBEXT) files when building dynamic libs
...ake flag (on AutoRegen.sh). However, you still MUST install
automake 1.9.2 even if you're not using --with-automake because that is how you
get aclocal 1.9.2 which is needed by autoconf.
Reid.
-------- Original Message --------
Subject: [LLVMbugs] [Bug 451] Libtool does not create libNAME.$(SHLIBEXT) files
when building dynamic libs
Date: Tue, 12 Oct 2004 19:58:23 -0500
From: bugzilla-daemon at cs.uiuc.edu
To: llvmbugs at cs.uiuc.edu
http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=451
rspencer at x10sys.com changed:
What |Removed |Added
---------------------...
2004 Jul 26
1
[LLVMdev] ToolRunner.cpp:396: error: `SHLIBEXT' undeclared (first use this function)
Hi,
I get this error:
------------------
ToolRunner.cpp:396: error: `SHLIBEXT' undeclared (first use this function)
ToolRunner.cpp:396: error: (Each undeclared identifier is reported only once
for each function it appears in.)
------------------
And the config.log shows that configure has detected that ld on my platform
(Interix) doesn't support shared libraries...
2004 Jul 27
1
[LLVMdev] ToolRunner.cpp:396: error: `SHLIBEXT' undeclared (firstuse this function)
...support shared libraries. And if not, how did you port llvm on
this issue?
/Henrik
>From: "Henrik Bach" <henrik_bach_llvm at hotmail.com>
>Date: Tue, 27 Jul 2004 00:41:53 +0200
>
>Hi,
>
>I get this error:
>------------------
>ToolRunner.cpp:396: error: `SHLIBEXT' undeclared (first use this function)
>ToolRunner.cpp:396: error: (Each undeclared identifier is reported only
>once
> for each function it appears in.)
>------------------
>
>And the config.log shows that configure has detected that ld on my platform
>(Interix) doesn...
2010 Aug 05
3
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...get rid of using dllimport.
+ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
+LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
+ -L $(SharedLibDir)
+endif
LLVMLibsOptions += -lLLVM-$(LLVMVersion)
-LLVMLibsPaths += $(LibDir)/libLLVM-$(LLVMVersion)$(SHLIBEXT)
+LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
else
LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
LLVMLibsPaths += $(LLVM_CONFIG) \
@@ -1018,6 +1047,21 @@ ifeq ($(HOST_OS),Darwin)
LLVMLibsOptions += -Wl,-exported_symbols_list,$(Nati...
2004 Jul 27
1
[LLVMdev] ToolRunner.cpp:396: error: `SHLIBEXT' undeclared (firstuse this function)
...i John,
Please see below, too
>From: John Criswell <criswell at cs.uiuc.edu>
>Date: Tue, 27 Jul 2004 14:57:02 -0500
>
>Henrik Bach wrote:
>>Hi,
>
>Please see below.
>
>>
>>I get this error:
>>------------------
>>ToolRunner.cpp:396: error: `SHLIBEXT' undeclared (first use this function)
>>ToolRunner.cpp:396: error: (Each undeclared identifier is reported only
>>once
>> for each function it appears in.)
>>------------------
>>
>>And the config.log shows that configure has detected that ld on my
>&g...
2005 May 17
3
Linux integration with AD
Hi All,
I extended my AD schema (SFU 3.5) and migrated the users and groups from my
NIS domain.
The groups migrated from the NIS have the same GID like on the NIS.
I added linux machines to my AD domain using windbind, and define on the
smb.conf "idmap gid = 10000-20000".
I logged in using my AD user account, and when I'm doing "id", I see that
all the AD groups
2000 Sep 28
2
Re: [R] Nothing can be pasted...
...ded from tabulate.c:24:
> ../../src/include/config.h:192:21: warning: nothing can be pasted after
> this token
>
> which I didn't see with RH6.2. However, R seems to run just fine
> nevertheless. The offending line in config.h is
>
> #define DYNLOADEXT "." ## SHLIBEXT
>
> I'm not too familiar with C programming, but if ## SHLIBEXT
> is meant as a comment, shouldn't it be surrounded by /* */?
A bit more on this. I understood from PD's recent post that RH7.0 uses
gcc 2.96, even though that is not yet released accoring to the gcc site
(gcc....
2016 Nov 23
2
backup_samba4 script failing
...ocal/samba/sbin
BINDIR: /usr/local/samba/bin
CONFIGFILE: /usr/local/samba/etc/smb.conf <<<<<<<<<<
LOGFILEBASE: /usr/local/samba/var
LMHOSTSFILE: /usr/local/samba/etc/lmhosts
LIBDIR: /usr/local/samba/lib
MODULESDIR: /usr/local/samba/lib
SHLIBEXT: so
LOCKDIR: /usr/local/samba/var/lock
And below in the email your telling that you config is in /etc/samba
Due to this mismatch, the script is failing.
The script is extracting the path from CONFIGFILE
But yours is not there, its in /etc/samba
I’ll think about howto implement...
2004 Oct 23
1
[LLVMdev] UPDATE: Makefile.rules Changes (IMPORTANT)
...y
> -# used by this Makefile, and cancel useless implicit rules. This
> -# will hopefully speed up compilation a little bit.
> -###########################################################################
> -.SUFFIXES:
> -.SUFFIXES: .c .cpp .h .hpp .y .l
> -.SUFFIXES: .lo .o .a $(SHLIBEXT) .bc .td
> -.SUFFIXES: .ps .dot .d
> +#--------------------------------------------------------------------
> +# Mark all of these targets as phony to avoid implicit rule search
> +#--------------------------------------------------------------------
> +.PHONY: $(RECURSIVE_TARGETS) $...
1998 Dec 03
1
Makefiles in contributed packages
Hello,
I have a couple of suggestions that will help persons with
machines/OSs that use extensions other than ".so" for shared libs:
1) Use the variable SHLIBEXT (defined in Makeconf), DONT use "so" or "sl".
2) Use the method in "modreg" to load the dynamic lib:
.First.lib <- function(lib, pkg) library.dynam("modreg", pkg, lib)
DO NOT USE
library.dynam("eda.so")
Now, I have to edit every packag...
2008 Jul 31
0
[LLVMdev] [Patch] Ocaml fix for g++ 4.2
...====================
--- test/Makefile (revision 54250)
+++ test/Makefile (working copy)
@@ -102,7 +102,7 @@
@echo 'set llvmgxx "$(LLVMGCC) $(EXTRA_OPTIONS)"' >> site.tmp
@echo 'set llvmgccmajvers "$(LLVMGCC_MAJVERS)"' >> site.tmp
@echo 'set shlibext "$(SHLIBEXT)"' >> site.tmp
- @echo 'set ocamlc "$(OCAMLC) -cc $(CXX) -I $(LibDir)/ocaml"' >> site.tmp
+ @echo 'set ocamlc "$(OCAMLC) -cc $(CC) -cclib -lstdc++ -I $(LibDir)/ocaml"' >> site.tmp
@echo '## All variables above are...
2000 Nov 08
0
installing R on solaris (PR#728)
...mention it.
Anyway it has configured, so lets see if I can build it.
--
Regards,
From: Kev Buckley <k.buckley@lancaster.ac.uk>
As for R, you may also like to pass this on:
The following lines in the Makefile blow "make install" out of
the water
# @for f in `ls bin/*.$(SHLIBEXT)`; do \
# $(INSTALL_PROGRAM) $${f} $(rhome)/bin; \
# done
There are no files bin/*.$(SHLIBEXT) ( ie bin/*.so )
but once they are commented out, it installs OK and I get an R> prompt
when I type
/usr/local/packages/R-1.1.1/bin/R
on titanic, so I guess it works
I&...
2017 May 24
2
Howto switch from distribution to self compiled?
...scarded?
This is from the output of "smbd -b"
old:
SBINDIR: /usr/sbin
BINDIR: /usr/bin
SWATDIR: /usr/share/swat
CONFIGFILE: /etc/samba/smb.conf
LOGFILEBASE: /var/log/samba
LMHOSTSFILE: /etc/samba/lmhosts
LIBDIR: /usr/lib64
MODULESDIR: /usr/lib64/samba
SHLIBEXT: so
LOCKDIR: /var/lib/samba
STATEDIR: /var/lib/samba
CACHEDIR: /var/lib/samba
PIDDIR: /var/run
SMB_PASSWD_FILE: /var/lib/samba/private/smbpasswd
PRIVATE_DIR: /var/lib/samba/private
NCALRPCDIR: /var/ncalrpc
NMBDSOCKETDIR: /var/nmbd
new:
SBINDIR: /usr/local/samba/...
2011 Apr 28
2
Linker error for Samba 3.5.8 on Solaris 5.8
..../source4 -D_SAMBA_BUILD_=3 -D_SAMBA_BUILD_=3
PICFLAG = -fPIC
LIBS = -lsendfile -lresolv -lrt -ldl -lnsl -lsocket -lintl
LDFLAGS = -Wl,-z,ignore -lthread -L./bin
DYNEXP =
LDSHFLAGS = -fPIC -shared -Wl,-z,ignore -lthread -L./bin -lc -Wl,-z,defs
SHLIBEXT = so
SONAMEFLAG = -Wl,-h,
Compiling dynconfig.c
Linking shared library bin/libnetapi.so.0
Undefined first referenced
symbol in file
libiconv_set_relocation_prefix /usr/local/lib/gcc-lib/sparc-sun-solaris2.8/3.3.2/../../../libintl.so
ld...
2000 Sep 28
1
Nothing can be pasted...
...ded from tabulate.c:24:
> ../../src/include/config.h:192:21: warning: nothing can be pasted after
> this token
>
> which I didn't see with RH6.2. However, R seems to run just fine
> nevertheless. The offending line in config.h is
>
> #define DYNLOADEXT "." ## SHLIBEXT
>
> I'm not too familiar with C programming, but if ## SHLIBEXT
> is meant as a comment, shouldn't it be surrounded by /* */?
That's not a comment, but is string concatenation in ISO Standard C.
--
Brian D. Ripley, ripley at stats.ox.ac.uk
Professor of Ap...
2011 Aug 16
2
Directly replace smb.
...etc. are all failed. what's wrong with my method?
My smb configure as below:
SBINDIR: /usr/sbin
BINDIR: /usr/bin
SWATDIR: /etc/swat
CONFIGFILE: /etc/samba/smb.conf
LOGFILEBASE: /var/samba
LMHOSTSFILE: /etc/samba/lmhosts
LIBDIR: /usr/lib
MODULESDIR: /usr/lib
SHLIBEXT: so
LOCKDIR: /usr/var/locks
STATEDIR: /usr/var/locks
CACHEDIR: /usr/var/locks
PIDDIR: /usr/var/locks
SMB_PASSWD_FILE: /usr/private/smbpasswd
PRIVATE_DIR: /usr/private
2016 Nov 23
1
backup_samba4 script failing
...l/samba/bin
>> CONFIGFILE: /usr/local/samba/etc/smb.conf <<<<<<<<<<
>> LOGFILEBASE: /usr/local/samba/var
>> LMHOSTSFILE: /usr/local/samba/etc/lmhosts
>> LIBDIR: /usr/local/samba/lib
>> MODULESDIR: /usr/local/samba/lib
>> SHLIBEXT: so
>> LOCKDIR: /usr/local/samba/var/lock
>>
>> And below in the email your telling that you config is in /etc/samba
>>
>> Due to this mismatch, the script is failing.
>
> I suppose the question is, does Samba know that smb.conf isn't where it
> thinks...