--- Dan <[EMAIL PROTECTED]> wrote:
> Here is the output of < ldd libsqlitejdbc.so >
>   libgcc_s.so.1 => /usr/local/lib/libgcc_s.so.1
>   libc.so.1     => /usr/lib/libc.so.1
>   libdl.so.1    => /usr/lib/libdl.so.1
>   /usr/platform/SUNW,Sun-Fire-V210/lib/libc_psr.so.1

Okay, it's using Solaris' libc. That's good.

You might be able to get rid of the libgcc shared library dependency
with the following patch:

--- Makefile.common-orig        2007-08-30 02:00:23.000000000 -0400
+++ Makefile.common     2007-08-30 02:00:47.000000000 -0400
@@ -54,7 +54,7 @@
 Default_CC        := gcc
 Default_STRIP     := strip
 Default_CFLAGS    := -I$(JAVA_HOME)/include -O -fPIC
-Default_LINKFLAGS := -shared
+Default_LINKFLAGS := -shared -static-libgcc
 Default_LIBNAME   := libsqlitejdbc.so

 Darwin_CC        := gcc -arch $(arch)



       
____________________________________________________________________________________
Need a vacation? Get great deals
to amazing places on Yahoo! Travel.
http://travel.yahoo.com/

--~--~---------~--~----~------------~-------~--~----~
Mailing List: http://groups.google.com/group/sqlitejdbc?hl=en
To unsubscribe, send email to [EMAIL PROTECTED]
-~----------~----~----~----~------~----~------~--~---

Reply via email to