-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1.30 released on 2005-05-27 09:09
- Loading branch information
Showing
13 changed files
with
308 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
Building | ||
======== | ||
To build op, the best option is to override the default Makefile settings | ||
with ones appropriate for your system (the alternative is to edit the Makefile, | ||
uncommenting the appropriate sections). | ||
|
||
op requires Flex (it will not work with standard Lex due to internal | ||
limitations on data structures in Lex). | ||
|
||
Compiler flags are put into OPTS (this is a legacy setting), libraries in LIBS | ||
and link flags in LDFLAGS. | ||
|
||
Build for typical PAM enabled Linux system: | ||
make OPTS='-DXAUTH=\"/usr/X11R6/bin/xauth\" -DUSE_PAM' \ | ||
LIBS='-lcrypt -lpam -lfl' LDFLAGS='-Wl,-z,now' | ||
|
||
Build for typical Solaris system with PAM: | ||
make LEX=flex OPTS='-DXAUTH=\"/usr/X/bin/xauth\" -DUSE_PAM' \ | ||
LIBS='-lcrypt -lpam -lfl' | ||
|
||
The available features are: | ||
|
||
Debugging: | ||
Compiler flags: -g -DDEBUG | ||
Link flags: -g | ||
|
||
PAM: | ||
Compiler flags: -DUSE_PAM | ||
Libraries: -lpam | ||
|
||
Shadow support: | ||
Compiler flags: -DUSE_SHADOW | ||
Libraries: -lshadow | ||
|
||
Use Flex: | ||
Libraries: -lfl | ||
|
||
XAuth support: | ||
Compiler flags: -DXAUTH=\"<full-path-to-xauth>\" | ||
|
||
If you have vsnprintf on your system: | ||
Compiler flags: -DHAVE_VSNPRINTF | ||
|
||
Note: For SecureID support, read the Makefile and uncomment the appropriate | ||
section. | ||
|
||
Installing | ||
========== | ||
"make install" will do a normal install. Optionally, DESTDIR can be used to | ||
install into a package root: | ||
|
||
make DESTDIR=/tmp/pkg install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,5 +78,6 @@ long last. | |
Ditto for my contributions which are Copyright (C) 1995, 1997 by | ||
Howard Owen. ([email protected]) | ||
|
||
And again for contributions by me, Alec Thomas, Copyright (C) 2002-2004. | ||
And again for contributions by me, Alec Thomas ([email protected]), | ||
Copyright (C) 2002-2005. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.