Displaying 5 results from an estimated 5 matches for "libs1".
Did you mean:
libs
1998 May 12
0
Compilation problem on OSF/1
...newbie
I'm trying to compile samba-1.9.18p6 on a DEC Alpha running OSF/1 V3.0 (I
know it's old, but I'm stuck with it).
I've modified the Makefile as follows...
># Add any optimisation or debugging flags here
># add -DSYSLOG for syslog support
>FLAGS1 = -O -std1 -w
>LIBS1 =
and
># This is for OSF1 (Alpha)
># contributed by errath@balu.kfunigraz.ac.at
># NOTE: You may need -warning_unresolved if you get unresolved symbols
>
>FLAGSM = -DOSF1 -DFAST_SHARE_MODES
>LIBSM =
Everything seems to compile fine until it gets to slprintf when the
following...
1998 Aug 17
1
Compiling with SCO
Has anybody tried to to compile SAMBA using gcc under SCO unix 5? This
may just be a problem I'm having using the gcc compiler, but I'm having
problems. I would just like to know if anyone's done it, and any special
problems they may have had.
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com
1998 Aug 27
0
precompiled SCO binaries u
...#39;m
thinking to compile a version with a pgcc. The compiler is gcc 2.7.2.1.
Here is a snip of Makefile.
# Add any optimisation or debugging flags here
# add -DSYSLOG for syslog support
# FLAGS1 = -O3 -K pentium,noframe
FLAGS1 = -melf -m486 -O2 -malign-loops=4 -malign-jumps=4
-malign-functions=4
LIBS1 =
# Use this for SCO OpenServer 5 with TCB passwords (default) and GCC
# contributed by Scott Michel <scottm@intime.intime.com>
# you may also like to add the -dy switch (recommended by Marnus van
# Niekerk, mvn@pixie.co.za)
CC = gcc
FLAGSM = -DSCO -DSecureWare -DEVEREST -DUSE_MMAP -D...
1998 Oct 15
1
Problem to map home dir
...SBINDIR implies a secure binary directory
BINDIR = $(BASEDIR)/bin
SBINDIR = $(BASEDIR)/bin
LIBDIR = $(BASEDIR)/lib
VARDIR = $(BASEDIR)/var
# The permissions to give the executables
INSTALLPERMS = 0755
# Add any optimisation or debugging flags here
# add -DSYSLOG for syslog support
FLAGS1 = -O
LIBS1 =
# You will need to use a ANSI C compiler. This means under SunOS 4 you can't
# use cc, instead you will have to use gcc.
CC = gcc
# This may help with some versions of make
SHELL = /bin/sh
# The following can be useful for compiling on multiple architectures
# just uncommment them putti...