Michèle Garoche <[EMAIL PROTECTED]> said: > > I've just seen your change made in the plugin. ["your" refers to drm]
> Could you please tell me which error occurs on Intel architecture for > this plugin? gcc -g -O2 -L/sw/lib -o filebrowser.so -shared -fPICS filebrowser_so-interface.o filebrowser_so-callbacks.o filebrowser_so-filebrowser.o -L/sw/lib -L/usr/X11R6/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -lXrandr -lXinerama -lXext -lXcursor -latk-1.0 -lgdk_pixbuf-2.0 -lpangoxft-1.0 -lXft -lXrender -lpangox-1.0 -lX11 -lpangoft2-1.0 -lfontconfig -lfreetype -lpango-1.0 -lm -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -liconv i686-apple-darwin8-gcc-4.0.1: unrecognized option '-shared' /usr/bin/ld: warning multiple definitions of symbol _locale_charset /sw/lib/libintl.dylib(localcharset.o) definition of _locale_charset /sw/lib/libiconv.dylib(localcharset.o) definition of _locale_charset /usr/bin/ld: Undefined symbols: _main _cssed_plugin_error_message _cssed_plugin_open_file _cssed_plugin_add_page_with_widget_to_sidebar collect2: ld returned 1 exit status I think your perl pattern match is broken in PatchScript. perl -pi.bak -e 's|powerpc-apple-darwin*\)|*-apple-darwin*\)|' configure.in "*" is treated as a quantifier on the preceeding "n" wildcard, not as a literal asterisk character: the match fails, so no substitution is performed. To get what you want, you probably want perl -pi.bak -e 's|powerpc-apple-darwin\*\)|*-apple-darwin*\)|' configure.in And /me can confirm that this change does enable building on i386. dan -- Daniel Macks [EMAIL PROTECTED] http://www.netspace.org/~dmacks ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Fink-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fink-devel
