Bug 169295 - net/netatalk 2.2.3 builds fails afpd
Summary: net/netatalk 2.2.3 builds fails afpd
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Joe Marcus Clarke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-06-21 15:20 UTC by Dan McGregor
Modified: 2012-07-09 02:30 UTC (History)
0 users

See Also:


Attachments
file.diff (583 bytes, patch)
2012-06-21 15:20 UTC, Dan McGregor
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Dan McGregor 2012-06-21 15:20:08 UTC
When building netatalk with clang as cc (I haven't tried with GCC), afpd fails to link with the following error:

libtool: link: cc -I../../include -I../../sys -I/usr/local/include -DAPPLCNAME -DSERVERTEXT=\"/usr/local/etc/msg/\" -D_PATH_AFPDDEFVOL=\"/usr/local/etc/AppleVolumes.default\" -D_PATH_AFPDSYSVOL=\"/usr/local/etc/AppleVolumes.system\" -D_PATH_AFPDPWFILE=\"/usr/local/etc/afppasswd\" -D_PATH_AFPDCONF=\"/usr/local/etc/afpd.conf\" -D_PATH_AFPDSIGCONF=\"/usr/local/etc/afp_signature.conf\" -D_PATH_AFPDUAMPATH=\"/usr/local/libexec/netatalk-uams/\" -D_PATH_ACL_LDAPCONF=\"/usr/local/etc/afp_ldap.conf\" -D_PATH_AFPDUUIDCONF=\"/usr/local/etc/afp_voluuid.conf\" -I../../include "-D_U_=__attribute__((unused))" -O2 -pipe -I/usr/local/include -fno-strict-aliasing -I../../sys -o afpd afpd-afp_asp.o afpd-afp_avahi.o afpd-afp_config.o afpd-afp_dsi.o afpd-afp_mdns.o afpd-afp_options.o afpd-afp_util.o afpd-afp_zeroconf.o afpd-afprun.o afpd-afs.o afpd-appl.o afpd-auth.o afpd-catsearch.o afpd-desktop.o afpd-dircache.o afpd-directory.o afpd-enumerate.o afpd-extattrs.o afpd-fce_api.o afpd-fce_util.o afpd-file.
 o afpd-filedir.o afpd-fork.o afpd-gettok.o afpd-hash.o afpd-main.o afpd-mangle.o afpd-messages.o afpd-nfsquota.o afpd-ofork.o afpd-quota.o afpd-status.o afpd-switch.o afpd-uam.o afpd-uid.o afpd-unix.o afpd-volume.o afpd-acls.o -Wl,--export-dynamic  -L/usr/local/lib ../../libatalk/cnid/.libs/libcnid.a -L../../../libatalk -L../../libatalk ../../libatalk/.libs/libatalk.a -L../libatalk /usr/local/lib/libgcrypt.so /usr/local/lib/libgpg-error.so /usr/local/lib/libintl.so /usr/local/lib/libiconv.so -ldns_sd /usr/local/lib/libslp.so -lcrypto -lwrap -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib
afpd-file.o: In function `afp_exchangefiles':
file.c:(.text+0x3305): warning: warning: mktemp() possibly used unsafely; consider using mkstemp()
afpd-afp_mdns.o: In function `md_zeroconf_register':
afp_mdns.c:(.text+0x775): undefined reference to `pthread_create'
cc: error: linker command failed with exit code 1 (use -v to see invocation)
gmake[3]: *** [afpd] Erreur 1
gmake[3] : on quitte le répertoire « /usr/obj/usr/ports/net/netatalk/work/netatalk-2.2.3/etc/afpd »
gmake[2]: *** [all-recursive] Erreur 1
gmake[2] : on quitte le répertoire « /usr/obj/usr/ports/net/netatalk/work/netatalk-2.2.3/etc »
gmake[1]: *** [all-recursive] Erreur 1
gmake[1] : on quitte le répertoire « /usr/obj/usr/ports/net/netatalk/work/netatalk-2.2.3 »
gmake: *** [all] Erreur 2
*** [do-build] Error code 1

Stop in /usr/ports/net/netatalk.
*** [build] Error code 1

Stop in /usr/ports/net/netatalk.

Fix: Explicitly set PTHREAD_LIBS in the Makefile.

Patch attached with submission follows:
How-To-Repeat: build netatalk with zeroconf enabled

cd /usr/ports/net/netatalk && make install
Comment 1 Mark Linimon freebsd_committer freebsd_triage 2012-06-21 15:23:01 UTC
Responsible Changed
From-To: freebsd-ports-bugs->marcus

Fix synopsis and assign.
Comment 2 dfilter service freebsd_committer freebsd_triage 2012-07-09 02:24:11 UTC
marcus      2012-07-09 01:24:02 UTC

  FreeBSD ports repository

  Modified files:
    net/netatalk         Makefile 
    net/netatalk/files   patch-configure 
  Log:
  Make sure not to detect mDNSResponder.
  
  PR:             169295
  
  Revision  Changes    Path
  1.109     +2 -1      ports/net/netatalk/Makefile
  1.22      +12 -3     ports/net/netatalk/files/patch-configure
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Joe Marcus Clarke freebsd_committer freebsd_triage 2012-07-09 02:24:18 UTC
State Changed
From-To: open->closed

Fixed.  Thanks for reporting.