diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1997-12-16 08:59:18 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1997-12-16 08:59:18 +0000 |
commit | b73b77c48eb77cec47c4ed674490349d99d16332 (patch) | |
tree | e3d33e157f1153577841ba8398d05ad6158ea4ed /graphics | |
parent | Keep all the HTML in templates/README.* (diff) |
Add -lm to shared flags
Notes
Notes:
svn path=/head/; revision=9095
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/png/files/patch-aa | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/png/files/patch-aa b/graphics/png/files/patch-aa index c2d5b37f33af..9a5c974053cc 100644 --- a/graphics/png/files/patch-aa +++ b/graphics/png/files/patch-aa @@ -1,5 +1,5 @@ *** makefile.orig Fri May 16 10:53:30 1997 ---- makefile Tue Jun 24 16:53:47 1997 +--- makefile Tue Dec 16 11:54:05 1997 *************** *** 5,33 **** # Where the zlib library and include files are located @@ -65,7 +65,7 @@ $(RANLIB) $@ + libpng.so.${VER}: $(OBJS:S/o$/so/g) -+ ${CC} -shared -Wl,-x -Wl,-assert -Wl,pure-text -o $@ $(OBJS:S/o$/so/g) -lz ++ ${CC} -shared -Wl,-x -Wl,-assert -Wl,pure-text -o $@ $(OBJS:S/o$/so/g) -lz -lm + pngtest: pngtest.o libpng.a $(CC) -o pngtest $(CCFLAGS) pngtest.o $(LDFLAGS) |