diff options
author | asami <asami@FreeBSD.org> | 1995-10-12 15:29:19 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-10-12 15:29:19 +0800 |
commit | 7711334d1b6206e4846a1f44596cd4b00acd22b1 (patch) | |
tree | 676e121f652538dbb39637fd629d53df8111e326 /security/libident/files | |
parent | ab8c5e5a98f9b3af704af3a9b076316aac4ffa5c (diff) | |
download | freebsd-ports-graphics-7711334d1b6206e4846a1f44596cd4b00acd22b1.tar.gz freebsd-ports-graphics-7711334d1b6206e4846a1f44596cd4b00acd22b1.tar.zst freebsd-ports-graphics-7711334d1b6206e4846a1f44596cd4b00acd22b1.zip |
libidentd - a small library to interface the ident protocol server (rfc1413)
Submitted by: torstenb
Diffstat (limited to 'security/libident/files')
-rw-r--r-- | security/libident/files/patch-aa | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/security/libident/files/patch-aa b/security/libident/files/patch-aa new file mode 100644 index 00000000000..23e0a048909 --- /dev/null +++ b/security/libident/files/patch-aa @@ -0,0 +1,60 @@ +*** Makefile.orig Mon Oct 9 12:34:13 1995 +--- Makefile Mon Oct 9 12:49:45 1995 +*************** +*** 7,13 **** + RM=rm -f + RANLIB=ranlib + +! INSTROOT=/usr/local + + LIBDIR=$(INSTROOT)/lib + INCDIR=$(INSTROOT)/include +--- 7,13 ---- + RM=rm -f + RANLIB=ranlib + +! INSTROOT=${PREFIX} + + LIBDIR=$(INSTROOT)/lib + INCDIR=$(INSTROOT)/include +*************** +*** 19,25 **** + # Add -DHAVE_ANSIHEADERS if your system have the ANSI C header files + # needed for our purposes (stdlib, string, unistd). + # +! CFLAGS = -O + LDLIBS = + LIBIDENT = libident.a + +--- 19,25 ---- + # Add -DHAVE_ANSIHEADERS if your system have the ANSI C header files + # needed for our purposes (stdlib, string, unistd). + # +! #CFLAGS = -O + LDLIBS = + LIBIDENT = libident.a + +*************** +*** 31,36 **** +--- 31,37 ---- + @echo "" + @echo aix + @echo bsd ++ @echo freebsd (FreeBSD 2.x) + @echo dynix + @echo hpux + @echo irix +*************** +*** 119,124 **** +--- 120,130 ---- + # + bsd: + @$(MAKE) all CC="$(CC)" CFLAGS="-O -DSIGRETURNTYPE=int" ++ ++ # ++ # FreeBSD 2.x ++ freebsd: ++ @$(MAKE) all CC="$(CC)" CFLAGS="${CFLAGS} -Wall -DHAVE_ANSIHEADERS" + + # + # |