From 2c8bc31971e53eb0172cd29e333fcd867125a029 Mon Sep 17 00:00:00 2001
From: Michael R Sweet <michael.r.sweet@gmail.com>
Date: Thu, 6 Dec 2001 18:23:29 +0000
Subject: [PATCH] Run $(RANLIB) on installed static libraries, since some OS's
 (i.e. Darwin) compare the file modification time against the symbol table
 time...

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1815 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
---
 FL/Enumerations.H | 4 ++--
 src/Makefile      | 6 ++++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/FL/Enumerations.H b/FL/Enumerations.H
index a89417234..e72e3a9a6 100644
--- a/FL/Enumerations.H
+++ b/FL/Enumerations.H
@@ -1,5 +1,5 @@
 //
-// "$Id: Enumerations.H,v 1.18.2.14.2.15 2001/12/01 13:59:50 easysw Exp $"
+// "$Id: Enumerations.H,v 1.18.2.14.2.16 2001/12/06 18:23:29 easysw Exp $"
 //
 // Enumerations for the Fast Light Tool Kit (FLTK).
 //
@@ -372,5 +372,5 @@ enum Fl_Damage {
 #endif
 
 //
-// End of "$Id: Enumerations.H,v 1.18.2.14.2.15 2001/12/01 13:59:50 easysw Exp $".
+// End of "$Id: Enumerations.H,v 1.18.2.14.2.16 2001/12/06 18:23:29 easysw Exp $".
 //
diff --git a/src/Makefile b/src/Makefile
index debe44770..89c5746a4 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,5 +1,5 @@
 #
-# "$Id: Makefile,v 1.18.2.14.2.22 2001/11/28 21:37:35 easysw Exp $"
+# "$Id: Makefile,v 1.18.2.14.2.23 2001/12/06 18:23:29 easysw Exp $"
 #
 # Library makefile for the Fast Light Tool Kit (FLTK).
 #
@@ -243,6 +243,8 @@ install: $(LIBNAME) $(DSONAME) $(GLLIBNAME) $(GLDSONAME)
 	-mkdir -p $(libdir)
 	rm -f $(libdir)/$(LIBNAME)
 	-cp $(LIBNAME) $(GLLIBNAME) $(libdir)
+	$(RANLIB) $(libdir)/$(LIBNAME)
+	$(RANLIB) $(libdir)/$(GLLIBNAME)
 	if test x$(DSONAME) = xlibfltk.so.1.1; then\
 		rm -f $(libdir)/libfltk.so*;\
 		cp libfltk.so.1.1 $(libdir); \
@@ -297,5 +299,5 @@ uninstall:
 
 
 #
-# End of "$Id: Makefile,v 1.18.2.14.2.22 2001/11/28 21:37:35 easysw Exp $".
+# End of "$Id: Makefile,v 1.18.2.14.2.23 2001/12/06 18:23:29 easysw Exp $".
 #
-- 
GitLab