- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Samba: Compiling error on HP-UX 11.11 (HP 9000)
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2006 10:29 PM
04-23-2006 10:29 PM
Samba: Compiling error on HP-UX 11.11 (HP 9000)
./configure --prefix=/opt/samba-3.0.22
make
...
Compiling popt/poptconfig.c
Compiling popt/popthelp.c
Compiling popt/poptparse.c
Linking bin/smbd
/usr/ccs/bin/ld: Unsatisfied symbols:
auth_script_init (first referenced in auth/auth.o) (code)
collect2: ld returned 1 exit status
*** Error exit code 1
Stop.
Can you give me a hint what's going wrong?
With kind regards
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2006 10:33 PM
04-23-2006 10:33 PM
Re: Samba: Compiling error on HP-UX 11.11 (HP 9000)
HP ported and tested this:
Client(reboot required)
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B8724AA
Server
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B8725AA
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2006 10:50 PM
04-23-2006 10:50 PM
Re: Samba: Compiling error on HP-UX 11.11 (HP 9000)
HP CIFS A.02.02.01 (Server) is based on Samba 3.0.14a and not on 3.0.22.
./make on samba 3.0.14a runs without a problem!
With kind regards
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2006 03:54 AM
04-28-2006 03:54 AM
Re: Samba: Compiling error on HP-UX 11.11 (HP 9000)
A "technical preview" (not supported) CIFS Server version is already available at http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=CIFSTP3
Good Luck,
Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2006 04:16 AM
04-28-2006 04:16 AM
Re: Samba: Compiling error on HP-UX 11.11 (HP 9000)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2006 11:18 PM
05-14-2006 11:18 PM
Re: Samba: Compiling error on HP-UX 11.11 (HP 9000)
I just had to change the script configure in following way:
Original part for HPUX:
#define HPUX 1
_ACEOF
# Use special PIC flags for the native HP-UX compiler.
if test $ac_cv_prog_cc_Ae = yes; then
BLDSHARED="true"
SHLD="cc"
LDSHFLAGS="-b -Wl,-B,symbolic,-b,-z"
SONAMEFLAG="-Wl,+h "
PICFLAGS="+z"
elif test "${GCC}" = "yes"; then
PICFLAGS="-fPIC"
fi
Changed part for HPUX:
#define HPUX 1
_ACEOF
# Use special PIC flags for the native HP-UX compiler.
if test $ac_cv_prog_cc_Ae = yes; then
BLDSHARED="true"
SHLD="cc"
LDSHFLAGS="-b -Wl,-B,symbolic,-b,-z"
SONAMEFLAG="-Wl,+h "
PICFLAGS="+z"
elif test "${GCC}" = "yes"; then
PICFLAGS="-fPIC"
BLDSHARED="true"
CFLAGS="$CFLAGS $PICFLAGS"
fi
./configure --prefix=/opt/samba_3.0.22 --with-ldap=no
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2006 11:19 PM
05-14-2006 11:19 PM