Sounds like you've got a linkage problem - there is no libgd.1.dylib.
There's a 1.8, but not a 1.

What else changed on the system?  The last changes in configure were days
ago and only in version.c creation:

$ difflast configure.in
Finding last revision #s ()
Running cvs diff -U3  -r 2.189 -r 2.190 configure.in...
Index: configure.in
===================================================================
RCS file: /export/home/ntop/ntop/configure.in,v
retrieving revision 2.189
retrieving revision 2.190
diff -U3 -r2.189 -r2.190
--- configure.in        26 Dec 2003 15:44:32 -0000      2.189
+++ configure.in        29 Dec 2003 04:08:42 -0000      2.190
@@ -50,7 +50,7 @@
 dnl> The prereq is really 2.53, i.e. automake 1.6, but Darwin uses 2.52...
 AC_PREREQ([2.52])

-SCRIPTVER="v2.2.98.008-2003-12-26"
+SCRIPTVER="v2.2.98.009-2003-12-28"

 dnl>
 dnl> generate the config header
@@ -1088,7 +1088,7 @@
       ;;

     * )
-        DEFINEOS="";          STATUS="UNKNOWN"
+        DEFINEOS="UNKNOWN";   STATUS="UNKNOWN"
       ;;
 esac

@@ -2964,12 +2964,12 @@
 /bin/rm -f version.c
 echo $PACKAGE_VERSION $NTOP_VERSION_EXTRA  | sed -e 's/.*/char * version
= "&";/' > version.c
 osName=`./config.guess`
-if test "x${DEFINEOS}" = "xLINUX"; then
-    osName="${osName} (${DISTRO} Linux ${RELEASE})"
-fi
 echo "${osName}" | sed -e 's/.*/char * osName    = "&";/' >> version.c
 echo "char * author    = \"Luca Deri <[EMAIL PROTECTED]>\";" >> version.c
-date +"%D %r" | sed -e 's/.*/char * buildDate = "&";/' >> version.c
+dnl> This is an odd format, but it matches cpp's __DATE__ and __TIME__
macros...
+date +"%b %e %Y %k:%M:%S" | sed -e 's/.*/char * configureDate = "&";/' >>
version.c
+echo "#define buildDateIs __DATE__ \" \" __TIME__"  >> version.c
+echo "char * buildDate    = buildDateIs;" >> version.c
 echo $CONFIGURE_PARAMETERS | sed -e 's/.*/char * configure_parameters   =
"&";/' >> version.c
 echo ${host} | sed -e 's/.*/char * host_system_type   = "&";/' >> version.c
 echo ${target} | sed -e 's/.*/char * target_system_type   = "&";/' >>
version.c
@@ -2979,6 +2979,8 @@
 echo ${prefix} | sed -e 's/.*/char * install_path   = "&";/' >> version.c
 echo "/*i18n*/" >>version.c
 echo ${LOCALEDIR} | sed -e 's/.*/char * locale_dir   = "&";/' >> version.c
+echo ${DISTRO} | sed -e 's/.*/char * distro   = "&";/' >> version.c
+echo ${RELEASE} | sed -e 's/.*/char * release   = "&";/' >> version.c

 case "${host}" in
     *darwin* )

-----Burton

PS: Julien, if you have a new problem, please change the subject.

> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of
> Julien TOUCHE
> Sent: Monday, January 05, 2004 2:33 AM
> To: [EMAIL PROTECTED]
> Subject: Re: [Ntop] ntop checkversion + panther
>
>
>
> when rebuilding (with same options & today's cvs)
> i get
>
> $ ./ntop
> dyld:
> /Users/touche/tmp/darwinports/dports/net/ntop/work/ntop/.libs/lt-ntop
> can't open library: /opt/local/lib/libgd.1.dylib  (No such file or
> directory, errno = 2)
> Trace/BPT trap (core dumped)
>
> $ ll /opt/local/lib/libgd*
> -rwxr-xr-x  1 touche  touche  248032  3 Jan 18:54
> /opt/local/lib/libgd.1.8.dylib*
> -rwxr-xr-x  1 touche  touche  402400  3 Jan 18:30
> /opt/local/lib/libgd.2.0.0.dylib*
> lrwx------  1 touche  touche      17  3 Jan 18:30
> /opt/local/lib/libgd.2.dylib@ -> libgd.2.0.0.dylib
> -rw-r--r--  1 touche  touche  441444  3 Jan 18:30 /opt/local/lib/libgd.a
> lrwx------  1 touche  touche      30  3 Jan 18:54
> /opt/local/lib/libgd.dylib@ -> /opt/local/lib/libgd.1.8.dylib
> -rwxr-xr-x  1 touche  touche     899  3 Jan 18:30 /opt/local/lib/libgd.la*
> _______________________________________________
> Ntop mailing list
> [EMAIL PROTECTED]
> http://listgateway.unipi.it/mailman/listinfo/ntop
>

_______________________________________________
Ntop mailing list
[EMAIL PROTECTED]
http://listgateway.unipi.it/mailman/listinfo/ntop

Reply via email to