1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

Add the SHA module to the build.

This commit is contained in:
Thomas Gellekum 1999-07-28 07:54:24 +00:00
parent 6177386e0e
commit 992725797a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=20371
30 changed files with 120 additions and 15 deletions

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so

View File

@ -90,7 +90,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
#gl glmodule.c -lgl -lX11 # Graphics Library -- SGI only
GLHACK=-Dclear=__GLclear
#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@ -193,6 +194,11 @@ rgbimg rgbimgmodule.c # Read SGI RGB image files (but coded portably)
md5 md5module.c md5c.c
# The sha module implements the SHA checksum algorithm.
# (NIST's Secure Hash Algorithm.)
sha shamodule.c
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.

View File

@ -269,6 +269,7 @@ lib/python1.5/lib-dynload/parsermodule.so
lib/python1.5/lib-dynload/resource.so
lib/python1.5/lib-dynload/rgbimgmodule.so
lib/python1.5/lib-dynload/rotormodule.so
lib/python1.5/lib-dynload/shamodule.so
lib/python1.5/lib-dynload/syslogmodule.so
lib/python1.5/lib-dynload/termios.so
lib/python1.5/lib-dynload/timingmodule.so