Roland Langner
2002-May-13 03:41 UTC
[Samba] Problems building Samba 2.2.4 under HPUX 10.20
Hi, i tried to build Samba 2.2.4 under HPUX 10.20, but configure generated a Makfile with systax errors. make Make: line 664: syntax error. Stop. Makefile Line 664 shows: : $(WINBIND_NSS_PICOBJS) there should be something before the : configure said: checking whether to build winbind... no, unsupported on hpux10.20 is there a woraround, or can somebody tell me whats before the : Roland Langner -------------- next part -------------- A non-text attachment was scrubbed... Name: Roland.Langner.vcf Type: text/x-vcard Size: 287 bytes Desc: Card for Roland Langner Url : http://lists.samba.org/archive/samba/attachments/20020513/eb905174/Roland.Langner.vcf
Greg Freemyer
2002-May-13 14:10 UTC
[Samba] Problems building Samba 2.2.4 under HPUX 10.20
Roland, I tried to compile Samba for a HPUX 10.20 machine last week. I did not need winbind, so I just edited the "Makefile" and deleted the few winbind related lines starting at line 664. Unfortunately, the compile process got further, but died on another problem. I decided it was more effort than it was worth. My guess is the HPUX 10.20 is no longer tested against. i.e. it is too old. Greg >> Hi, >> i tried to build Samba 2.2.4 under HPUX 10.20, but configure generated a >> Makfile with systax errors. >> make >> Make: line 664: syntax error. Stop. >> Makefile Line 664 shows: >> : $(WINBIND_NSS_PICOBJS) >> there should be something before the : >> configure said: >> checking whether to build winbind... no, unsupported on hpux10.20 >> is there a woraround, or can somebody tell me whats before the : >> Roland Langner >> -- NextPart -- >> Attached File: c:\program >> files\goldmine\MailBox\Attach\gaf\Roland.Langner.vcf Greg Freemyer Internet Engineer Deployment and Integration Specialist Compaq ASE - Tru64 Compaq Master ASE - SAN Architect The Norcross Group www.NorcrossGroup.com
MCCALL,DON (HP-USA,ex1)
2002-May-14 05:42 UTC
[Samba] Problems building Samba 2.2.4 under HPUX 10.20
Hi folks, 10.20 is pretty old - but I'll see what I can do about getting a compile/build patch put together for 2.2.4 on 10.20 in the next couple of days... Don -----Original Message----- From: Moeller Daniel (QI/EES3) * [mailto:Daniel.Moeller@de.bosch.com] Sent: Tuesday, May 14, 2002 4:10 To: 'Roland Langner'; samba@lists.samba.org Subject: AW: [Samba] Problems building Samba 2.2.4 under HPUX 10.20 Hello, I can't get Samba 2.2.4 to compile on HP-UX, too. I'm also interested in a solution. Kind regards, Daniel -----Urspr?ngliche Nachricht----- Von: Roland Langner [mailto:Roland.Langner@mch.osram.de] Gesendet: Montag, 13. Mai 2002 12:38 An: samba@lists.samba.org Betreff: [Samba] Problems building Samba 2.2.4 under HPUX 10.20 i tried to build Samba 2.2.4 under HPUX 10.20, but configure generated a Makfile with systax errors. make Make: line 664: syntax error. Stop. Makefile Line 664 shows: : $(WINBIND_NSS_PICOBJS) there should be something before the : configure said: checking whether to build winbind... no, unsupported on hpux10.20 is there a woraround, or can somebody tell me whats before the : -- To unsubscribe from this list go to the following URL and read the instructions: http://lists.samba.org/mailman/listinfo/samba
Roland Langner
2002-May-14 05:56 UTC
[Samba] RE: Problems building Samba 2.2.4 under HPUX 10.20
Hi, that was my problem: i tried to build Samba 2.2.4 under HPUX 10.20, but configure generated a Makfile with systax errors. make Make: line 664: syntax error. Stop. Makefile Line 664 shows: : $(WINBIND_NSS_PICOBJS) there should be something before the : configure said: checking whether to build winbind... no, unsupported on hpux10.20 is there a woraround, or can somebody tell me whats before the : ----------------------------------------------------------------------------------------------- Many people wrote me that they are interested in a solution too. I found a way to get the build. Sorry i can?t answer all the mails, so i will answer here. Here are some patch instructions to get the build with HPUX 10: Im using gcc V3.0 (I just compared the problem files with version 2.2.3a) In the source directory do the ./configure under root account; edit Makefile change Line 664 from : $(WINBIND_NSS_PICOBJS) to nsswitch/libnss_winbind.so: $(WINBIND_NSS_PICOBJS) in source/nsswitch edit hp_nss_common.h change #include <synch.h> #include <pthread.h> to #ifdef HAVE_SYNCH_H #include <synch.h> #endif #ifdef HAVE_PTHREAD_H #include <pthread.h> #endif nss.h: change the line with #elif defined(HPUX) to #elif defined(HPUX) && defined(HAVE_NSSWITCH_H) Now make should work. Regards Roland Langner -------------- next part -------------- A non-text attachment was scrubbed... Name: Roland.Langner.vcf Type: text/x-vcard Size: 287 bytes Desc: Card for Roland Langner Url : http://lists.samba.org/archive/samba/attachments/20020514/c2110917/Roland.Langner.vcf