Displaying 20 results from an estimated 6000 matches similar to: "configure forgets to add -lgcc_s under Solaris 10"
2010 Jan 25
3
[LLVMdev] cannot find -lgcc_s
I am trying to build llvm-gcc4.2-2.6.
My configure options are
$ /local/tools/lin32/llvm-gcc4.2-2.6/bin/llvm-gcc -v
Using built-in specs.
Target: i686-linux
Configured with: ../llvm-gcc4.2-2.6.source/configure --prefix=/local/tools/lin32/llvm-gcc4.2-2.6 --disable-nls --enable-shared --enable-threads=posix --enable-languages=c,c++ --with-gnu-as --with-gnu-ld --target=i686-linux
2007 Mar 22
3
--with-vpopmail compile errors
Hi,
I'm building dovecot.src.rpm with vpopmail support and I get this error:
if gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../src/lib
-I../../src/lib-sql -I../../src/lib-settings -I../../src/lib-ntlm
-DAUTH_MODULE_DIR=\""/usr/lib/dovecot/auth"\"
-DPKG_LIBEXECDIR=\""/usr/libexec/dovecot"\" -I/home/vpopmail/include
-std=gnu99 -O2 -g -march=i686 -Wall
2007 Nov 14
1
libwrap-ing IMAP and POP logins
Since I've been using this for maybe a year now, maybe someone else is interested in restricting IMAP and POP logins via libwrap.
In addition to the attached patch (against 1.0.5) to src/login-common/main.c, src/{imap,pop3}-login/Makefile.in have to be modified to link against libwrap.
Of course, the option needs to be integrated into configure in the long run.
-------------- next part
2009 Sep 18
2
[LLVMdev] OT: intel darwin losing primary target status
Nick,
How exactly do you envision this being done? Looking at the contents
of config/darwin.h, I see...
/* Support -mmacosx-version-min by supplying different (stub) libgcc_s.dylib
libraries to link against, and by not linking against libgcc_s on
earlier-than-10.3.9.
Note that by default, -lgcc_eh is not linked against! This is
because in a future version of Darwin the EH frame
2009 Sep 18
2
[LLVMdev] OT: intel darwin losing primary target status
I realize this is off-topic for the list, but I thought
all the darwin developers here might want to be aware of
this. The current regressions in gcc trunk regarding
exception handling has been escalated to a P1 in order to
attract darwin developers to the issue...
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41260#c31
If these regressions aren't fixed before gcc 4.5's release,
it appears
2009 Sep 18
0
[LLVMdev] OT: intel darwin losing primary target status
This may be that the libgcc_s.dylib based unwinder is incompatible
with the darwin unwinder. You cannot mix and match the two. One of
the lines from the bugzilla comments shows:
/sw/lib/gcc4.5/lib/libgcc_s.1.dylib (compatibility version 1.0.0,
being used. That will not work. All of the libgcc_s.dylib
functionality has been subsumed into libSystem.dylib on SnowLeopard
(darwin10). The
2009 Sep 18
0
[LLVMdev] OT: intel darwin losing primary target status
Jack,
I think there is an extra dimension to darwin that might be confusing
things. Darwin uses two-level-name-space. That means that at build
time the linker records where it found each dylib (SO) symbol. (It
records the path the dylib supplied as its "install name" - not just
the leafname as SO_NEEDED does.)
On a SnowLeopard system you *can* link against /usr/lib/libgcc_s.
2007 Mar 21
3
Solaris Dovecot dovecot dovecot-1.0.rc27
To all,
I am using Dovecot on solaris 10. Home directories are mounted using
NFS. However, they are not readable by root.
I compiled Dovecot from the source. I set the following environment
variables:
export LDFLAGS='-L/local/software/openssl/lib
-R/local/software/openssl/lib'
export CPPFLAGS=-I/local/software/openssl/include
Then I ran gmake
and the gmake install.
In the server
2020 Aug 27
1
Metric label values truncated when using OpenMetrics endpoint
Hi Jeff,
Thanks again for your insights. I understand that a lot of features are pending and it's totally fine, we're just very eager to use all these features.
Reagarding the logging of failed attempts I did try to configure this in these two metrics:
metric auth_client_userdb_lookup_finished {
event_name = auth_client_userdb_lookup_finished
group_by = service local_ip remote_ip
2017 Jun 16
0
doveadm-server core dump
Hello,
coredump found after a force-resync and a replicate
Emmanuel.
(dovecot-ee 2.2.30.2-1)
[New LWP 17168]
Core was generated by `dovecot/doveadm-server'.
Program terminated with signal SIGABRT, Aborted.
#0 0x00007fa334127c37 in __GI_raise (sig=sig at entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56
#0 0x00007fa334127c37 in __GI_raise (sig=sig at entry=6) at
2015 Jan 30
6
[LLVMdev] unwind's permanent residence
On 1/30/15 1:17 PM, Saleem Abdulrasool wrote:
> Although this has been discussed in the past, I think that given a few
> conversations, it seems that it unfortunately needs to be brought up again.
>
> There seems to be some disagreement over the ideal location of the
> unwinder (libunwind). Currently, libunwind resides in a subdirectory of
> libc++abi. There seems to be some
2019 Nov 06
2
Dovecot mangesieve proxy - internal failure
Hello list,
i'm running an internal dovecot instance with working managesieve. But
on my external dovecot-proxy instance i got an internal error. Nothing
logs on internal dovecot.
Nov 06 14:55:12 managesieve-login: Error: proxy: Remote sent invalid
response: * OK [CAPABILITY IMAP4rev1 SASL-IR LOGIN-REFERRALS ID ENABLE
IDLE LITERAL+ AUTH=PLAIN AUTH=LOGIN AUTH=GSSAPI] Dovecot (Ubuntu)
2008 Sep 29
4
static libgcc issue on solaris 8
Hello all,
little question. Has somebody already compiled samba on SunOS 5.8
because I cannot statically link libgcc libraries.
I already tried "gcc -static-libgcc", added "-lgcc_s" to LIBS variable
but always the same result.
Below resulted compiled binary ..
# ldd bin/ntlm_auth
libthread.so.1 => /usr/lib/libthread.so.1
libsendfile.so.1 =>
2009 Aug 10
12
v2.0 configuration parsing
I'm trying to figure out how exactly v2.0 should be parsing
configuration files. The most annoying part is if it should always just
"use whatever comes first in config" or try some kind of a "use most
specific rule". The "most specific" kind of makes more sense initially,
but then you start wondering how to handle e.g.:
1) User logs in to imap from 192.168.0.1.
2006 Oct 02
2
xapian-config --libs output on Suse 10.1
On Suse 10.1, xapian-config --libs outputs the following:
-L/usr/lib -lxapian -L/usr/lib -lstdc++ -lm -lgcc_s -lc -lgcc_s -lm -lgcc_s -lc -lgcc_s
The usual output on other linuxes seems to be like
-L/where/is/lib/ -lxapian
This causes a problem when trying to perform a static link with xapian,
because there does not seem to exist a libgcc_s.a
Actually, I am not quite sure about what
2010 Jan 27
0
[LLVMdev] cannot find -lgcc_s
Hi John,
> I am trying to build llvm-gcc4.2-2.6.
>
> My configure options are
>
> $ /local/tools/lin32/llvm-gcc4.2-2.6/bin/llvm-gcc -v
> Using built-in specs.
> Target: i686-linux
> Configured with: ../llvm-gcc4.2-2.6.source/configure --prefix=/local/tools/lin32/llvm-gcc4.2-2.6 --disable-nls --enable-shared --enable-threads=posix --enable-languages=c,c++ --with-gnu-as
2008 Nov 08
1
dovecot Digest, Vol 67, Issue 19
Thanks Buddy,
I got it working. It was giving error when running make 'undefined
reference to `request_init' etc' then I ran it with gmake LDFLAGS+=-lwrap
and it worked and everything is working fine. Thanks again for your help
Thankyou
Tahir Riaz
Assistant Director (Systems)
COMSATS Internet Services
COMSATS Headquarters Building
9, Shahrah-e-Jamhuriat, G-5/2
Islamabad.
2019 Apr 15
0
LDAP iterate (dovecoc 2.2.27)
Dear Dovecot Team,
We would like to use the LDAP iterate for dovecot replication, but I got
this error:
dovecot: auth-worker(10149): Error: ldap(*):
ldap_search(base=ou=mail,o=asd,c=TLD filter=(objectClass=inetMailUser)
failed: Size limit exceeded
dovecot: replicator: Error: User listing returned failure
dovecot: replicator: Error: listing users failed, can't replicate
existing data
When I
2019 Apr 15
0
LDAP iterate (dovecoc 2.2.27)
Dear Dovecot Team,
We would like to use the LDAP iterate for dovecot replication, but I got
this error:
dovecot: auth-worker(10149): Error: ldap(*):
ldap_search(base=ou=mail,o=asd,c=TLD filter=(objectClass=inetMailUser)
failed: Size limit exceeded
dovecot: replicator: Error: User listing returned failure
dovecot: replicator: Error: listing users failed, can't replicate
existing data
When I
2018 Dec 13
0
doveadm batch crash
On 08/12/2018 19:53, Jonathan Casiot via dovecot wrote:
>
> Hi
>
> I'm having an issue with doveadm batch - the following command always
> crashes:
>
> doveadm batch : mailbox status all inbox
>
> Whereas the following work as expected:
>
> doveadm mailbox status all inbox
> doveadm batch : mailbox list
>
>
> Any assistance gratefully